html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
}

body.content-protected {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

body.content-protected input,
body.content-protected textarea,
body.content-protected select,
body.content-protected [contenteditable="true"],
body.content-protected .allow-select,
body.content-protected .allow-select * {
    -webkit-user-select: text;
    user-select: text;
    -webkit-touch-callout: default;
}

body.content-protected img,
body.content-protected picture,
body.content-protected video {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

body.content-protected img {
    -webkit-touch-callout: none;
}

/* ========== GÖRSEL FİLİGRAN ========== */
body.content-protected .product-img,
body.content-protected .pd-gallery-main,
body.content-protected .pd-thumb,
body.content-protected .category-card,
body.content-protected .collection-card-media,
body.content-protected .blog-card img,
body.content-protected .blog-featured,
body.content-protected .cart-item img {
    position: relative;
}

body.content-protected .product-img::after,
body.content-protected .pd-gallery-main::after,
body.content-protected .category-card::after,
body.content-protected .collection-card-media::after {
    content: 'DERI';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 4vw, 28px);
    font-weight: 700;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.22);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    transform: rotate(-24deg);
    user-select: none;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f5f0eb;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.auth-card h1 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.auth-form label {
    font-size: 15px;
    font-weight: 600;
    color: #3d342c;
}

.auth-form input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #ccc;
    font: inherit;
    font-size: 16px;
    color: #1a0f0a;
}

.auth-alert {
    padding: 12px 14px;
    margin-top: 16px;
    font-size: 14px;
}

.auth-alert-error {
    background: #fdecea;
    color: #b42318;
    border: 1px solid #fecdca;
}

.auth-footer {
    margin-top: 20px;
    font-size: 14px;
}

.flash {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px 18px;
    color: #fff;
    font-size: 14px;
}

