

:root {
    --bg:           #e9ddc0;
    --bg-deep:      #d8c8a3;
    --surface:      #fcf8ec;
    --surface-soft: #f3ebd5;
    --ink:          #3b2c1e;
    --ink-2:        #5d4a34;
    --muted:        #9a8a6d;
    --gold:         #b3893f;
    --gold-2:       #cda85d;
    --gold-soft:    #e7d4a6;
    --border:       #e2d4b2;
    --footer:       #382a1b;
    --footer-soft:  #4a3826;
    --on-footer:    #ece0c4;
    --shadow:       rgba(58, 42, 24, .14);
    --shadow-soft:  rgba(58, 42, 24, .08);
    --danger:       #b6442f;
}

html.dark {
    --bg:           #191410;
    --bg-deep:      #0f0c09;
    --surface:      #271f16;
    --surface-soft: #2f2518;
    --ink:          #f1e6cc;
    --ink-2:        #d0bc93;
    --muted:        #9d8a68;
    --gold:         #d6ab5b;
    --gold-2:       #e7c578;
    --gold-soft:    #4a3a22;
    --border:       #43341f;
    --footer:       #0e0a07;
    --footer-soft:  #1d150d;
    --on-footer:    #ece0c4;
    --shadow:       rgba(0, 0, 0, .55);
    --shadow-soft:  rgba(0, 0, 0, .35);
    --danger:       #e0775f;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
    font-family: 'Jost', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg-deep);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

.ico  { width: 22px; height: 22px; display: block; }
.cat-ico { width: 34px; height: 34px; display: block; object-fit: contain; }
html.dark .cat-ico { filter: invert(1) brightness(1.06); }

.brand-img {
    height: 26px; width: auto; max-width: 50px;
    object-fit: contain; display: block;
}
.cat-icon .brand-img { height: 42px; max-width: 56px; }
.hotel-card .cat-icon .brand-img { filter: brightness(0) invert(1); }
.drawer-nav a .brand-img { height: 24px; max-width: 30px; }
html.dark .drawer-nav a .brand-img { filter: brightness(0) invert(1); }

.app {
    position: relative;
    max-width: 480px;
    min-height: 100dvh;
    margin: 0 auto;
    background: var(--bg) url('../img/menu-bg.webp') top center / 100% auto repeat-y;
    box-shadow: 0 0 60px rgba(0, 0, 0, .25);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}
html.dark .app { background-image: url('../img/menu-bg-dark.webp'); }
.app::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, transparent 60%, var(--bg-deep) 145%);
    opacity: .45;
    pointer-events: none;
    z-index: 0;
}
.app > * { position: relative; z-index: 1; }

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 6px;
    gap: 10px;
    position: relative;
    z-index: 30;
}
.topbar-right { display: flex; align-items: center; gap: 8px; }

.icon-btn {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 12px;
    color: var(--ink);
    transition: background .2s, transform .2s;
}
.icon-btn:active { transform: scale(.92); }
.icon-btn:hover { background: var(--surface-soft); }

.lang { position: relative; }
.lang-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 13px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    font-size: 13px; font-weight: 500;
    box-shadow: 0 2px 6px var(--shadow-soft);
}
.lang-btn .ico { width: 15px; height: 15px; transition: transform .25s; }
.lang.open .lang-btn .ico.caret { transform: rotate(180deg); }
.lang-menu {
    position: absolute; top: calc(100% + 6px); right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 30px var(--shadow);
    overflow: hidden;
    min-width: 130px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 30;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
    display: block; padding: 11px 16px;
    font-size: 14px;
}
.lang-menu a:hover { background: var(--surface-soft); }
.lang-menu a.active { color: var(--gold); font-weight: 600; }

