/* =========================================================
   NOTEBOOK LIST PAGE
   ========================================================= */

:root {
    --bg: #ffffff;
    --ink: #222222;
    --muted: #757575;
    --brand: #1e5ba9;
    --brand-weak: #eaf3ff;
    --row: #f7f7f7;
    --line: #eeeeee;
    --chip: #f1f1f1;
    --success: #2e7d32;
}

* {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding-bottom: 80px;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--ink);
    font: 14px/1.45 system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

img {
    max-width: 100%;
}

/* =========================================================
   GENERAL WRAPPER
   ========================================================= */

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

/* =========================================================
   DESKTOP NOTEBOOK LIST
   ========================================================= */

.page-notebook-list .layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

.page-notebook-list .list {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.page-notebook-list .list .thead,
.page-notebook-list .list .row {
    display: grid;

    grid-template-columns:
        minmax(350px, 1fr) /* Ürün */
        118px              /* Fiyat */
        88px               /* Ekran */
        88px               /* RAM */
        130px              /* İşletim sistemi */
        72px;              /* Puan */

    align-items: stretch;
    width: 100%;
    min-width: 0;
}

.page-notebook-list .list .row {
    min-height: 132px;
}

.page-notebook-list .list .thead > div,
.page-notebook-list .list .row > .cell {
    min-width: 0;
}

/* =========================================================
   PRODUCT NAME CELL
   ========================================================= */

.page-notebook-list .namecell {
    display: grid;

    grid-template-columns:
        112px
        minmax(0, 1fr);

    grid-template-rows:
        auto
        auto;

    grid-template-areas:
        "thumb meta"
        "thumb compare";

    align-items: center;
    column-gap: 12px;
    row-gap: 8px;

    width: 100%;
    min-width: 0;
}

.page-notebook-list .namecell > a {
    grid-area: thumb;
    display: block;
    width: 112px;
    min-width: 112px;
}

.page-notebook-list .namecell .thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 112px;
    height: 96px;

    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.page-notebook-list .namecell .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-notebook-list .namecell .meta {
    grid-area: meta;
    align-self: end;
    width: 100%;
    min-width: 0;
}

.page-notebook-list .meta .title {
    display: -webkit-box;
    width: 100%;
    min-width: 0;

    overflow: hidden;
    white-space: normal;
    overflow-wrap: anywhere;

    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-notebook-list .namecell > .compare-btn {
    grid-area: compare;
    align-self: start;
    justify-self: start;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    width: auto;
    min-width: 0;
    max-width: 100%;
    min-height: 36px;

    margin: 0;
    padding: 7px 10px;

    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

/* =========================================================
   OTHER CELLS
   ========================================================= */

.page-notebook-list .cell.price {
    display: flex;
    align-items: center;
    min-width: 0;

    padding-right: 8px;
    padding-left: 8px;

    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.page-notebook-list .chip {
    display: inline-flex;
    align-items: center;

    max-width: 100%;
    min-width: 0;
    padding: 7px 8px;

    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
}

/* =========================================================
   DESKTOP SCORE
   ========================================================= */

.page-notebook-list .cell.scorewrap {
    display: flex !important;
    align-items: center;
    justify-content: center;

    min-width: 0;
    padding: 6px;
}

.page-notebook-list .score {
    --p: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    flex: 0 0 58px;

    border-radius: 50%;

    background:
            conic-gradient(
                    var(--brand) calc(var(--p) * 1%),
                    var(--brand-weak) 0
            );
}

.page-notebook-list .score span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;
    background: #ffffff;

    font-size: 15px;
    font-weight: 700;
}

/* Görsel üzerindeki puan sadece mobilde gösterilecek */
.page-notebook-list .namecell .score-badge {
    display: none;
}
/* =========================================================
   TOP NAVIGATION
   ========================================================= */

.topnav {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.topnav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #222222;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.brand img {
    display: block;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: none;
    font-size: 22px;
    cursor: pointer;
}

/* =========================================================
   SEARCH / SELECT2
   ========================================================= */

.search-box-wrapper {
    margin-bottom: 15px;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 42px !important;
    padding: 8px 12px;
    border: 1px solid #cccccc;
    border-radius: 8px;
}

.select2-selection__rendered {
    padding-left: 0 !important;
    padding-right: 28px !important;
    font-size: 14px;
    line-height: 24px !important;
}

.select2-selection__arrow {
    top: 3px !important;
    right: 6px !important;
    height: 36px !important;
}

/* =========================================================
   FILTERS
   ========================================================= */

.filters {
    position: sticky;
    top: 72px;
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
}

.filters h3 {
    margin: 8px 0 12px;
    font-size: 15px;
}

.filter {
    margin-bottom: 14px;
}

.filter:last-child {
    margin-bottom: 0;
}

.filter label {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
}

.filter select,
.filter input {
    width: 100%;
    min-width: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.filter .row {
    display: flex;
    gap: 8px;
}

.filter .row input {
    flex: 1 1 0;
    min-width: 0;
}

.filter-toggle {
    display: none;
    margin-bottom: 12px;
    padding: 10px 14px;
    border: 0;
    border-radius: 8px;
    background: var(--brand);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.brand-list,
.checkbox-group {
    max-height: 280px;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background: #fafafa;
}

.brand-item,
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    cursor: pointer;
}

.brand-item input,
.checkbox-row input[type="checkbox"] {
    width: auto !important;
    height: auto !important;
    margin: 0;
    cursor: pointer;
}

/* =========================================================
   SCROLL HINT
   ========================================================= */

.scroll-hint {
    display: none;
}

/* =========================================================
   NOTEBOOK LIST TABLE
   ========================================================= */

.page-notebook-list .list {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #ffffff;
}

.page-notebook-list .list .thead,
.page-notebook-list .list .row {
    display: grid;
    grid-template-columns:
        minmax(430px, 1fr)
        135px
        95px
        115px
        145px
        88px;
    align-items: stretch;
    width: 100%;
    min-width: 0;
}

.page-notebook-list .list .thead {
    border-bottom: 1px solid var(--line);
    background: #fafafa;
    font-weight: 600;
}

.page-notebook-list .list .thead > div {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 12px;
    color: #555555;
    font-size: 13px;
}

.page-notebook-list .list .row {
    min-height: 122px;
    border-bottom: 1px solid var(--line);
}

.page-notebook-list .list .row:last-child {
    border-bottom: 0;
}

.page-notebook-list .list .row:nth-child(even) {
    background: var(--row);
}

.page-notebook-list .cell {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 12px;
}

/* =========================================================
   PRODUCT NAME CELL
   ========================================================= */

.page-notebook-list .namecell {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-width: 0;
}

.page-notebook-list .namecell > a {
    display: block;
    min-width: 0;
}

.page-notebook-list .namecell .thumb {
    position: relative;
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 96px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.page-notebook-list .namecell .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-notebook-list .namecell .meta {
    min-width: 0;
}

.page-notebook-list .meta .title {
    display: -webkit-box;
    min-width: 0;
    overflow: hidden;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-notebook-list .meta .vtag {
    display: inline-block;
    margin-top: 5px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--chip);
    color: #444444;
    font-size: 12px;
}

/* =========================================================
   COMPARE BUTTON
   ========================================================= */

.page-notebook-list .namecell > .compare-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 112px;
    max-width: 100%;
    min-height: 38px;
    margin: 0;
    padding: 8px 10px;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    color: var(--brand);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.page-notebook-list .compare-btn .compare-icon {
    display: inline-flex;
    flex: 0 0 22px;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

.page-notebook-list .compare-btn.active {
    color: var(--success);
}

.page-notebook-list .compare-btn.active .compare-icon {
    background: var(--success);
}

/* =========================================================
   PRICE / SPECS
   ========================================================= */

.page-notebook-list .cell.price {
    font-weight: 700;
    white-space: nowrap;
}

.page-notebook-list .price strong {
    display: block;
    font-size: 15px;
}

.page-notebook-list .chip {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    padding: 7px 9px;
    border-radius: 8px;
    background: var(--chip);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    white-space: normal;
}

.muted {
    color: var(--muted);
}

/* =========================================================
   DESKTOP SCORE CIRCLE
   ========================================================= */

.page-notebook-list .cell.scorewrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 8px;
    text-align: center;
}

.page-notebook-list .score {
    --p: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background:
            conic-gradient(
                    var(--brand) calc(var(--p) * 1%),
                    var(--brand-weak) 0
            );
}

.page-notebook-list .score span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    font-size: 17px;
    font-weight: 700;
}

/* =========================================================
   IMAGE SCORE BADGE
   ========================================================= */

.page-notebook-list .score-badge {
    display: none;
}

.page-notebook-list .namecell .thumb::before,
.page-notebook-list .namecell .thumb::after,
.page-notebook-list .namecell .score-badge::before,
.page-notebook-list .namecell .score-badge::after {
    content: none !important;
    display: none !important;
}

/* =========================================================
   SORT LINKS
   ========================================================= */

.sort-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #444444;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.sort-icon {
    color: #999999;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s;
}

.sort-link:hover .sort-icon {
    opacity: 1;
}

.sort-icon.active {
    color: var(--brand);
    font-weight: 700;
    opacity: 1 !important;
}

/* =========================================================
   PAGINATION
   ========================================================= */

.pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding: 14px;
}

.pager a,
.pager span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background: #ffffff;
    font-size: 14px;
}

.pager .active {
    border-color: var(--brand);
    background: var(--brand);
    color: #ffffff;
    font-weight: 600;
}

/* =========================================================
   SEO CONTENT
   ========================================================= */

.seo-content {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 24px 28px;
    border-top: 1px solid #eeeeee;
    background: #fafafa;
    color: #444444;
    font-size: 14px;
    line-height: 1.6;
}

.seo-content h2 {
    margin: 0 0 12px;
    color: #222222;
    font-size: 18px;
}

.seo-content h3 {
    margin: 18px 0 8px;
    color: #333333;
    font-size: 15px;
}

.seo-content p {
    margin: 0 0 10px;
}

.seo-content ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.seo-content li {
    margin-bottom: 6px;
    font-size: 13.5px;
}

/* =========================================================
   FIXED COMPARE BAR
   ========================================================= */

.compare-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 8px 16px;
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
}