.flash-success { background: #067647; }
.flash-error { background: #b42318; }

.product-card h4 a { color: inherit; text-decoration: none; }
.cart-section, .checkout-section { padding-bottom: 80px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.cart-item { display: grid; grid-template-columns: 90px 1fr auto auto auto; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid #ece7df; }
.cart-item img { width: 90px; height: 90px; object-fit: cover; border-radius: 8px; }
.cart-item-info h3 { margin: 0 0 6px; font-size: 18px; }
.cart-item-info a { color: inherit; text-decoration: none; }
.cart-qty-form { display: flex; gap: 8px; align-items: center; }
.cart-qty-form input { width: 64px; padding: 8px; border: 1px solid #ddd; }
.btn-sm { padding: 8px 12px; font-size: 13px; }
.cart-remove { background: none; border: 0; color: #b42318; cursor: pointer; font-size: 16px; }
.cart-summary, .checkout-form { background: #fff; border: 1px solid #ece7df; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,.04); }
.cart-summary h3, .checkout-form h3 { margin-top: 0; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f1ede7; font-size: 15px; color: #2c241c; }
.summary-row.summary-discount { color: #2d6a4f; }
.summary-row.summary-discount small { color: #6b645c; font-weight: 400; }
.summary-row.total { font-size: 18px; font-weight: 700; border-bottom: 0; padding-top: 16px; }
.checkout-campaign-note { font-size: 13px; color: #2d6a4f; margin-top: 8px; }
.btn-block { display: block; width: 100%; text-align: center; }
.cart-shipping-note { font-size: 13px; color: #6b645c; margin: 12px 0 20px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 900px) {
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 72px 1fr; }
    .checkout-grid { grid-template-columns: 1fr; }
}

.account-page-wrap { padding: 120px 0 80px; }
.account-page { max-width: 760px; margin: 0 auto; }
.account-page h1 { font-family: 'Playfair Display', serif; margin-bottom: 8px; }
.account-nav { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.account-nav a { padding: 10px 16px; border: 1px solid #ddd; text-decoration: none; color: inherit; }
.address-card { border: 1px solid #ece7df; padding: 16px; margin-bottom: 12px; background: #fff; }
.account-orders-table table { width: 100%; border-collapse: collapse; background: #fff; }
.account-orders-table th, .account-orders-table td { padding: 12px; border-bottom: 1px solid #ece7df; text-align: left; font-size: 14px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.blog-card { background: #fff; border: 1px solid #ece7df; overflow: hidden; }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 18px; }
.blog-featured { width: 100%; max-height: 420px; object-fit: cover; margin-bottom: 24px; }
.blog-content { line-height: 1.8; font-size: 17px; }
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.review-item { padding: 14px 0; border-bottom: 1px solid #ece7df; }
.paytr-frame-wrap { background: #fff; border: 1px solid #ece7df; padding: 12px; }
.lang-switch { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--brown-800); text-decoration: none; margin-right: 4px; }
.installment-table table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 8px; }
.installment-table th, .installment-table td { border: 1px solid #ece7df; padding: 8px; text-align: left; }
img[loading="lazy"] { content-visibility: auto; }

/* Inner pages */
.page-hero { position: relative; padding: 140px 0 70px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,15,10,.92), rgba(92,58,30,.75)), url('../images/leather_texture_bg.png') center/cover; }
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 52px); color: var(--cream); margin: 12px 0; }
.page-hero p { color: var(--cream); max-width: 640px; margin: 0 auto 8px; font-size: 17px; line-height: 1.75; }
.page-breadcrumb { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; font-size: 14px; color: var(--brown-100); }
.page-breadcrumb a { color: var(--gold-light); text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-shell { padding: 48px 0 90px; }
.card-panel { background: rgba(255,255,255,.98); border: 1px solid rgba(201,169,110,.15); border-radius: 12px; padding: 28px; box-shadow: 0 10px 30px rgba(0,0,0,.08); color: #2c241c; }
.card-panel h2, .card-panel h3 { color: #1a0f0a; }
.card-panel p, .card-panel li { color: #3d342c; line-height: 1.75; font-size: 16px; }
.inner-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.inner-page-media img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); }
.prose { color: #f5efe6; line-height: 1.85; font-size: 17px; }
.prose p { margin-bottom: 18px; }
.inner-stats { margin-top: 24px; }
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; }
.contact-info-card { background: rgba(255,255,255,.08); border: 1px solid rgba(201,169,110,.25); border-radius: 12px; padding: 28px; color: var(--cream); }
.contact-info-card p, .contact-info-card li { font-size: 16px; line-height: 1.75; color: var(--cream); }
.contact-info-card ul { list-style: none; margin-top: 16px; }
.contact-info-card li { margin-bottom: 14px; display: flex; gap: 10px; align-items: center; }
.contact-form { background: rgba(255,255,255,.98); padding: 28px; border-radius: 12px; color: #2c241c; }
.contact-form label { font-size: 15px; font-weight: 600; color: #3d342c; }
.contact-form input, .contact-form textarea { font-size: 16px; color: #1a0f0a; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: rgba(255,255,255,.08); border: 1px solid rgba(201,169,110,.25); border-radius: 10px; padding: 18px 22px; color: var(--cream); font-size: 16px; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 17px; line-height: 1.5; }
.faq-item p { margin-top: 14px; color: var(--cream); line-height: 1.8; font-size: 16px; }
.search-form { display: flex; gap: 10px; }
.search-form input { flex: 1; padding: 14px 16px; border: 1px solid #ddd; border-radius: 8px; }
.empty-note { color: var(--cream); text-align: center; padding: 40px 0; }
.section-header-left { text-align: left; margin-bottom: 28px; }
.section-header-left { text-align: left; margin-bottom: 28px; }
.section-header-left h2 { color: var(--cream); font-family: 'Playfair Display', serif; }
.product-detail-section.page-shell { padding-top: 48px; }

/* CTA banners */
.cta-banner { padding: 56px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); margin-bottom: 8px; }
.cta-dark { background: rgba(26,15,10,.85); color: var(--cream); border-block: 1px solid rgba(201,169,110,.2); }
.cta-dark p { color: var(--brown-100); }
.cta-gold { background: linear-gradient(135deg, var(--brown-700), var(--brown-800)); color: var(--cream); border-block: 2px solid var(--gold); }
.cta-gold p { color: var(--gold-light); }

/* Hero slider — orijinal tam ekran hero ile uyumlu */
.header-no-announce { top: 0 !important; }

.hero-slider-wrap {
    position: relative;
    z-index: 0;
}

/* ========== REFINED HEADER ========== */
.site-announcement {
    background: linear-gradient(90deg, #1a100a, #2c1a0e 50%, #1a100a);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    padding: 10px 0;
}

.site-announcement .announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(245, 230, 208, 0.92);
    font-size: 13px;
    font-weight: 500;
}

.site-announcement .announcement-item i {
    color: var(--gold);
    font-size: 11px;
}

.site-announcement .announcement-dot {
    color: rgba(201, 169, 110, 0.45);
}

.site-header {
    background: rgba(252, 247, 240, 0.92);
    backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
    box-shadow: 0 8px 32px rgba(26, 15, 10, 0.04);
}

.site-header.scrolled {
    background: rgba(252, 247, 240, 0.98);
    box-shadow: 0 10px 40px rgba(26, 15, 10, 0.08);
}

.site-header-accent {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.65), transparent);
}

.site-header .header-inner {
    min-height: 80px;
    padding: 10px 32px;
    gap: 24px;
}

.site-header .header-brand {
    flex: 0 0 auto;
    min-width: 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
    max-width: min(320px, 42vw);
}

.site-logo-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    padding: 12px;
    border-radius: 18px;
    background:
        linear-gradient(145deg, var(--brown-900) 0%, var(--brown-800) 55%, var(--brown-700) 100%);
    border: 1px solid rgba(201, 169, 110, 0.45);
    box-shadow:
        0 10px 24px rgba(26, 15, 10, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-logo-mark::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.site-logo:hover .site-logo-mark {
    transform: translateY(-1px);
    border-color: rgba(201, 169, 110, 0.72);
    box-shadow:
        0 14px 28px rgba(26, 15, 10, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-logo .logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.1;
    min-width: 0;
}

.site-logo .logo-text strong {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--brown-900);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.site-logo .logo-text small {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(122, 79, 43, 0.78);
    white-space: nowrap;
}

.site-header .logo-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

.site-header .main-nav {
    justify-content: center;
}

.site-header .main-nav-inner {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(201, 169, 110, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.site-header .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--brown-800);
    text-decoration: none;
    transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.site-header .nav-link::after {
    display: none;
}

.site-header .nav-link:hover {
    color: var(--brown-900);
    background: rgba(245, 230, 208, 0.75);
}

.site-header .nav-link.is-active {
    color: var(--brown-900);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.28), rgba(201, 169, 110, 0.14));
    box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.28);
}

.site-header .header-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(201, 169, 110, 0.18);
}

.site-header .header-actions-divider {
    width: 1px;
    height: 22px;
    background: rgba(201, 169, 110, 0.25);
    margin: 0 4px;
}

.site-header .lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(245, 230, 208, 0.45);
    border: 1px solid rgba(201, 169, 110, 0.18);
}

.site-header .lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brown-800);
    text-decoration: none;
    background: rgba(245, 230, 208, 0.45);
    transition: background 0.2s ease, color 0.2s ease;
}

.site-header .lang-switch:hover {
    background: rgba(201, 169, 110, 0.22);
    color: var(--brown-900);
}

.site-header .lang-switch.is-active {
    background: var(--gold);
    color: #fff;
}

.site-header .lang-switcher-mobile {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
}

.site-header .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--brown-800);
    font-size: 15px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-header .icon-btn:hover {
    background: rgba(201, 169, 110, 0.18);
    color: var(--brown-900);
    transform: translateY(-1px);
}

.site-header .cart-count {
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--brown-800);
    color: var(--gold-light);
    font-size: 10px;
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.site-header .main-nav-backdrop,
.site-header .main-nav-head,
.site-header .main-nav-mobile-lang,
.site-header .main-nav-mobile-actions,
.site-header .main-nav-close {
    display: none;
}

@media (max-width: 1024px) {
    .header.site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-header.nav-open,
    body.nav-open .site-header {
        z-index: 10051;
    }

    .site-header .header-inner {
        min-height: 64px;
        padding: 8px 12px;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site-header .header-brand {
        grid-column: 1;
        gap: 10px;
        min-width: 0;
    }

    .site-header .header-right {
        grid-column: 2;
        flex-shrink: 0;
    }

    #mainNav,
    .site-header .main-nav {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .site-logo {
        max-width: none;
    }

    .site-logo .logo-text {
        display: none;
    }

    .site-logo-mark {
        width: 50px;
        height: 50px;
        padding: 7px;
        border-radius: 14px;
    }

    .site-header .logo-img {
        max-height: 32px;
    }

    .site-header .mobile-menu-btn {
        display: flex;
        flex-shrink: 0;
        z-index: 10052;
        position: relative;
    }

    .site-header .mobile-menu-btn span {
        background: var(--brown-800);
    }

    .site-header .mobile-menu-btn.open span {
        background: var(--brown-900);
    }

    .site-header .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .site-header .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .site-header .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    #mainNav,
    .site-header .main-nav {
        display: block;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 10050;
        pointer-events: none;
    }

    #mainNav.open,
    .site-header .main-nav.open {
        pointer-events: auto;
    }

    #mainNav .main-nav-backdrop,
    .site-header .main-nav-backdrop {
        display: block;
        position: absolute;
        inset: 0;
        background: rgba(18, 10, 6, 0.55);
        opacity: 0;
        transition: opacity 0.28s ease;
    }

    #mainNav.open .main-nav-backdrop,
    .site-header .main-nav.open .main-nav-backdrop {
        opacity: 1;
    }

    #mainNav .main-nav-panel,
    .site-header .main-nav-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: min(320px, 86vw);
        height: 100%;
        background: linear-gradient(180deg, #1a100a 0%, #120a06 100%);
        border-right: 1px solid rgba(201, 169, 110, 0.18);
        box-shadow: 24px 0 60px rgba(0, 0, 0, 0.28);
        transform: translateX(-105%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        padding: 24px 20px 28px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #mainNav.open .main-nav-panel,
    .site-header .main-nav.open .main-nav-panel {
        transform: translateX(0);
    }

    #mainNav .main-nav-mobile-lang,
    .site-header .main-nav-mobile-lang {
        display: block;
        margin-bottom: 20px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(201, 169, 110, 0.14);
    }

    #mainNav .main-nav-mobile-lang .main-nav-mobile-label,
    .site-header .main-nav-mobile-lang .main-nav-mobile-label {
        display: block;
        margin-bottom: 10px;
    }

    #mainNav .lang-switcher,
    #mainNav .lang-switcher-mobile,
    .site-header .main-nav-mobile-lang .lang-switcher {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 4px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(201, 169, 110, 0.24);
    }

    #mainNav .lang-switch,
    .site-header .main-nav-mobile-lang .lang-switch {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        min-width: 0;
        height: 40px;
        padding: 0 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        color: rgba(245, 230, 208, 0.92);
        text-decoration: none;
        background: transparent;
        transition: background 0.2s ease, color 0.2s ease;
    }

    #mainNav .lang-switch:hover,
    .site-header .main-nav-mobile-lang .lang-switch:hover {
        background: rgba(201, 169, 110, 0.16);
        color: var(--cream);
    }

    #mainNav .lang-switch.is-active,
    .site-header .main-nav-mobile-lang .lang-switch.is-active {
        background: var(--gold);
        color: #1a100a;
    }

    #mainNav .main-nav-head,
    .site-header .main-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(201, 169, 110, 0.14);
    }

    #mainNav .main-nav-title,
    .site-header .main-nav-title {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        color: var(--cream);
        font-weight: 600;
    }

    #mainNav .main-nav-close,
    .site-header .main-nav-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(201, 169, 110, 0.22);
        color: var(--gold-light);
        background: transparent;
        cursor: pointer;
    }

    #mainNav .main-nav-inner,
    .site-header .main-nav-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        flex: 1;
    }

    #mainNav .nav-link,
    .site-header .nav-link {
        justify-content: flex-start;
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 16px;
        color: rgba(245, 230, 208, 0.88);
    }

    #mainNav .nav-link:hover,
    #mainNav .nav-link.is-active,
    .site-header .nav-link:hover,
    .site-header .nav-link.is-active {
        background: rgba(201, 169, 110, 0.12);
        color: var(--cream);
        box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.18);
    }

    #mainNav .main-nav-mobile-actions,
    .site-header .main-nav-mobile-actions {
        display: grid;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(201, 169, 110, 0.14);
    }

    #mainNav .nav-mobile-link,
    .site-header .nav-mobile-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 10px;
        border: 1px solid rgba(201, 169, 110, 0.2);
        color: var(--gold-light);
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .site-header .header-actions .lang-switcher {
        display: none;
    }

    .site-header .header-actions-divider {
        display: none;
    }

    .site-header .header-actions {
        padding: 2px;
        gap: 0;
    }

    .site-header .icon-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

.hero-slider-wrap .hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider-wrap .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-wrap .hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slider-wrap .hero-slide .hero-leather-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.hero-slider-wrap .hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slider-wrap .hero-slide .hero-content {
    position: relative;
    z-index: 2;
}

.hero-slider-nav {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,.5);
    color: var(--gold-light);
    background: rgba(26,15,10,.5);
    cursor: pointer;
}

.hero-dots { display: flex; gap: 8px; }

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    padding: 0;
}

.hero-dot.active { background: var(--gold); }

.hero-slider-wrap .hero-scroll-indicator {
    z-index: 4;
}

@media (max-width: 900px) {
    .inner-page-grid, .contact-page-grid { grid-template-columns: 1fr; }
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .page-hero { padding: 120px 0 50px; }
}

/* ========== REFINED FOOTER ========== */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #1a100a 0%, #120a06 100%);
    color: rgba(245, 230, 208, 0.88);
    padding: 0 0 32px;
    border-top: none;
    backdrop-filter: none;
}

.site-footer-topline {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.55), transparent);
    margin-bottom: 56px;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 56px 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.site-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.site-footer-logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.site-footer-logo {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    border-radius: 0;
    margin: 0;
    opacity: 0.95;
}

.site-footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--cream);
}

.site-footer-tagline {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(232, 205, 166, 0.82);
    max-width: 28ch;
}

.site-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.site-footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 110, 0.22);
    color: rgba(223, 194, 142, 0.9);
    font-size: 14px;
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.site-footer-social a:hover {
    border-color: rgba(201, 169, 110, 0.55);
    color: var(--cream);
    background: rgba(201, 169, 110, 0.08);
}

.site-footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px 40px;
}

.site-footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--cream);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
    letter-spacing: 0.03em;
}

.site-footer-list,
.site-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-list li + li,
.site-footer-contact li + li {
    margin-top: 10px;
}

.site-footer-list a,
.site-footer-contact a {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(232, 205, 166, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-list a:hover,
.site-footer-contact a:hover {
    color: var(--gold-light);
}

.site-footer-contact li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer-contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.65);
}

.site-footer-contact span:not(.site-footer-contact-label),
.site-footer-contact a {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(245, 230, 208, 0.86);
}

.site-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 28px;
    flex-wrap: wrap;
}