.logo-block {
    text-align: center;
    padding: 8px 24px 20px;
}
.logo-img { width: 100%; max-width: 292px; margin: 0 auto; }
html.dark .logo-img { filter: invert(1) sepia(.16) saturate(1.1); }
.emblem {
    width: 120px; height: auto; margin: 0 auto 2px;
    color: var(--ink-2);
}
.logo-tarihi {
    font-family: 'Great Vibes', cursive;
    font-size: 34px;
    color: var(--gold);
    line-height: .8;
    margin-bottom: -4px;
}
.logo-name {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ink);
    line-height: 1.05;
}
.logo-sub {
    display: flex; align-items: center; justify-content: center;
    gap: 12px;
    margin-top: 4px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--ink-2);
}
.logo-sub::before, .logo-sub::after {
    content: ''; height: 1px; width: 34px;
    background: var(--gold);
}

.search-wrap {
    padding: 4px 18px 14px;
    position: relative;
}
.search-box {
    display: flex; align-items: center; gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0 16px;
    box-shadow: 0 3px 10px var(--shadow-soft);
}
.search-box .ico { color: var(--muted); flex: 0 0 auto; width: 19px; height: 19px; }
.search-box input {
    flex: 1; border: none; background: none;
    padding: 13px 0; font-size: 14.5px; color: var(--ink);
}
.search-box input::placeholder { color: var(--muted); }
.search-clear { color: var(--muted); display: none; }
.search-box.has-text .search-clear { display: block; }

.search-results {
    margin-top: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px var(--shadow);
    display: none;
}
.search-results.show { display: block; }
.search-result {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: var(--surface-soft); }
.sr-thumb {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--surface-soft); flex: 0 0 auto;
    object-fit: cover;
    display: grid; place-items: center;
    color: var(--gold);
}
.sr-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.sr-name { font-weight: 500; font-size: 14px; }
.sr-cat  { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.sr-price { font-family: 'Cormorant Garamond', serif; font-weight: 600;
            font-size: 16px; color: var(--gold); }
.search-empty { padding: 18px; text-align: center; color: var(--muted); font-size: 14px; }

.category-list {
    display: flex; flex-direction: column; gap: 12px;
    padding: 4px 18px 8px;
}
.cat-card {
    position: relative;
    display: flex; align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    min-height: 92px;
    box-shadow: 0 6px 18px var(--shadow-soft);
    transition: transform .2s, box-shadow .2s;
    will-change: transform;
    overflow: hidden;
}
.cat-card:active { transform: scale(.985); }
.cat-card.hidden { display: none; }

.cat-icon {
    flex: 0 0 auto;
    width: 60px; height: 60px;
    display: grid; place-items: center;
    border-radius: 16px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    color: var(--ink);
}
.cat-body {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column; justify-content: center;
    padding: 12px 6px 12px 20px;
}
.cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px; font-weight: 700;
    letter-spacing: .2px;
    color: var(--ink);
    line-height: 1.15;
    display: block;
    word-break: normal;
    overflow-wrap: normal;
    -webkit-hyphens: none;
    hyphens: none;
}
.cat-sub {
    font-size: 12.5px; color: var(--muted);
    margin-top: 3px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.cat-media {
    position: relative;
    flex: 0 0 52%;
    align-self: stretch;
}
.cat-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 60%);
    mask-image: linear-gradient(to right, transparent 0%, #000 60%);
}
.cat-photo.placeholder {
    -webkit-mask-image: none; mask-image: none;
    background: var(--surface-soft);
    display: grid; place-items: center;
    color: var(--gold-2);
}
.cat-go {
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: grid; place-items: center;
    color: var(--gold);
    box-shadow: 0 4px 14px var(--shadow);
    z-index: 2;
}
.cat-go .ico { width: 18px; height: 18px; }

.hotel-card {
    display: flex; align-items: center; gap: 14px;
    margin: 4px 18px 8px;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--footer), var(--footer-soft));
    color: var(--on-footer);
    box-shadow: 0 8px 22px var(--shadow);
}
.hotel-card .cat-icon {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .14);
    color: var(--gold-2);
}
.hotel-card .cat-name { color: var(--on-footer); }
.hotel-card .cat-sub  { color: rgba(236, 224, 196, .7); }
.hotel-card .cat-go {
    position: static; transform: none;
    background: var(--gold);
    border-color: var(--gold);
    color: var(--footer);
}