.compare-title {
    flex: 0 0 auto;
    margin-right: 8px;
}

.compare-items {
    display: flex;
    flex: 1 1 auto;
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
}

.compare-items img {
    flex: 0 0 40px;
    width: 40px;
    height: 60px;
    padding: 2px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    background: #ffffff;
    object-fit: contain;
}

.compare-bar > .compare-btn,
.compare-clear {
    flex: 0 0 auto;
    margin-left: 8px;
    padding: 7px 12px;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
}

.compare-bar > .compare-btn {
    background: #ffffff;
    color: var(--brand);
    font-weight: 700;
}

.compare-clear {
    background: #333333;
    color: #ffffff;
}



/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 980px) {
    body {
        overflow-x: hidden;
    }

    .wrap {
        padding: 12px;
    }

    .page-notebook-list .layout {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .filter-toggle {
        display: block;
    }

    .filters {
        position: static;
        display: none;
        margin-bottom: 16px;
    }

    .filters.open {
        display: block;
    }

    .scroll-hint {
        position: sticky;
        top: 62px;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0 0 8px;
        padding: 10px 12px;
        border: 1px solid #bfdfff;
        border-radius: 10px;
        background: var(--brand);
        color: #ffffff;
        font-size: 14px;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    /*
     * Mobilde tablo yatay kayar.
     * Başlık ve veri satırları aynı genişliktedir.
     */
    .page-notebook-list .list {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .page-notebook-list .list::-webkit-scrollbar {
        height: 5px;
    }

    .page-notebook-list .list::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: rgba(30, 91, 169, 0.35);
    }

    .page-notebook-list .list .thead,
    .page-notebook-list .list .row {
        display: grid !important;
        grid-template-columns:
            430px
            145px
            115px
            155px
            125px;
        align-items: stretch;
        width: 970px;
        min-width: 970px;
    }

    /*
     * Puan sütunu gizlenir.
     * Puan ürün fotoğrafı üzerinde gösterilir.
     */
    .page-notebook-list .list .thead > div:last-child,
    .page-notebook-list .list .row > .scorewrap {
        display: none !important;
    }

    .page-notebook-list .list .row {
        min-height: 160px;
    }

    .page-notebook-list .list .cell {
        min-width: 0;
        padding: 14px 12px;
    }

    /*
     * İlk ürün sütunu:
     * Görsel solda, başlık sağ üstte,
     * karşılaştır butonu sağ altta.
     */
    .page-notebook-list .namecell {
        display: grid !important;
        grid-template-columns: 128px minmax(0, 1fr);
        grid-template-rows: auto auto;
        grid-template-areas:
            "thumb meta"
            "thumb compare";
        align-items: center;
        column-gap: 14px;
        row-gap: 12px;
        width: 100%;
        min-width: 0;
    }

    .page-notebook-list .namecell > a {
        grid-area: thumb;
        display: block;
        width: 128px;
        min-width: 128px;
    }

    .page-notebook-list .namecell .thumb {
        position: relative;
        width: 128px;
        min-width: 128px;
        height: 112px;
        margin: 0;
        overflow: hidden;
        border-radius: 10px;
    }

    .page-notebook-list .namecell .thumb img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .page-notebook-list .namecell .meta {
        grid-area: meta;
        align-self: end;
        width: 100%;
        min-width: 0;
    }

    .page-notebook-list .meta .title {
        display: -webkit-box !important;
        width: 100%;
        max-width: none;
        overflow: hidden !important;
        font-size: 17px;
        font-weight: 700;
        line-height: 1.35;
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: normal;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .page-notebook-list .meta .vtag {
        margin-top: 6px;
    }

    .page-notebook-list .namecell > .compare-btn {
        grid-area: compare;
        position: static;
        align-self: start;
        justify-self: start;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: auto;
        min-width: 0;
        max-width: 100%;
        min-height: 40px;
        margin: 0;
        padding: 8px 12px;
        font-size: 15px;
        line-height: 1;
        white-space: nowrap;
    }

    .page-notebook-list .compare-btn .compare-icon {
        flex: 0 0 24px;
        width: 24px;
        height: 24px;
        font-size: 18px;
    }

    .page-notebook-list .cell.price {
        display: flex;
        align-items: center;
        min-width: 0;
        padding-right: 16px;
        padding-left: 16px;
        font-size: 18px;
        font-weight: 700;
        white-space: nowrap;
    }

    .page-notebook-list .cell:not(.namecell):not(.scorewrap) {
        display: flex;
        align-items: center;
    }

    .page-notebook-list .chip {
        display: inline-flex;
        align-items: center;
        min-width: 0;
        padding: 8px 10px;
        font-size: 14px;
        line-height: 1.25;
        white-space: nowrap;
    }

    /*
     * Mobil puan rozeti.
     */
    .page-notebook-list .namecell .score-badge {
        position: absolute;
        top: 6px;
        right: 6px;
        z-index: 5;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        min-width: 40px;
        height: 40px;
        margin: 0;
        padding: 0;
        border: 3px solid #ffffff;
        border-radius: 50%;
        background: var(--brand);
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        line-height: 1;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
    }

    .seo-content {
        padding: 18px 16px;
        font-size: 13.5px;
    }

    .seo-content h2 {
        font-size: 16px;
    }

    .seo-content h3 {
        font-size: 14px;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {
    .topnav .container {
        padding: 8px 12px;
    }

    .menu-toggle {
        display: block;
    }

    .topnav nav {
        position: absolute;
        top: 56px;
        right: 12px;
        display: none;
        padding: 10px;
        border: 1px solid #eeeeee;
        border-radius: 8px;
        background: #ffffff;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .topnav.open nav {
        display: block;
    }

    .topnav nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .page-notebook-list .list .thead,
    .page-notebook-list .list .row {
        grid-template-columns:
            390px
            140px
            110px
            150px
            120px;
        width: 910px;
        min-width: 910px;
    }

    .page-notebook-list .namecell {
        grid-template-columns: 112px minmax(0, 1fr);
        column-gap: 12px;
    }

    .page-notebook-list .namecell > a {
        width: 112px;
        min-width: 112px;
    }

    .page-notebook-list .namecell .thumb {
        width: 112px;
        min-width: 112px;
        height: 100px;
    }

    .page-notebook-list .meta .title {
        font-size: 16px;
        -webkit-line-clamp: 3;
    }

    .page-notebook-list .namecell > .compare-btn {
        padding: 8px 10px;
        font-size: 14px;
    }

    .compare-bar {
        padding: 7px 8px;
    }

    .compare-title {
        display: none;
    }

    .compare-items {
        gap: 5px;
    }

    .compare-items img {
        flex-basis: 34px;
        width: 34px;
        height: 50px;
    }

    .compare-bar > .compare-btn,
    .compare-clear {
        margin-left: 5px;
        padding: 7px 9px;
        font-size: 12px;
    }
}
/* =========================================================
   FINAL DESKTOP OVERRIDE
   Puan sütununun kesilmesini engeller
   ========================================================= */

@media (min-width: 981px) {

    .page-notebook-list .list {
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .page-notebook-list .list .thead,
    .page-notebook-list .list .row {
        display: grid !important;

        grid-template-columns:
            minmax(300px, 1fr) /* Ürün adı */
            112px              /* Fiyat */
            82px               /* Ekran */
            82px               /* RAM */
            118px              /* İşletim sistemi */
            64px;              /* Puan */

        width: 100% !important;
        min-width: 0 !important;
        align-items: stretch;
    }

    .page-notebook-list .list .thead > div,
    .page-notebook-list .list .row > .cell {
        min-width: 0;
        padding: 10px 8px;
    }

    /* Ürün hücresi */
    .page-notebook-list .namecell {
        display: grid !important;

        grid-template-columns:
            100px
            minmax(0, 1fr);

        grid-template-rows:
            auto
            auto;

        grid-template-areas:
            "thumb meta"
            "thumb compare";

        column-gap: 10px;
        row-gap: 7px;

        width: 100%;
        min-width: 0;
        align-items: center;
    }

    .page-notebook-list .namecell > a:first-child {
        grid-area: thumb;
        display: block;
        width: 100px;
        min-width: 100px;
    }

    .page-notebook-list .namecell .thumb {
        position: relative;
        width: 100px !important;
        min-width: 100px !important;
        height: 86px !important;
        margin: 0;
    }

    .page-notebook-list .namecell .thumb img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .page-notebook-list .namecell .meta {
        grid-area: meta;
        align-self: end;
        width: 100%;
        min-width: 0;
    }

    .page-notebook-list .meta .title {
        display: -webkit-box;
        width: 100%;
        min-width: 0;
        overflow: hidden;

        white-space: normal;
        overflow-wrap: anywhere;

        font-size: 14px;
        font-weight: 700;
        line-height: 1.3;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .page-notebook-list .namecell > .compare-btn {
        grid-area: compare;
        position: static;

        align-self: start;
        justify-self: start;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;

        width: auto;
        min-width: 0;
        max-width: 100%;
        min-height: 34px;

        margin: 0;
        padding: 6px 9px;

        font-size: 13px;
        line-height: 1;
        white-space: nowrap;
    }

    .page-notebook-list .compare-btn .compare-icon {
        flex: 0 0 20px;
        width: 20px;
        height: 20px;
        font-size: 15px;
    }

    /* Fiyat */
    .page-notebook-list .cell.price {
        display: flex !important;
        align-items: center;

        min-width: 0;
        padding-right: 6px;
        padding-left: 6px;

        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
    }

    /* Teknik özellik kutuları */
    .page-notebook-list .chip {
        display: inline-flex;
        align-items: center;

        max-width: 100%;
        min-width: 0;
        padding: 6px 7px;

        font-size: 12px;
        line-height: 1.2;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    /* Desktop puan sütunu mutlaka görünsün */
    .page-notebook-list .list .thead > div:last-child {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .page-notebook-list .list .row > .cell.scorewrap {
        display: flex !important;
        align-items: center;
        justify-content: center;

        min-width: 0;
        padding: 4px;
        overflow: visible;
    }

    .page-notebook-list .score {
        --p: 0;

        display: flex !important;
        flex: 0 0 54px;
        align-items: center;
        justify-content: center;

        width: 54px;
        height: 54px;

        border-radius: 50%;

        background:
                conic-gradient(
                        var(--brand) calc(var(--p) * 1%),
                        var(--brand-weak) 0
                );
    }

    .page-notebook-list .score span {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 40px;
        height: 40px;

        border-radius: 50%;
        background: #ffffff;

        font-size: 14px;
        font-weight: 700;
    }

    /* Görsel üzerindeki puan masaüstünde gizli */
    .page-notebook-list .namecell .score-badge {
        display: none !important;
    }
}