.site-footer-copy {
    margin: 0;
    font-size: 13px;
    color: rgba(184, 137, 90, 0.72);
    letter-spacing: 0.02em;
}

.site-footer-payments {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-footer-payments span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 6px 10px;
    border: 1px solid rgba(201, 169, 110, 0.16);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(184, 137, 90, 0.65);
}

@media (max-width: 960px) {
    .site-footer-topline { margin-bottom: 40px; }
    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .site-footer-brand {
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    }
    .site-footer-tagline { max-width: none; }
}

@media (max-width: 600px) {
    .site-footer { padding-bottom: 24px; }
    .site-footer-columns { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
    .site-footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 420px) {
    .site-footer-columns { grid-template-columns: 1fr; }
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail-page {
    padding: 108px 0 80px;
    background: linear-gradient(180deg, #f8f4ef 0%, #f2ece4 100%);
    min-height: 60vh;
}

.pd-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #7a6555;
    margin-bottom: 28px;
}

.pd-breadcrumb a {
    color: #5c3a1e;
    text-decoration: none;
}

.pd-breadcrumb a:hover { text-decoration: underline; }

.pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 36px;
    align-items: start;
}

.pd-gallery-main {
    position: relative;
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 15, 10, 0.06);
    aspect-ratio: 1 / 1;
}