.site-footer { margin-top: auto; }
.site-info {
    padding: 22px 22px 18px;
    text-align: center;
    display: flex; flex-direction: column; gap: 8px;
    align-items: center;
}
.info-row {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--ink-2);
}
.info-row .info-ico { color: var(--gold); display: flex; }
.info-row .info-ico .ico { width: 16px; height: 16px; }
.info-links { display: flex; gap: 12px; margin-top: 6px; }
.info-link {
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--gold);
    box-shadow: 0 3px 8px var(--shadow-soft);
}
.info-link .ico { width: 19px; height: 19px; }

.brand-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 16px 20px;
    background: linear-gradient(135deg, var(--footer), var(--footer-soft));
}
.brand-bar-text {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-align: center;
    line-height: 1.35;
    color: var(--gold-2);
    text-shadow: 0 1px 0 rgba(255, 255, 255, .12), 0 2px 8px rgba(0, 0, 0, .28);
}
.brand-agency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.brand-agency img {
    display: block;
    width: auto;
    max-width: 60px;
    max-height: 18px;
    object-fit: contain;
}

.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(20, 14, 8, .55);
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 50;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 80%; max-width: 320px;
    background: var(--surface);
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.4, 0, .2, 1);
    z-index: 51;
    display: flex; flex-direction: column;
    box-shadow: 8px 0 30px rgba(0, 0, 0, .35);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
    padding: 22px 20px;
    background: linear-gradient(135deg, var(--footer), var(--footer-soft));
    color: var(--on-footer);
    display: flex; align-items: center; justify-content: space-between;
}
.drawer-head .logo-name { font-size: 24px; color: var(--on-footer); }
.drawer-head .logo-tarihi { font-size: 22px; }
.drawer-nav { padding: 14px 12px; display: flex; flex-direction: column; gap: 2px; }
.drawer-nav a {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px; font-weight: 500;
}
.drawer-nav a:hover { background: var(--surface-soft); }
.drawer-nav a .ico { color: var(--gold); }
.drawer-foot {
    margin-top: auto; padding: 18px 20px;
    border-top: 1px solid var(--border);
    font-size: 12.5px; color: var(--muted);
    text-align: center;
    line-height: 1.7;
}
.drawer-foot-tel { color: var(--muted); }
.drawer-foot-tel:hover { color: var(--gold, #c8a24a); }
.drawer-foot-hotel {
    margin-top: 12px; padding-top: 12px;
    border-top: 1px solid var(--border);
}
.drawer-foot-label {
    display: block;
    font-size: 11px; letter-spacing: .04em; text-transform: uppercase;
    opacity: .7; margin-bottom: 2px;
}
.drawer-foot-hotel .drawer-foot-tel {
    font-size: 14px; font-weight: 600;
}

body.welcome-page { background: #d8c8a3; }
.welcome-bg {
    position: fixed;
    top: 0; left: 0; right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    height: 100dvh;
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 0 60px rgba(0, 0, 0, .25);
    z-index: 0;
    pointer-events: none;
}
.welcome {
    position: relative;
    z-index: 1;
    min-height: 100dvh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
    padding: clamp(122px, 17dvh, 184px) 26px 5dvh;
    text-align: center;
    max-width: 480px; margin: 0 auto;
}
.welcome .logo-img { max-width: 282px; }
html.dark .welcome .logo-img { filter: none; }
.welcome-arch {
    width: 100%;
    max-width: 342px;
    display: flex; flex-direction: column; align-items: center;
}
.welcome-slogan {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 600;
    color: #8c6835;
    margin-top: 10px;
    text-transform: uppercase;
}
.welcome-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16.5px; font-style: italic;
    color: #5f4d36;
    margin: 16px 4px 4px;
    max-width: 280px;
}
.welcome-hello {
    font-family: 'Great Vibes', cursive;
    font-size: 30px; color: #ab823b;
    margin-top: 28px;
}
.btn-enter {
    margin-top: 30px;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 14px; letter-spacing: 1.5px;
    box-shadow: 0 10px 26px rgba(120, 90, 40, .4);
    transition: transform .2s;
}
.btn-enter:active { transform: scale(.95); }
.btn-enter .ico { width: 18px; height: 18px; }

.page-head {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px 6px;
}
.page-head .icon-btn { background: var(--surface); border: 1px solid var(--border); }
.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 25px;
    color: var(--ink); flex: 1;
    letter-spacing: .4px;
}
.cat-banner {
    margin: 6px 18px 14px;
    text-align: center;
    padding: 10px 0;
}
.cat-banner .logo-sub { margin-top: 0; }
.cat-banner .cat-banner-name {
    font-family: 'Cinzel', serif;
    font-size: 22px; letter-spacing: 1.5px;
    color: var(--ink);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.cat-banner .cat-banner-sub {
    font-size: 13px; color: var(--muted); margin-top: 4px;
}

.subcat-heading {
    display: flex; align-items: center; gap: 14px;
    margin: 22px 22px 4px;
}
.subcat-heading span {
    font-family: 'Cinzel', serif;
    font-size: 13.5px; letter-spacing: 1.6px;
    color: var(--gold);
    white-space: nowrap;
}
.subcat-heading::before, .subcat-heading::after {
    content: ''; height: 1px; flex: 1;
    background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
}

.product-list {
    display: flex; flex-direction: column; gap: 14px;
    padding: 8px 18px 6px;
}
.product-card {
    position: relative;
    display: flex; gap: 13px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 6px 16px var(--shadow-soft);
    transition: transform .2s;
    text-align: left;
    width: 100%;
}
.product-card:active { transform: scale(.985); }
.product-card.hidden { display: none; }
.pc-media { position: relative; flex: 0 0 auto; }
.pc-photo {
    width: 92px; height: 92px;
    border-radius: 14px;
    object-fit: cover;
    background: var(--surface-soft);
}
.pc-photo.placeholder { display: grid; place-items: center; color: var(--gold-2); }
.pc-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.pc-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 19px;
    color: var(--ink); line-height: 1.2;
    display: block;
    word-break: normal;
    overflow-wrap: normal;
    -webkit-hyphens: none;
    hyphens: none;
}
.pc-desc {
    font-size: 12.5px; color: var(--muted);
    margin-top: 3px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.pc-foot {
    margin-top: auto; padding-top: 8px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
}
.pc-allergens { display: flex; gap: 4px; flex-wrap: wrap; }

.price {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 21px;
    color: var(--gold);
    white-space: nowrap;
}
.price-old {
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 400;
    color: var(--muted);
    text-decoration: line-through;
    margin-right: 6px;
}
.price-wrap { display: flex; align-items: baseline; }

.badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 10.5px; font-weight: 600;
    letter-spacing: .3px;
}
.badge-featured {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #fff;
}
.badge-featured .ico { width: 12px; height: 12px; }
.badge-discount {
    background: linear-gradient(135deg, #e8483b, #c5271c);
    color: #fff;
    box-shadow: 0 2px 6px rgba(197, 39, 28, .28);
}
.pc-badges {
    position: absolute; top: 10px; right: 11px;
    display: flex; flex-direction: column; gap: 5px; align-items: flex-end;
    z-index: 2;
}
.product-card.has-badge .pc-name { padding-right: 86px; }

.modal-badges {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 10px;
}

.modal-discount { margin-bottom: 10px; }

.allergen-chip {
    font-size: 10.5px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    color: var(--ink-2);
}
.allergen-note {
    display: block;
    width: 100%;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--ink-2);
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
}

.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(20, 14, 8, .6);
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 60;
    display: flex; align-items: flex-end; justify-content: center;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
    background: var(--surface);
    width: 100%; max-width: 480px;
    border-radius: 26px 26px 0 0;
    max-height: 90dvh; overflow-y: auto;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-grip {
    width: 44px; height: 5px; border-radius: 3px;
    background: var(--border);
    margin: 10px auto 0;
}
.modal-photo {
    width: 100%;
    display: block;
    background: var(--surface-soft);
}
img.modal-photo {
    height: auto;
    max-height: 62vh;
    object-fit: contain;
}
.modal-photo.placeholder {
    height: 210px;
    display: grid; place-items: center; color: var(--gold-2);
}
.modal-photo.placeholder .cat-ico { width: 64px; height: 64px; }
.modal-body { padding: 18px 22px 30px; }
.modal-head {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.modal-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 27px;
    color: var(--ink); line-height: 1.15;
}
.modal-close {
    flex: 0 0 auto;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--surface-soft);
    display: grid; place-items: center;
    color: var(--ink-2);
}
.modal-desc {
    font-size: 14.5px; color: var(--ink-2);
    margin-top: 10px; line-height: 1.6;
}
.modal-section { margin-top: 20px; }
.modal-section h4 {
    font-family: 'Cinzel', serif;
    font-size: 12px; letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 9px;
    display: flex; align-items: center; gap: 7px;
}
.modal-section h4 .ico { width: 15px; height: 15px; }
.allergen-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.price-rows { display: flex; flex-direction: column; gap: 8px; }
.price-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 16px;
    border-radius: 14px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
}
.price-row.full { border-color: var(--gold-soft); }
.price-row-label { font-size: 14px; font-weight: 500; }
.price-row .price { font-size: 22px; }

