:root {
    --cream:      #FFFFFF;
    --cream-2:    #F7F4EC;
    --paper:      #FFFFFF;
    --gold:       #BF9A57;
    --gold-2:     #96773A;
    --gold-soft:  #EFE6D2;
    --ink:        #26241F;
    --ink-2:      #6E685C;
    --line:       #E9E3D6;
    --shadow:     none;
    --shadow-lg:  none;
    --radius:     0;
    --radius-sm:  0;
    --dark:       #26241F;
    --header-h:   73px;

    --fs-display: clamp(1.55rem, 3.4vw, 2.2rem);
    --fs-h1:      clamp(1.3rem, 2.6vw, 1.75rem);
    --fs-h2:      clamp(1.15rem, 2vw, 1.4rem);
    --fs-h3:      1.1rem;
    --fs-h4:      1rem;
    --fs-h5:      .9rem;
    --fs-h6:      .82rem;
    --fs-lead:    .95rem;
    --fs-base:    .95rem;
    --fs-sm:      .85rem;
    --fs-xs:      .78rem;
    --fs-2xs:     .7rem;

    --bs-body-font-size: var(--fs-base);
    --bs-body-font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: clip; }

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--fs-base);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6, .serif {
    font-family: 'Poppins', 'Inter', system-ui, sans-serif;
    color: var(--ink);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

p { font-size: var(--fs-base); }

.lead { font-size: var(--fs-lead); font-weight: 400; }
small, .small { font-size: var(--fs-sm); }

.display-1, .display-2, .display-3,
.display-4, .display-5, .display-6 {
    font-size: clamp(1.9rem, 4.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
}

.btn    { font-size: .875rem; }
.btn-lg { font-size: var(--fs-lead); }
.btn-sm { font-size: var(--fs-xs); }

.form-control, .form-select, textarea.form-control { font-size: var(--fs-base); }

.navbar-brand { font-size: var(--fs-base); }
.dropdown-item { font-size: var(--fs-sm); }
.breadcrumb { font-size: var(--fs-sm); }

code, kbd, pre { font-size: var(--fs-sm); }

.badge { font-size: var(--fs-2xs); }

a { color: var(--gold-2); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }

img { max-width: 100%; }

main { min-height: 60vh; }

.text-gold { color: var(--gold-2) !important; }
.bg-cream { background: var(--cream); }

/* Tabler inline SVG ikonlari (Font Awesome yerine). Renk ve cizgi currentColor'dan gelir, boyut 1em. */
.ti {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.125em;
    flex-shrink: 0;
}
.bg-cream-2 { background: var(--cream-2); }

.btn-gold {
    background: var(--gold-2);
    border: 1px solid var(--gold-2);
    color: #fff;
    font-weight: 600;
    border-radius: 0;
    padding: .6rem 1.5rem;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-gold:hover, .btn-gold:focus {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.btn-outline-gold {
    background: var(--gold-soft);
    border: 1px solid var(--gold);
    color: var(--ink);
    font-weight: 600;
    border-radius: 0;
    padding: .55rem 1.45rem;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-outline-gold:hover, .btn-outline-gold:focus {
    background: var(--gold-2);
    border-color: var(--gold-2);
    color: #fff;
}

.btn-light-cta {
    background: #fff;
    color: var(--gold-2);
    border: 1px solid #fff;
    font-weight: 600;
    border-radius: 0;
    padding: .6rem 1.6rem;
    transition: background .2s ease, color .2s ease;
}
.btn-light-cta:hover { background: var(--cream); color: var(--gold-2); }

.site-header {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    transition: border-color .3s ease;
    z-index: 1030;
}
.site-header.scrolled { border-bottom-color: var(--gold); }
.navbar { padding-top: .5rem; padding-bottom: .5rem; }
.brand-logo { height: 46px; width: auto; }

.site-header .nav-link {
    color: var(--ink);
    font-size: var(--fs-base);
    font-weight: 500;
    padding: .5rem 1rem !important;
    position: relative;
}
.site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem; right: 1rem; bottom: .3rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.site-header .nav-link:hover, .site-header .nav-link.active { color: var(--gold-2); }
.site-header .nav-link:hover::after, .site-header .nav-link.active::after { transform: scaleX(1); }

.dropdown-menu {
    border: 1px solid var(--line);
    border-radius: 0;
    padding: .4rem;
}
.dropdown-item { border-radius: 0; padding: .5rem .8rem; font-weight: 500; }
.dropdown-item:hover, .dropdown-item:focus { background: var(--cream-2); color: var(--gold-2); }
.dropdown-item .text-muted { color: var(--ink-2) !important; }
.dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active {
    background: var(--gold-soft); color: var(--gold-2);
}

.lang-toggle { display: inline-flex; align-items: center; }
.lang-toggle:hover, .lang-toggle[aria-expanded="true"] { color: var(--gold-2); }
.lang-caret { font-size: .68rem; transition: transform .2s ease; }
.lang-toggle[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }

.lang-menu { min-width: 11rem; }
.lang-link { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.lang-name { line-height: 1.2; }
.lang-tail { display: inline-flex; align-items: center; gap: .45rem; }
.lang-code { font-size: var(--fs-xs); letter-spacing: .08em; font-weight: 700; color: var(--ink-2); }
.lang-check { font-size: .72rem; color: var(--gold-2); visibility: hidden; }
.lang-link.active .lang-name { color: var(--gold-2); font-weight: 600; }
.lang-link.active .lang-code { color: var(--gold-2); }
.lang-link.active .lang-check { visibility: visible; }
.lang-link:hover .lang-code, .lang-link:focus .lang-code { color: var(--gold-2); }

.lang-suggest { background: #1a1a1a; color: #fff; font-size: var(--fs-sm); }
.lang-suggest[hidden] { display: none; }
.lang-suggest-inner {
    display: flex; align-items: center; justify-content: center;
    padding: .65rem 44px; position: relative;
}
.lang-suggest-msg { display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: .35rem; }
.lang-suggest-text { color: #fff; }
.lang-suggest-go { color: var(--gold); font-weight: 600; text-decoration: none; white-space: nowrap; display: inline-flex; align-items: center; gap: .35rem; }
.lang-suggest-go .ti { font-size: .78em; transition: transform .2s ease; }
.lang-suggest-go:hover { color: var(--gold-soft); text-decoration: underline; }
.lang-suggest-go:hover .ti { transform: translateX(2px); }
.lang-suggest-close {
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: rgba(255, 255, 255, .7); cursor: pointer;
    width: 40px; height: 40px; display: grid; place-items: center;
    transition: color .2s ease;
}
.lang-suggest-close:hover { color: #fff; }
@media (max-width: 575.98px) {
    .lang-suggest-inner { flex-wrap: wrap; gap: .25rem .6rem; text-align: center; }
}

.section { padding: 76px 0; }
.section-sm { padding: 52px 0; }
.section-alt { background: var(--cream-2); }
.section-dark { background: var(--dark); color: #e6e2dc; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { color: var(--ink-2); margin-top: .8rem; margin-bottom: 0; }

.hero {
    position: relative;
    background: var(--cream-2);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    padding: clamp(3rem, 8vw, 6.5rem) 0;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
    color: var(--ink);
    font-size: var(--fs-display);
    margin-bottom: 1rem;
}
.hero .hero-slogan { color: var(--gold-2); font-style: italic; font-family: 'Inter', system-ui, sans-serif; }
.hero p.lead { color: var(--ink-2); max-width: 540px; }
.hero-img-wrap {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3.2;
    border: 1px solid var(--line);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.category-card {
    position: relative;
    display: block;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 3 / 3.6;
    border: 1px solid var(--line);
    color: #fff;
}
.category-card img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.category-card .overlay {
    display: none;
}
.category-card .cap {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 1.5rem;
    z-index: 2;
    background: var(--dark);
}
.category-card .cap h3 { color: #fff; margin: 0; font-size: 1.05rem; }
.category-card .cap .count { color: #E9E4DC; font-size: .9rem; font-weight: 500; }
.category-card .cap .desc {
    color: #D8D3CA;
    font-size: var(--fs-xs);
    margin: .35rem 0 0;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.category-card .cap .go {
    margin-top: .5rem;
    display: inline-flex; align-items: center; gap: .4rem;
    color: #fff; font-weight: 600; font-size: .9rem;
}

.product-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color .2s ease;
}
.product-card:hover { border-color: var(--gold); }
.product-card .thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-2);
    border-bottom: 1px solid var(--line);
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body {
    padding: 1.05rem 1.15rem 1.25rem;
    display: flex; flex-direction: column;
    gap: .55rem;
    flex: 1;
}
.product-card h3 { font-size: var(--fs-base); margin: 0; }
.product-card .desc {
    color: var(--ink-2);
    font-size: var(--fs-sm);
    margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card .cat-line { color: var(--ink-2); font-size: .85rem; }
.product-card .card-foot {
    margin-top: auto;
    display: flex; align-items: center; justify-content: space-between;
    padding-top: .4rem;
}
.product-card .detail-link { font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; }
.product-card .detail-link i { transition: transform .2s ease; }
.product-card:hover .detail-link i { transform: translateX(3px); }

.badge-cat {
    position: absolute; top: .75rem; left: .75rem;
    background: var(--dark);
    color: #fff;
    padding: .28rem .75rem;
    border-radius: 0;
    font-size: .72rem;
    font-weight: 500;
    z-index: 2;
}
.badge-prep {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .28rem .7rem;
    border-radius: 0;
    font-size: .74rem;
    font-weight: 600;
}
.badge-prep.cooked { background: var(--gold-soft); color: var(--gold-2); }
.badge-prep.raw    { background: #F1EFEA; color: var(--ink-2); border: 1px solid var(--line); }
.badge-prep.top {
    position: absolute; top: .75rem; right: .75rem;
    z-index: 2;
}

.value-item { text-align: center; padding: 1rem; }
.value-item .icon {
    width: 72px; height: 72px;
    margin: 0 auto 1.1rem;
    border-radius: 0;
    background: var(--cream);
    border: 1px solid var(--line);
    color: var(--gold-2);
    display: grid; place-items: center;
    font-size: 1.6rem;
}
.section-dark .value-item .icon { background: #332F29; border-color: #453F37; color: var(--gold-soft); }
.value-item h4 { font-size: var(--fs-h4); margin-bottom: .5rem; }
.value-item p { color: var(--ink-2); font-size: .95rem; margin: 0; }
.section-dark .value-item p,
.section-dark .stat-item .lbl { color: #cfc9c1; }
.section-dark .section-head p { color: #cfc9c1; }

.page-header {
    position: relative;
    background: linear-gradient(180deg, var(--gold-soft) 0%, var(--cream-2) 60%);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid var(--line);
    padding: clamp(2rem, 5vw, 3.5rem) 0;
    text-align: center;
}
.page-header h1 { font-size: var(--fs-display); }
.page-header .breadcrumb-bar { margin: 0 0 1.1rem; }
.page-header p {
    color: #000;
    margin: 1rem auto 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.ph-ornament {
    display: block;
    position: relative;
    width: 80px;
    height: 8px;
    margin: 1rem auto 0;
}
.ph-ornament::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
}
.ph-ornament::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    background: var(--gold-2);
    transform: translate(-50%, -50%) rotate(45deg);
}

.breadcrumb-bar { --bs-breadcrumb-divider: '›'; font-size: var(--fs-sm); }
.breadcrumb-bar .breadcrumb { margin: 0; justify-content: center; }
.breadcrumb-bar a { color: var(--ink-2); }
.breadcrumb-bar .active { color: var(--gold-2); }

.detail-gallery .main-img {
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--cream-2);
    border: 1px solid var(--line);
}
.detail-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.thumb-btn {
    width: 74px; height: 60px;
    border-radius: 0;
    overflow: hidden;
    border: 2px solid var(--line);
    padding: 0;
    background: var(--cream-2);
    cursor: pointer;
    transition: border-color .2s ease;
}
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.thumb-btn:hover { border-color: var(--gold-soft); }
.thumb-btn.active { border-color: var(--gold); }

.detail-title { font-size: var(--fs-h1); margin: .6rem 0 .4rem; }
.detail-desc { color: var(--ink-2); }
.detail-desc p { margin-bottom: .9rem; color: #000; }

.detail-section-title {
    font-size: var(--fs-h4);
    font-weight: 600;
    margin: 1.6rem 0 .8rem;
    display: flex; align-items: center; gap: .5rem;
}
.detail-section-title i { color: var(--gold-2); }

.variant-table { width: 100%; border-collapse: collapse; }
.variant-table th, .variant-table td { padding: .6rem .8rem; border-bottom: 1px solid var(--line); text-align: left; }
.variant-table thead th { color: var(--ink-2); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.variant-table tbody tr:hover { background: var(--cream); }
.variant-table .size-pill {
    display: inline-block; min-width: 42px; text-align: center;
    background: var(--cream-2); color: var(--gold-2);
    border-radius: 0; padding: .15rem .5rem; font-weight: 700; font-size: .82rem;
}

.ingredient-chip {
    display: inline-block;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: .38rem .9rem;
    margin: 0 .35rem .55rem 0;
    font-size: .9rem;
    color: var(--ink);
}

.allergen-list {
    list-style: square;
    padding-left: 1.3rem;
    margin: 0 0 1.1rem;
    color: var(--ink);
}
.allergen-list li { margin-bottom: .4rem; }
.allergen-list li::marker { color: var(--gold-2); }

.contact-cta-box {
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 1.4rem 1.5rem;
}
.contact-cta-box h4 { font-size: var(--fs-h4); margin-bottom: .3rem; }
.contact-cta-box p { color: var(--ink-2); font-size: .92rem; margin-bottom: 1rem; }
.contact-cta-actions { display: flex; flex-wrap: wrap; gap: .6rem; }

@media (min-width: 992px) {
    .detail-media { position: sticky; top: 88px; align-self: flex-start; }
}

.order-panel .lead-sm {
    font-size: var(--fs-lead);
    color: var(--ink-2);
    margin: 0 0 1.1rem;
}

.size-selector { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .6rem; }
.size-opt {
    display: flex; flex-direction: column; align-items: center; gap: .12rem;
    min-width: 66px;
    padding: .45rem .7rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease;
}
.size-opt .s { font-weight: 700; color: var(--ink); font-size: var(--fs-base); line-height: 1; }
.size-opt .w { font-size: var(--fs-2xs); color: var(--ink-2); }
.size-opt:hover { border-color: var(--gold-soft); }
.size-opt.active { border-color: var(--gold); background: var(--gold-soft); }
.size-opt.active .s { color: var(--gold-2); }

.selected-variant { font-size: var(--fs-sm); color: var(--ink-2); margin: 0; }
.selected-variant span { font-weight: 600; color: var(--ink); }

.detail-tabs .nav-tabs { border-bottom: 1px solid var(--line); gap: .15rem; flex-wrap: wrap; }
.detail-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--ink-2);
    font-family: 'Poppins', 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: var(--fs-sm);
    padding: .6rem .9rem;
    border-radius: 0;
    margin-bottom: -1px;
}
.detail-tabs .nav-tabs .nav-link:hover { color: var(--gold-2); }
.detail-tabs .nav-tabs .nav-link.active {
    color: var(--gold-2);
    background: transparent;
    border-bottom-color: var(--gold);
}
.detail-tabs .tab-content { padding-top: 1.4rem; }

.contact-info-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 1.5rem;
    height: 100%;
    display: flex; gap: 1rem; align-items: flex-start;
}
.contact-info-card .ci-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 0;
    background: var(--cream-2);
    color: var(--gold-2);
    display: grid; place-items: center;
    font-size: 1.15rem;
}
.contact-info-card h4 { font-size: var(--fs-base); margin-bottom: .2rem; }
.contact-info-card a, .contact-info-card p { color: var(--ink-2); margin: 0; }
.contact-info-card a:hover { color: var(--gold-2); }

.contact-lead { max-width: 640px; margin: 0 auto 2.5rem; text-align: center; }
.contact-lead p { color: var(--ink-2); }
.contact-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.5rem; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; max-width: 940px; margin: 0 auto; }

.form-control, .form-select {
    border: 1px solid var(--line);
    border-radius: 0;
    padding: .7rem .9rem;
    background: var(--paper);
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px var(--gold-soft);
}
.form-label { font-weight: 600; font-size: var(--fs-sm); margin-bottom: .35rem; }

.content-prose { max-width: 820px; }
.content-prose h2 { font-size: 1.2rem; margin: 2rem 0 .8rem; }
.content-prose h3 { font-size: 1.05rem; margin: 1.6rem 0 .6rem; }
.content-prose p, .content-prose li { color: var(--ink-2); }
.content-prose ul { padding-left: 1.2rem; }
.content-prose li { margin-bottom: .4rem; }

.about-img { border-radius: 0; border: 1px solid var(--line); overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.stat-row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-item .stat-ic {
    width: 56px; height: 56px;
    margin: 0 auto .85rem;
    border-radius: 0;
    display: grid; place-items: center;
    background: #332F29;
    border: 1px solid #453F37;
    color: var(--gold-soft);
    font-size: 1.35rem;
}
.stat-item .num { font-family: 'Poppins', 'Inter', system-ui, sans-serif; font-size: 1.9rem; color: var(--gold-soft); font-weight: 700; line-height: 1; }
.stat-item .lbl { color: #cfc9c1; font-size: .95rem; font-weight: 600; margin-top: .35rem; }
.stat-item .stat-sub { color: #a49c93; font-size: var(--fs-xs); margin-top: .2rem; }

.cta-strip {
    background: var(--gold-2);
    color: #fff;
    border-radius: 0;
    padding: 2.4rem;
}
.cta-strip h3 { color: #fff; }
.cta-strip p { color: #F3ECDD; margin: 0; }

.site-footer {
    background: var(--dark);
    color: #c7c2ba;
    padding: 60px 0 0;
    margin-top: 0;
}
.footer-logo { height: 44px; width: auto; }
.footer-about { font-size: .92rem; color: #b4aea6; margin-top: .3rem; }
.site-footer h5 {
    color: #fff;
    font-family: 'Poppins', 'Inter', system-ui, sans-serif;
    font-size: var(--fs-h5);
    margin-bottom: 1.1rem;
    letter-spacing: .02em;
}
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a, .site-footer a { color: #c7c2ba; }
.footer-links a:hover, .site-footer a:hover { color: var(--gold-soft); }
.footer-contact li { margin-bottom: .7rem; display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.footer-contact i { color: var(--gold-soft); margin-top: .25rem; flex-shrink: 0; }
.footer-contact-icons { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-contact-icons a {
    width: 40px; height: 40px;
    border-radius: 0;
    background: #332F29;
    color: var(--gold-soft);
    display: grid; place-items: center;
    transition: background .2s ease, color .2s ease;
}
.footer-contact-icons a:hover { background: var(--gold-2); color: #fff; }
.footer-bottom { border-top: 1px solid #3A362F; margin-top: 2.5rem; padding: 1.3rem 0; font-size: .87rem; }

.error-page { text-align: center; max-width: 560px; margin: 0 auto; padding: 4.5rem 1rem 5.5rem; }
.error-code {
    font-family: 'Poppins', 'Inter', system-ui, sans-serif;
    font-size: clamp(4rem, 15vw, 8rem);
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
}
.error-page .ph-ornament { margin: 1.25rem auto 1.5rem; }
.error-title { color: var(--ink); }
.error-desc { color: var(--ink-2); margin-bottom: 0; }

@media (max-width: 991.98px) {
    .site-header .navbar-collapse {
        background: var(--cream);
        margin-top: .6rem;
        border-radius: 0;
        padding: .8rem 1rem;
        border: 1px solid var(--line);
    }
    .site-header .nav-link::after { display: none; }
    .dropdown-menu { border: none; padding-left: 1rem; }
}

@media (max-width: 575.98px) {
    .section { padding: 52px 0; }
    .cta-strip { padding: 1.8rem; text-align: center; }
    .footer-bottom { text-align: center; }
    .hero { padding: 2.5rem 0; }
    .hero h1 { font-size: 1.4rem; overflow-wrap: anywhere; }
    .hero .lead { font-size: .85rem; }
}

.mslider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.mslider-track::-webkit-scrollbar { display: none; }
.mslide { scroll-snap-align: start; flex: 0 0 auto; }

.mslider-btn {
    display: grid; place-items: center;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--line);
    cursor: pointer;
    width: 40px; height: 40px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.mslider-btn:hover { background: var(--gold-2); color: #fff; border-color: var(--gold-2); }
.mslider-btn:disabled { background: var(--cream-2); color: #C9C2B4; border-color: var(--line); cursor: default; }

.mslider-dots { display: flex; gap: .4rem; justify-content: center; margin-top: 1.2rem; }
.mslider-dots button { width: 26px; height: 4px; padding: 0; border: none; cursor: pointer; background: var(--line); }
.mslider-dots button.active { background: var(--gold-2); }

.section-head-row {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.section-head-row h2 { font-size: clamp(1.35rem, 2.8vw, 2rem); margin: 0; }
.mslider-nav { display: flex; align-items: center; gap: .5rem; }
.mslider-nav .all-link { align-self: center; margin-right: .3rem; }

.mslider[data-peek] .mslider-track { gap: 1rem; padding-bottom: .3rem; }
.mslider[data-peek] .mslide { width: 80%; }
@media (min-width: 576px) { .mslider[data-peek] .mslide { width: 46%; } }
@media (min-width: 992px) {
    .mslider[data-peek="cat"] .mslide { width: 30%; }
    .mslider[data-peek="product"] .mslide { width: 23.5%; }
}

.hero-fade {
    position: relative;
    height: calc(100vh - var(--header-h, 73px));
    height: calc(100svh - var(--header-h, 73px));
    min-height: 460px;
    overflow: hidden;
    background: var(--dark);
    border-bottom: 1px solid var(--line);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility 0s linear .8s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; transition: opacity .8s ease; }

.hero-slide-img { position: absolute; inset: 0; overflow: hidden; background: var(--cream-2); }
.hero-slide-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide-img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,19,16,.72) 0%, rgba(20,19,16,.35) 32%, rgba(20,19,16,0) 62%);
    pointer-events: none;
}
.hero-slide.is-active .hero-slide-img img { animation: heroKenBurns 7.5s ease-out both; }
@keyframes heroKenBurns { from { transform: scale(1); } to { transform: scale(1.08); } }

.hero-slide-panel {
    position: absolute; left: 0; bottom: 0;
    max-width: 560px;
    background: var(--dark);
    color: #fff;
    padding: 2.2rem 2.4rem;
    border-top: 4px solid var(--gold);
    z-index: 2;
}
.hero-slide.is-active .hero-slide-panel { animation: heroPanelIn .6s ease .15s both; }
@keyframes heroPanelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.hero-slide-panel .hero-count { display: block; color: var(--gold-soft); font-weight: 700; letter-spacing: .22em; font-size: .74rem; margin-bottom: .5rem; }
.hero-slide-panel h2 { color: #fff; font-size: var(--fs-display); margin: 0 0 .6rem; }
.hero-slide-panel p { color: #D8D3CA; margin: 0 0 1.2rem; max-width: 46ch; }

.hero-progress { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.18); z-index: 4; }
.hero-progress-bar { display: block; height: 100%; width: 0; background: var(--gold); }
.hero-progress-bar.run { animation: heroProgress linear forwards; }
.hero-progress-bar.paused { animation-play-state: paused; }
@keyframes heroProgress { from { width: 0; } to { width: 100%; } }

.hero-fade .mslider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; z-index: 4;
    background: rgba(255,255,255,.9);
}
.hero-fade .mslider-btn.prev { left: 1rem; }
.hero-fade .mslider-btn.next { right: 1rem; }

.hero-controls { position: absolute; right: 1.2rem; bottom: 1.1rem; z-index: 4; display: flex; align-items: center; gap: .6rem; }
.hero-pause {
    display: grid; place-items: center;
    width: 34px; height: 34px;
    background: rgba(255,255,255,.9); color: var(--ink);
    border: 1px solid rgba(255,255,255,.5); cursor: pointer;
    font-size: .8rem;
    transition: background .2s ease, color .2s ease;
}
.hero-pause:hover { background: var(--gold-2); color: #fff; border-color: var(--gold-2); }
.hero-controls .mslider-dots { margin: 0; }
.hero-fade .mslider-dots button { background: rgba(255,255,255,.55); }
.hero-fade .mslider-dots button.active { background: var(--gold); }

@media (max-width: 767.98px) {
    .hero-fade { height: calc(100svh - var(--header-h, 73px)); min-height: 420px; }
    .hero-slide-panel { max-width: none; right: 0; padding: 1.4rem 1.2rem calc(1.4rem + env(safe-area-inset-bottom)); }
    .hero-slide-panel p { max-width: none; }
    .hero-fade .mslider-btn { display: none; }
    .hero-controls { right: 1rem; bottom: auto; top: 1rem; }
    .hero-pause { width: 44px; height: 44px; }
    .hero-fade .mslider-dots button { width: 22px; height: 5px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide { transition: none; }
    .hero-slide.is-active .hero-slide-img img,
    .hero-slide.is-active .hero-slide-panel { animation: none; }
    .hero-progress-bar.run { animation: none; }
}

.about-visual { position: relative; }
.about-badge {
    position: absolute; right: 0; bottom: 0;
    background: var(--gold-2); color: #fff;
    padding: 1rem 1.3rem; text-align: center;
    border-top: 3px solid var(--gold);
}
.about-badge .big { display: block; font-family: 'Poppins', 'Inter', sans-serif; font-weight: 800; font-size: 1.6rem; line-height: 1; }
.about-badge .sm { display: block; font-size: var(--fs-xs); color: #F3ECDD; margin-top: .2rem; letter-spacing: .05em; text-transform: uppercase; }