.pd-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: #8b2e2e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
}

.pd-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.pd-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: #fff;
}

.pd-thumb.is-active { border-color: var(--gold); }

.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pd-summary-card {
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(26, 15, 10, 0.06);
    position: sticky;
    top: 110px;
}

.pd-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9b6b3e;
    text-decoration: none;
    margin-bottom: 10px;
}

.pd-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    color: #1a0f0a;
    margin: 0 0 14px;
}

.pd-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #6b645c;
}

.pd-stars { color: var(--gold); display: inline-flex; gap: 2px; }
.pd-stars.small { font-size: 12px; }

.pd-price-block {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 10px;
}

.pd-price-old {
    font-size: 18px;
    color: #9a8f84;
    text-decoration: line-through;
}

.pd-price-current {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a0f0a;
}

.pd-save {
    font-size: 12px;
    font-weight: 700;
    color: #2d6a4f;
    background: #e8f5ee;
    padding: 4px 10px;
    border-radius: 999px;
}

.pd-sku-line {
    font-size: 13px;
    color: #8a7d70;
    margin: 0 0 22px;
}

.pd-option { margin-bottom: 20px; }

.pd-option-head,
.pd-option-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #4a4038;
    margin-bottom: 10px;
}

.pd-colors { display: flex; flex-wrap: wrap; gap: 10px; }

