﻿:root {
    --bg-main: #FAF9F7;
    --bg-soft: #E6E1DA;
    --text-main: #2E2E2E;
    --accent: #C9A96A;
    --font-accent: 'Playfair Display',serif;
}

/* ===== HERO / BREADCRUMB ===== */
.cl-hero {
    padding: 28px 20px 10px;
    max-width: 1320px;
    margin: 0 auto;
}

.cl-hero-inner {
    border: 1px solid var(--bg-soft);
    background: #fff;
    border-radius: 14px;
    padding: 22px 22px;
    box-shadow: 0 10px 24px rgba(46,46,46,0.06);
}

.cl-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    opacity: .75;
    color: var(--text-main);
    flex-wrap: wrap;
}

    .cl-breadcrumb a {
        color: var(--text-main);
        text-decoration: none;
    }

        .cl-breadcrumb a:hover {
            color: var(--accent);
        }

    .cl-breadcrumb strong {
        opacity: 1;
    }

.cl-head {
    margin-top: 14px;
}

    .cl-head h1 {
        margin: 0 0 10px;
        font-family: var(--font-accent);
        font-weight: 500;
        font-size: 2.2rem;
        line-height: 1.15;
        color: var(--text-main);
    }

    .cl-head p {
        margin: 0;
        max-width: 900px;
        line-height: 1.75;
        opacity: .85;
        color: var(--text-main);
    }

/* trust / usp mini */
.cl-trust {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 10px;
}

.cl-trust-item {
    border: 1px solid var(--bg-soft);
    background: var(--bg-main);
    border-radius: 12px;
    padding: 12px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

    .cl-trust-item i {
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: rgba(201,169,106,0.14);
        display: grid;
        place-items: center;
    }

    .cl-trust-item span {
        font-size: .9rem;
        opacity: .85;
    }

/* ===== WRAP / TOOLBAR ===== */
.cl-wrap {
    max-width: 1320px;
    margin: 18px auto 0;
    padding: 0 20px 40px;
}

.cl-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 16px 0 18px;
}

.cl-count {
    font-weight: 600;
    color: var(--text-main);
    opacity: .85;
}

.cl-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .cl-sort label {
        font-size: .9rem;
        opacity: .75;
    }

    .cl-sort select {
        height: 42px;
        border-radius: 999px;
        border: 1px solid rgba(46,46,46,0.18);
        background: rgba(250,249,247,0.86);
        padding: 0 14px;
        color: var(--text-main);
        outline: none;
    }

/* ===== GRID / CARD ===== */
.cl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.cl-card {
    background: #fff;
    border: 1px solid var(--bg-soft);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .cl-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(46,46,46,0.08);
    }

.cl-media {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

    .cl-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .35s ease;
    }

.cl-card:hover .cl-media img {
    transform: scale(1.06);
}

.cl-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .75rem;
    letter-spacing: .4px;
}

.cl-body {
    padding: 16px;
}

.cl-title {
    margin: 0 0 12px;
    font-size: 1.02rem;
    font-weight: 500;
}

    .cl-title a {
        color: var(--text-main);
        text-decoration: none;
    }

        .cl-title a:hover {
            color: var(--accent);
        }

.cl-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.cl-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.cl-add {
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    background: var(--bg-main);
    color: var(--text-main);
    cursor: pointer;
    transition: .2s ease;
    font-size: .9rem;
}

    .cl-add:hover {
        background: var(--accent);
        color: #fff;
    }

/* ===== PAGER ===== */
.cl-pager {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.cl-page {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(46,46,46,0.18);
    background: rgba(250,249,247,0.86);
    color: var(--text-main);
    text-decoration: none;
    transition: .2s ease;
}

    .cl-page:hover {
        border-color: rgba(201,169,106,0.55);
        background: rgba(201,169,106,0.14);
    }

    .cl-page.is-active {
        border-color: var(--accent);
        background: var(--accent);
        color: #fff;
    }

/* ===== EDITORIAL / ALSO LOOK ===== */
.cl-editorial {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px 50px;
}

.cl-box {
    background: #fff;
    border: 1px solid var(--bg-soft);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(46,46,46,0.06);
}

    .cl-box h2 {
        margin: 0 0 8px;
        font-family: var(--font-accent);
        font-weight: 500;
        color: var(--text-main);
        font-size: 1.6rem;
    }

    .cl-box p {
        margin: 0 0 14px;
        opacity: .8;
        line-height: 1.7;
    }

.cl-mini-track {
    display: flex;
    gap: 12px;
    overflow: auto;
    padding: 4px 2px 12px;
    -webkit-overflow-scrolling: touch;
}

    .cl-mini-track::-webkit-scrollbar {
        height: 8px;
    }

    .cl-mini-track::-webkit-scrollbar-thumb {
        background: rgba(201,169,106,0.35);
        border-radius: 999px;
    }

.cl-mini {
    flex: 0 0 auto;
    width: 320px;
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--bg-soft);
    border-radius: 12px;
    background: var(--bg-main);
    padding: 10px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform .2s ease, border-color .2s ease;
}

    .cl-mini:hover {
        transform: translateY(-2px);
        border-color: rgba(201,169,106,0.55);
    }

    .cl-mini img {
        width: 64px;
        height: 64px;
        border-radius: 12px;
        object-fit: cover;
    }

.cl-mini-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.cl-mini-price {
    opacity: .85;
    font-weight: 700;
}

.cl-links {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cl-link {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(46,46,46,0.18);
    background: rgba(250,249,247,0.86);
    color: var(--text-main);
    text-decoration: none;
    transition: .2s ease;
}

    .cl-link:hover {
        border-color: var(--accent);
        background: rgba(201,169,106,0.14);
    }

/* ===== FAQ ===== */
.cl-faq {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.cl-faq-list {
    margin-top: 8px;
    display: grid;
    gap: 10px;
}

.cl-faq-item {
    border: 1px solid var(--bg-soft);
    background: var(--bg-main);
    border-radius: 12px;
    padding: 10px 12px;
}

    .cl-faq-item summary {
        cursor: pointer;
        font-weight: 700;
        color: var(--text-main);
    }

.cl-faq-body {
    margin-top: 10px;
    opacity: .85;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .cl-trust {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .cl-mini {
        width: 280px;
    }
}

@media (max-width: 520px) {
    .cl-head h1 {
        font-size: 1.8rem;
    }

    .cl-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .cl-mini {
        width: 260px;
    }
}