.hotel-video {
    margin: 4px 18px 16px;
    border-radius: 16px; overflow: hidden;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px var(--shadow-soft);
}
.hotel-video video { display: block; width: 100%; }

.hotel-intro {
    margin: 6px 22px 18px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16.5px; font-style: italic;
    color: var(--ink-2);
}
.gallery {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    padding: 0 18px 18px;
}
.gallery-item {
    border-radius: 16px; overflow: hidden;
    aspect-ratio: 1;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px var(--shadow-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center; padding: 50px 20px;
    color: var(--muted);
}

.lightbox {
    position: fixed; inset: 0;
    background: rgba(12, 8, 4, .92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 70; padding: 20px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 86dvh; border-radius: 12px; }
.lightbox-close {
    position: absolute; top: 18px; right: 18px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: grid; place-items: center; color: #fff;
}

.empty-state {
    text-align: center; padding: 60px 30px;
    color: var(--muted);
}
.empty-state .cat-ico {
    width: 54px; height: 54px; margin: 0 auto 14px;
    color: var(--gold-2);
}

@keyframes bpReveal {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bpArch {
    from { opacity: 0; transform: scale(.96); }
    to   { opacity: 1; transform: scale(1); }
}

.reveal      { animation: bpReveal .7s cubic-bezier(.2, .7, .2, 1) both; }
.reveal-arch { animation: bpArch 1.1s ease-out both; }

.category-list .cat-card:nth-child(1) { animation-delay: .04s; }
.category-list .cat-card:nth-child(2) { animation-delay: .10s; }
.category-list .cat-card:nth-child(3) { animation-delay: .16s; }
.category-list .cat-card:nth-child(4) { animation-delay: .22s; }
.category-list .cat-card:nth-child(5) { animation-delay: .28s; }
.category-list .cat-card:nth-child(6) { animation-delay: .34s; }
.category-list .cat-card:nth-child(7) { animation-delay: .40s; }
.category-list .cat-card:nth-child(n+8) { animation-delay: .46s; }

.product-list .product-card:nth-child(1) { animation-delay: .04s; }
.product-list .product-card:nth-child(2) { animation-delay: .10s; }
.product-list .product-card:nth-child(3) { animation-delay: .16s; }
.product-list .product-card:nth-child(4) { animation-delay: .22s; }
.product-list .product-card:nth-child(5) { animation-delay: .28s; }
.product-list .product-card:nth-child(6) { animation-delay: .34s; }
.product-list .product-card:nth-child(n+7) { animation-delay: .40s; }

.gallery .gallery-item:nth-child(odd)  { animation-delay: .06s; }
.gallery .gallery-item:nth-child(even) { animation-delay: .14s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-delay: 0s !important;
        transition-duration: .01ms !important;
    }
}