.pd-color {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
    background: var(--swatch);
    cursor: pointer;
    padding: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pd-color.is-active {
    box-shadow: 0 0 0 2px var(--gold);
    transform: scale(1.06);
}

.pd-color.is-disabled { opacity: 0.35; cursor: not-allowed; }

.pd-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd4c8;
    border-radius: 12px;
    overflow: hidden;
    background: #faf8f5;
}

.pd-qty-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: #3d342c;
}

.pd-qty input {
    width: 52px;
    text-align: center;
    border: 0;
    background: transparent;
    font: inherit;
    font-weight: 600;
    color: #1a0f0a;
}

.pd-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin: 0 0 22px;
}

.pd-stock.in-stock { color: #2d6a4f; }
.pd-stock.out-stock { color: #b42318; }

.pd-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.pd-cart-form { flex: 1; min-width: 180px; }

.pd-btn-cart {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
}

.pd-btn-buy {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1.5px solid #5c3a1e;
    color: #5c3a1e;
    background: transparent;
}

.pd-wishlist {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid #ddd4c8;
    background: #fff;
    color: #5c3a1e;
    cursor: pointer;
}

.pd-wishlist.is-active { background: #fdecec; color: #b42318; border-color: #f5c2c2; }

.pd-trust {
    list-style: none;
    margin: 0;
    padding: 18px 0 0;
    border-top: 1px solid #efe8de;
    display: grid;
    gap: 10px;
}

.pd-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #5c534a;
}

.pd-trust i { color: var(--gold); width: 16px; }

.pd-tabs {
    margin-top: 48px;
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 15, 10, 0.05);
}

.pd-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px;
    background: #faf7f2;
    border-bottom: 1px solid #efe8de;
}

.pd-tab {
    border: 0;
    background: transparent;
    padding: 12px 18px;
    border-radius: 10px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #6b645c;
    cursor: pointer;
}

.pd-tab.is-active {
    background: #fff;
    color: #1a0f0a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pd-tab-panel { display: none; padding: 28px; color: #3d342c; }
.pd-tab-panel.is-active { display: block; }

.pd-prose { line-height: 1.85; font-size: 16px; }
.pd-muted { color: #8a7d70; }

.pd-specs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.pd-specs li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f1ede7;
    font-size: 15px;
}

.pd-specs span { color: #8a7d70; }

.pd-reviews { display: grid; gap: 16px; margin-bottom: 24px; }

.pd-review {
    padding: 16px 0;
    border-bottom: 1px solid #f1ede7;
}

.pd-review-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.pd-review-form {
    display: grid;
    gap: 10px;
    max-width: 520px;
    margin-top: 20px;
}

.pd-review-form label { font-size: 14px; font-weight: 600; }
.pd-review-form select,
.pd-review-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd4c8;
    border-radius: 10px;
    font: inherit;
}

.pd-section { margin-top: 56px; }

.pd-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.pd-section-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9b6b3e;
    margin-bottom: 8px;
}

.pd-section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #1a0f0a;
    margin: 0;
}

.pd-filters { display: flex; gap: 8px; flex-wrap: wrap; }

.pd-filter {
    border: 1px solid #ddd4c8;
    background: #fff;
    color: #5c534a;
    padding: 8px 16px;
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.pd-filter.is-active {
    background: #1a0f0a;
    color: #f5e6d0;
    border-color: #1a0f0a;
}

.pd-product-row,
.pd-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.pd-product-grid .product-card,
.pd-product-row .product-card {
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.12);
}

@media (max-width: 1100px) {
    .pd-layout { grid-template-columns: 1fr; }
    .pd-summary-card { position: static; }
    .pd-product-row,
    .pd-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .product-detail-page { padding-top: 92px; }
    .pd-summary-card { padding: 20px; }
    .pd-actions { flex-direction: column; }
    .pd-btn-buy { width: 100%; }
    .pd-product-row,
    .pd-product-grid { grid-template-columns: 1fr; }
}

/* ========== CATEGORY CATALOG PAGE ========== */
.category-page {
    padding: 108px 0 80px;
    background: linear-gradient(180deg, #f8f4ef 0%, #f2ece4 100%);
}

.cat-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #7a6555;
    margin-bottom: 24px;
}

.cat-breadcrumb a { color: #5c3a1e; text-decoration: none; }
.cat-breadcrumb a:hover { text-decoration: underline; }

.cat-hero {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 16px 40px rgba(26, 15, 10, 0.05);
}

.cat-hero-media {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f5efe6;
}

.cat-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9b6b3e;
    margin-bottom: 10px;
}

.cat-hero-copy h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 40px);
    color: #1a0f0a;
    margin: 0 0 12px;
    line-height: 1.15;
}

.cat-hero-copy p {
    margin: 0 0 16px;
    color: #5c534a;
    line-height: 1.75;
    font-size: 16px;
    max-width: 62ch;
}

.cat-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 14px;
    color: #7a6555;
}

.cat-hero-meta strong { color: #1a0f0a; }

.category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.category-toolbar {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.category-result-count {
    margin: 0 0 18px;
    font-size: 14px;
    color: #7a6555;
}

.category-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd4c8;
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #3d342c;
    cursor: pointer;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.category-products-grid .product-card {
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.12);
}

.category-empty {
    text-align: center;
    padding: 48px 28px;
}

.category-empty h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 0;
}

.category-sidebar {
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 36px rgba(26, 15, 10, 0.05);
    position: sticky;
    top: 110px;
}

.category-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #efe8de;
}

.category-sidebar-head h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #1a0f0a;
}

.category-sidebar-close { display: none; }

.cat-filter-block + .cat-filter-block {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #f1ede7;
}

.cat-filter-block h3 {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a6555;
}

.cat-filter-options { display: grid; gap: 8px; }

.cat-filter-radio,
.cat-filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #3d342c;
    cursor: pointer;
}

.cat-filter-radio input,
.cat-filter-check input { accent-color: #5c3a1e; }

.cat-price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.cat-price-inputs label span {
    display: block;
    font-size: 12px;
    color: #8a7d70;
    margin-bottom: 4px;
}

.cat-price-inputs input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd4c8;
    border-radius: 10px;
    font: inherit;
    color: #1a0f0a;
    box-sizing: border-box;
}

.cat-price-presets { display: flex; flex-wrap: wrap; gap: 8px; }

.cat-preset {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid #ddd4c8;
    background: #faf8f5;
    color: #5c534a;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.cat-preset:hover {
    border-color: #c9a96e;
    color: #1a0f0a;
}

.cat-filter-actions { display: grid; gap: 10px; margin-top: 18px; }

.cat-filter-reset {
    text-align: center;
    font-size: 13px;
    color: #7a6555;
    text-decoration: none;
}

.cat-filter-reset:hover { color: #1a0f0a; }

.cat-category-list { display: grid; gap: 10px; }

.cat-category-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #efe8de;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cat-category-item:hover {
    border-color: rgba(201, 169, 110, 0.45);
    background: #faf7f2;
}

.cat-category-item.is-active {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
}

.products-catalog-hero {
    margin-bottom: 28px;
}

.products-catalog-copy {
    max-width: 760px;
}

.products-catalog-page .cat-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 768px) {
    .products-catalog-copy h1 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }
}

.cat-category-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
}

.cat-category-item strong {
    display: block;
    font-size: 14px;
    color: #1a0f0a;
}

.cat-category-item small {
    font-size: 12px;
    color: #8a7d70;
}

.cat-category-item i {
    color: #c9a96e;
    font-size: 12px;
}

.cat-sidebar-promo {
    margin-top: 22px;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a100a, #2c1a0e);
    color: #f5e6d0;
}

.cat-sidebar-promo strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 6px;
}

.cat-sidebar-promo p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(245, 230, 208, 0.82);
}

.category-sidebar-backdrop {
    display: none;
}

@media (max-width: 1100px) {
    .category-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
    .cat-hero { grid-template-columns: 1fr; }
    .cat-hero-media { max-height: 220px; aspect-ratio: auto; }
    .category-layout { grid-template-columns: 1fr; }
    .category-toolbar { display: flex; }
    .category-filter-toggle { display: inline-flex; }
    .category-result-count { display: none; }
    .category-sidebar {
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 92vw);
        height: 100vh;
        z-index: 10001;
        border-radius: 0;
        overflow-y: auto;
        transform: translateX(105%);
        transition: transform 0.3s ease;
    }
    .category-sidebar.is-open { transform: translateX(0); }
    .category-sidebar-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border: 1px solid #ddd4c8;
        border-radius: 50%;
        background: #fff;
        cursor: pointer;
    }
    .category-sidebar-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(18, 10, 6, 0.55);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .category-sidebar-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 640px) {
    .category-page { padding-top: 92px; }
    .category-products-grid { grid-template-columns: 1fr; }
}

/* ========== NAV DROPDOWN / MEGA MENU ========== */
.nav-item-dropdown { position: relative; }

.nav-item-dropdown .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-caret { font-size: 10px; opacity: 0.7; }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.22);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 20px 50px rgba(26, 15, 10, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1100;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-head {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9b6b3e;
    padding: 4px 8px 10px;
}

.nav-dropdown-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.nav-dropdown-item:hover { background: #faf7f2; }

.nav-dropdown-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
}

.nav-dropdown-item strong {
    display: block;
    font-size: 14px;
    color: #1a0f0a;
}

.nav-dropdown-item small {
    font-size: 12px;
    color: #8a7d70;
}

.nav-dropdown-all {
    display: block;
    margin-top: 8px;
    padding: 10px 12px;
    text-align: center;
    border-radius: 10px;
    background: #1a0f0a;
    color: #f5e6d0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.main-nav-mobile-collections {
    display: none;
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(201, 169, 110, 0.14);
}

.main-nav-mobile-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.75);
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .nav-dropdown { display: none; }
    #mainNav .main-nav-mobile-collections,
    .main-nav-mobile-collections { display: grid; gap: 8px; }
}

/* ========== COLLECTION PAGE ========== */
.collection-page {
    padding: 108px 0 80px;
    background: linear-gradient(180deg, #f8f4ef 0%, #f2ece4 100%);
}

.collection-hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.collection-hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9b6b3e;
    margin-bottom: 12px;
}

.collection-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    color: #1a0f0a;
    margin: 0 0 14px;
}

.collection-hero p {
    margin: 0;
    color: #5c534a;
    line-height: 1.8;
    font-size: 17px;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
}

.collection-card {
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.16);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(26, 15, 10, 0.05);
}

.collection-card-featured { grid-row: 1 / 3; }

.collection-card-media {
    display: block;
    position: relative;
    text-decoration: none;
    color: #fff;
}

.collection-card-featured .collection-card-media { min-height: 420px; }
.collection-card:not(.collection-card-featured) .collection-card-media { min-height: 220px; }

.collection-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.collection-card-overlay {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(26, 15, 10, 0.82), transparent 65%);
}

.collection-card-overlay span {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 230, 208, 0.85);
}

.collection-card-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 34px);
    margin: 8px 0;
}

.collection-card-overlay p {
    margin: 0 0 12px;
    color: rgba(245, 230, 208, 0.88);
    line-height: 1.6;
    max-width: 42ch;
}

.collection-card-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-light);
}

.collection-card-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
}

.collection-mini-product {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #f1ede7;
}

.collection-mini-product:hover { background: #faf7f2; }

.collection-mini-product img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
}

.collection-mini-product span {
    display: block;
    font-size: 12px;
    color: #5c534a;
    line-height: 1.35;
}

.collection-mini-product strong {
    font-size: 13px;
    color: #1a0f0a;
}

.collection-bottom-cta {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.collection-bottom-cta h3 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 6px;
}

.collection-bottom-cta p { margin: 0; color: #5c534a; }

/* ========== HOME ENRICHMENT ========== */
.home-collections {
    padding: 90px 0;
    background: #fff;
}

.home-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.home-section-head-light h2,
.home-section-head-light p { color: inherit; }

.home-section-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9b6b3e;
    margin-bottom: 10px;
}

.home-section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 38px);
    color: #1a0f0a;
    margin: 0 0 10px;
}

.home-section-head p {
    margin: 0;
    color: #6b645c;
    line-height: 1.7;
}

.home-collections-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-collection-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.14);
    background: #faf8f5;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 15, 10, 0.08);
}

.home-collection-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-collection-card-body { padding: 18px 20px 22px; }

.home-collection-card-body span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9b6b3e;
}

.home-collection-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 8px 0;
    color: #1a0f0a;
}

.home-collection-card-body p {
    margin: 0 0 10px;
    color: #6b645c;
    font-size: 14px;
}

.home-collection-card-body em {
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
    color: #5c3a1e;
}

.home-collections-foot {
    text-align: center;
    margin-top: 28px;
}

.home-collections-foot .btn-outline {
    border: 1.5px solid #5c3a1e;
    color: #5c3a1e;
    padding: 12px 24px;
    border-radius: 999px;
}

.home-bestsellers {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a100a, #2c1a0e);
}

.home-section-head-light .home-section-tag { color: var(--gold-light); }
.home-section-head-light h2 { color: var(--cream); }
.home-section-head-light p { color: var(--brown-100); }

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.home-products-grid .product-card {
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.12);
}

.home-promise {
    padding: 70px 0;
    background: #f8f4ef;
}

.home-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-promise-card {
    background: #fff;
    border: 1px solid rgba(201, 169, 110, 0.14);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
}

.home-promise-card i {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 14px;
}

.home-promise-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0 0 10px;
    color: #1a0f0a;
}

.home-promise-card p {
    margin: 0;
    color: #6b645c;
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 960px) {
    .collection-grid { grid-template-columns: 1fr; }
    .collection-card-featured { grid-row: auto; }
    .home-collections-grid,
    .home-products-grid,
    .home-promise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .collection-page { padding-top: 92px; }
    .home-collections,
    .home-bestsellers { padding: 60px 0; }
}
