/* ============================================
   KAPANO LEATHER GOODS — Editorial light theme
   ============================================ */

/* ========== LOCAL FONTS ========== */
@font-face {
    font-family: 'BPG Mrgvlovani Caps';
    src: url('../fonts/bpg_mrgvlovani_caps_2010.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO-Thin.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'FiraGO';
    src: url('../fonts/FiraGO-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Brand palette derived from the Kapano logo:
       - Deep leather brown for ink/text and footer
       - Antique gold for accents
       - Warm cream/aged-paper background */
    --bg:        #ffffff;   /* pure white page */
    --bg-2:      #f5ebd9;   /* warm cream — used for footer & craft section */
    --bg-3:      #ead9bb;
    --ink:       #2a1810;   /* deep leather brown (from logo bg) */
    --ink-soft:  #5a3d28;
    --muted:     #8a6d4f;
    --line:      #e8e1d2;
    --accent:    #c9a35d;   /* antique gold (from logo text) */
    --accent-2:  #b08a45;   /* darker gold for hovers */
    --footer-bg: #1a0f08;   /* darkest leather brown */
    --footer-text: #e8d5a8; /* cream-gold for footer text */

    --serif: 'BPG Mrgvlovani Caps', 'DM Serif Display', 'Times New Roman', serif;
    --sans:  'FiraGO', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --topbar-h: 0px;
    --header-h: 66px;
    --nav-h:    0px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
}
/* No italics anywhere */
em, i, cite, address, dfn, var { font-style: normal; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
    width: min(1280px, 92%);
    margin-inline: auto;
}

/* ========== TOPBAR ========== */
.topbar {
    background: var(--ink);
    color: #d8cfbd;
    font-size: 12px;
    letter-spacing: .12em;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}
.topbar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
}
.topbar__msg { margin: 0; }

/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s;
}
.site-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.header__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-h);
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    transition: opacity .25s, transform .35s ease;
    flex-shrink: 0;
}
.brand:hover { opacity: .9; transform: scale(1.02); }
.brand__logo {
    height: 22px;
    width: auto;
    display: block;
}

/* Main inline nav */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    flex: 1;
}
.main-nav__link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--ink-soft);
    padding: 8px 0;
    position: relative;
    transition: color .25s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.main-nav__link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .3s ease;
}
.main-nav__link:hover { color: var(--accent-2); }
.main-nav__link:hover::after { transform: scaleX(1); }

/* Dropdown */
.has-dropdown {
    position: relative;
}
.has-dropdown .dropdown__chev {
    font-size: 9px;
    transition: transform .3s ease;
}
.has-dropdown:hover .dropdown__chev,
.has-dropdown:focus-within .dropdown__chev {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 18px 22px;
    box-shadow: 0 20px 60px -10px rgba(26, 15, 8, .18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, transform .35s cubic-bezier(.2,.7,.2,1), visibility .3s;
    z-index: 60;
}
/* Flat dropdown (single column) */
.dropdown--flat {
    display: flex;
    flex-direction: column;
}
.dropdown--flat a {
    display: block;
    padding: 10px 4px;
    color: var(--ink-soft);
    font-size: 13px;
    border-bottom: 1px solid var(--line);
    transition: color .25s ease, padding-left .25s ease;
}
.dropdown--flat a:last-child { border-bottom: none; }
.dropdown--flat a:hover {
    color: var(--accent-2);
    padding-left: 10px;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0; right: 0; height: 16px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.has-dropdown.is-open .dropdown__chev {
    transform: rotate(180deg);
}
.dropdown__group h5 {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--ink);
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
    font-weight: 400;
    letter-spacing: .04em;
}
.dropdown__group a {
    display: block;
    color: var(--ink-soft);
    font-size: 13px;
    padding: 7px 0;
    transition: color .25s, padding-left .25s;
}
.dropdown__group a:hover {
    color: var(--accent-2);
    padding-left: 6px;
}

/* Currency switcher */
.currency-switch {
    flex-shrink: 0;
}
.currency-switch__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 6px;
    background: transparent;
    border: 0;
    color: var(--ink-soft);
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .05em;
    cursor: pointer;
    transition: color .25s ease;
}
.currency-switch__toggle > i:first-child {
    color: var(--accent-2);
    font-size: 12px;
}
.currency-switch__toggle .dropdown__chev {
    font-size: 9px;
    transition: transform .3s ease;
}
.currency-switch:hover .currency-switch__toggle,
.currency-switch.is-open .currency-switch__toggle {
    color: var(--accent);
}
.currency-switch:hover .dropdown__chev,
.currency-switch.is-open .dropdown__chev {
    transform: rotate(180deg);
}

/* Currency dropdown menu */
.dropdown--currency {
    min-width: 200px;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 0;
}
.currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--ink-soft);
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, padding-left .25s ease;
    width: 100%;
}
.currency-option:hover {
    background: var(--bg-2);
    color: var(--ink);
    padding-left: 22px;
}
.currency-option.is-active {
    color: var(--accent-2);
    font-weight: 500;
    background: var(--bg-2);
}
.currency-option__sym {
    font-family: var(--serif);
    font-size: 18px;
    width: 22px;
    color: var(--accent);
    text-align: center;
}
.currency-option__name {
    flex: 1;
}
.currency-option small {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* Overlay header — currency switcher light variant */
.site-header--overlay .currency-switch__toggle {
    color: rgba(245, 235, 217, .92);
}
.site-header--overlay .currency-switch__toggle > i:first-child {
    color: var(--accent);
}
.site-header--overlay:not(.is-scrolled) .currency-switch:hover .currency-switch__toggle,
.site-header--overlay:not(.is-scrolled) .currency-switch.is-open .currency-switch__toggle {
    color: var(--accent);
}
.site-header--overlay.is-scrolled .currency-switch__toggle {
    color: var(--ink-soft);
}
.site-header--overlay.is-scrolled .currency-switch__toggle > i:first-child {
    color: var(--accent-2);
}

@media (max-width: 1080px) {
    .currency-switch__label { display: none; }
    .currency-switch__toggle { padding: 10px 12px; }
}
@media (max-width: 880px) {
    .currency-switch { display: none; }
}

/* Call button (right) — matches btn--dark editorial system */
.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: var(--ink);
    color: var(--bg);
    border: 1px solid var(--ink);
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.call-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateY(101%);
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
    z-index: -1;
}
.call-btn:hover::before { transform: translateY(0); }
.call-btn:hover {
    color: var(--ink);
    border-color: var(--accent);
}
.call-btn__icon {
    font-size: 13px;
    color: var(--accent);
    transition: color .3s ease;
}
.call-btn:hover .call-btn__icon { color: var(--ink); }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    flex-shrink: 0;
}
.burger span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--ink);
    transition: transform .3s, opacity .3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--bg);
    z-index: 49;
    padding: 40px 24px;
    transform: translateX(-100%);
    transition: transform .4s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer > a {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 24px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    letter-spacing: .03em;
}
.mobile-group {
    border-bottom: 1px solid var(--line);
    padding: 16px 0 10px;
}
.mobile-group__title {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    margin: 0 0 8px;
    letter-spacing: .03em;
}
.mobile-group a {
    color: var(--ink-soft);
    font-size: 15px;
    display: block;
    padding: 6px 0 6px 14px;
    border-left: 1px solid var(--line);
    margin-left: 4px;
    transition: color .25s, padding-left .25s;
}
.mobile-group a:hover {
    color: var(--accent-2);
    padding-left: 20px;
}
.call-btn--mobile {
    margin-top: 30px;
    justify-content: center;
    padding: 16px 28px;
}

@media (max-width: 1080px) {
    .main-nav { gap: 24px; }
    .call-btn__label { display: none; }
    .call-btn { padding: 12px 14px; }
}
@media (max-width: 880px) {
    .main-nav,
    .call-btn:not(.call-btn--mobile) { display: none; }
    .burger { display: flex; }
    .header__bar { justify-content: space-between; }
}

/* ========== CALL POPUP ========== */
.popup {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s;
}
.popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 15, 8, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.popup__inner {
    position: relative;
    background: var(--bg);
    width: 100%;
    max-width: 480px;
    padding: 48px 40px 40px;
    border-radius: 2px;
    border: 1px solid var(--line);
    transform: translateY(20px) scale(.97);
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
    box-shadow: 0 40px 80px -20px rgba(26, 15, 8, .35);
}
.popup.is-open .popup__inner {
    transform: translateY(0) scale(1);
}
.popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, color .25s ease;
    font-size: 16px;
}
.popup__close:hover {
    background: var(--bg-2);
    color: var(--ink);
}
.popup__eyebrow {
    display: block;
    color: var(--accent-2);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 500;
}
.popup__title {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--ink);
    margin: 0 0 14px;
    font-weight: 400;
    line-height: 1.2;
}
.popup__text {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 28px;
}
/* Form */
.popup__view { display: none; }
.popup__view--form { display: block; }
.popup.is-success .popup__view--form { display: none; }
.popup.is-success .popup__view--success { display: block; }

.popup__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field label {
    color: var(--ink-soft);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
}
.form-field .req { color: var(--accent-2); }
.form-field input,
.form-field select,
.form-field textarea {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 12px 14px;
    color: var(--ink);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .25s ease, background .25s ease;
    width: 100%;
    resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    background: #fff;
}
.form-field input.is-error,
.form-field select.is-error,
.form-field textarea.is-error {
    border-color: #c0392b;
}
.form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%238a6d4f' d='M6 8L0 0h12z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}

.btn--full { width: 100%; margin-top: 6px; }

/* Success view */
.popup__view--success {
    text-align: center;
    padding: 10px 0;
}
.popup__success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 22px;
    animation: successPop .55s cubic-bezier(.2,.9,.3,1.3);
}
@keyframes successPop {
    0%   { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

body.popup-open {
    overflow: hidden;
}

/* ========== GLOBAL MOBILE OVERRIDES ========== */
@media (max-width: 768px) {
    .container { width: min(1280px, 92%); }

    /* Section padding — reduce everywhere */
    .shop-section,
    .categories-section,
    .craft-section,
    .related-section,
    .archive-section,
    .contact-section,
    .story-section,
    .process-section,
    .values-section,
    .quote-section,
    .stats-section,
    .faq-section,
    .instagram-section,
    .cta-section {
        padding: 60px 0;
    }

    .page-banner { padding: 40px 0 30px; }
    .page-banner__title { font-size: 1.9rem; }
    .page-banner__sub { font-size: 14px; line-height: 1.6; }

    /* Section headings */
    .section-head { margin-bottom: 36px; margin-top: 50px; }
    .section-head:first-of-type { margin-top: 0; }
    .section-head__title { font-size: 1.7rem; }
    .section-head__sub { font-size: 13px; }

    /* CTA */
    .cta-section__title { font-size: 1.7rem; }
    .cta-section__text { font-size: 14px; }

    /* Buttons — comfortable tap targets */
    .btn { padding: 14px 24px; font-size: 11px; }
    .btn--lg { padding: 16px 26px; font-size: 11px; }
    .btn--circle { width: 46px; height: 46px; }

    /* Hero arrows smaller on mobile */
    .hero-full__arrow {
        width: 40px; height: 40px;
        font-size: 12px;
    }
    .hero-full__arrow--prev { left: 12px; }
    .hero-full__arrow--next { right: 12px; }
    .hero-full__counter { display: none; }
    .hero-full__scroll { display: none; }
    .hero-full__dots { bottom: 20px; }
    .hero-full__dot { width: 24px; }
    .hero-full__dot.is-active { width: 40px; }

    /* Hero text — tighter padding */
    .hero-full__content { padding-left: 24px; padding-right: 24px; }
    .hero-full__cta { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; max-width: 280px; }
    .hero-full__cta .btn { justify-content: center; }

    /* Product cards — tighter */
    .product__link { padding: 14px 14px 18px; }
    .woocommerce-loop-product__title { font-size: 12px; }
    .product__desc { font-size: 11px; }

    /* Filter bar on archive */
    .filter-bar { padding: 18px 0; }
    .filter-chip { padding: 8px 14px; font-size: 11px; }

    /* Breadcrumbs */
    .breadcrumbs { font-size: 11px; gap: 8px; }

    /* Footer */
    .site-footer { padding: 60px 0 24px; }
    .footer__inner { gap: 36px; margin-bottom: 40px; }
    .footer__col h4 { font-size: 1.15rem; margin-bottom: 14px; }
    .footer__logo { height: 20px; }
    .footer__bottom { font-size: 11px; gap: 12px; text-align: center; justify-content: center; }
    .footer__bottom p { width: 100%; text-align: center; }
    .footer__social { justify-content: center; width: 100%; }

    /* Popup form */
    .popup__inner { padding: 36px 22px 28px; }
    .popup__title { font-size: 1.4rem; }
    .popup__text { font-size: 13px; }

    /* About page badges */
    .story-media__badge { right: 16px; bottom: 16px; padding: 14px 18px; }
    .story-media__badge strong { font-size: 1.6rem; }
    .story-text p { font-size: 14px; }

    /* Process step */
    .process-step { padding: 28px 20px; }
    .process-step__num { font-size: 2.4rem; }
    .process-step__title { font-size: 1.15rem; }

    /* Stat numbers */
    .stat-item__number { font-size: 2rem; }
    .stat-item__label { font-size: 11px; }

    /* Contact form card */
    .contact-form-card { padding: 28px 20px; }
    .contact-form-card__title { font-size: 1.4rem; }

    /* Product detail */
    .product-info__title { font-size: 1.8rem; }
    .product-info__lead { font-size: 14px; }
    .product-features li { font-size: 13px; }
    .product-tabs__nav { gap: 14px; }
    .tab-btn { font-size: 12px; padding: 12px 0; }

    /* Categories — increase touch area */
    .category__label { font-size: 1.05rem; }

    /* FAQ */
    .faq-item summary { padding: 16px 0; font-size: 14px; gap: 14px; }
    .faq-item summary i { width: 26px; height: 26px; font-size: 10px; }
    .faq-item__body { font-size: 13px; padding-bottom: 18px; }
    .faq-group__title { font-size: 1.4rem; }

    /* Instagram section */
    .instagram-section__head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
    .instagram-section__title { font-size: 1.6rem; }
    .instagram-section__sub { font-size: 13px; }
    .instagram-section__follow { width: 100%; max-width: 280px; text-align: center; }
    .instagram-section__follow.btn { justify-content: center; }

    /* Thank you */
    .thank-you__icon { width: 76px; height: 76px; font-size: 28px; margin-bottom: 24px; }
    .thank-you__title { font-size: 2.2rem; }
    .thank-you__text { font-size: 14px; margin-bottom: 30px; }

    /* Header mobile */
    .header__bar { gap: 16px; }
    .brand__logo { height: 20px; }

    /* Hero arrows tap area */
    .hero-full__arrow { backdrop-filter: none; }
}

@media (max-width: 480px) {
    /* Hero details are owned by the rewrite block lower in this file.
       Only keep things that don't conflict here. */

    /* Popup full-screen feel on tiny screens */
    .popup { padding: 12px; }
    .popup__inner { max-height: 90vh; overflow-y: auto; }
}

/* ========== HERO — FULL-WIDTH SLIDER (home.html) ========== */
.hero-full {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--ink);
    color: var(--bg);
}

.hero-full__slides {
    position: absolute;
    inset: 0;
}

.hero-full__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.06);
    transition: opacity 1.2s ease, transform 8s ease, visibility 1.2s;
}
.hero-full__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-full__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 15, 8, .35) 0%, rgba(26, 15, 8, .25) 40%, rgba(26, 15, 8, .85) 100%),
        linear-gradient(90deg, rgba(26, 15, 8, .55) 0%, rgba(26, 15, 8, .1) 70%);
    z-index: 1;
}

.hero-full__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 680px;
    padding-left: clamp(24px, 6vw, 110px);
    padding-right: 24px;
}

/* Clean opacity-only fade-in (no transform → no layout shift / overlap) */
.hero-full__slide .hero-full__eyebrow,
.hero-full__slide .hero-full__title,
.hero-full__slide .hero-full__sub,
.hero-full__slide .hero-full__cta {
    opacity: 0;
    transition: opacity .9s cubic-bezier(.2,.7,.2,1);
}
.hero-full__slide.is-active .hero-full__eyebrow { opacity: 1; transition-delay: .15s; }
.hero-full__slide.is-active .hero-full__title   { opacity: 1; transition-delay: .35s; }
.hero-full__slide.is-active .hero-full__sub     { opacity: 1; transition-delay: .55s; }
.hero-full__slide.is-active .hero-full__cta     { opacity: 1; transition-delay: .75s; }

.hero-full__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    font-weight: 500;
}
.hero-full__eyebrow::before {
    content: '';
    width: 36px; height: 1px;
    background: var(--accent);
}

.hero-full__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.7rem, 2.8vw, 2.6rem);
    line-height: 1.2;
    letter-spacing: .01em;
    margin: 0 0 22px;
    color: var(--bg);
    max-width: 560px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-full__sub {
    font-size: clamp(.9rem, 1vw, 1rem);
    line-height: 1.6;
    max-width: 460px;
    color: rgba(245, 235, 217, .82);
    margin: 0 0 32px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-full__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Light ghost button for dark hero */
.btn--ghost-light {
    background: transparent;
    color: var(--bg);
    border: 1px solid rgba(245, 235, 217, .45);
}
.btn--ghost-light i { margin-left: 6px; transition: transform .3s ease; }
.btn--ghost-light:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn--ghost-light:hover i { transform: translateX(4px); }

/* Slider arrows (sides) */
.hero-full__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(245, 235, 217, .3);
    color: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
    background: rgba(26, 15, 8, .15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 14px;
}
.hero-full__arrow:hover {
    background: var(--accent);
    color: var(--ink);
    border-color: var(--accent);
}
.hero-full__arrow--prev { left: 32px; }
.hero-full__arrow--next { right: 32px; }

/* Counter (bottom-right) */
.hero-full__counter {
    position: absolute;
    right: 36px;
    bottom: 38px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--bg);
    font-size: 13px;
    letter-spacing: .25em;
    font-weight: 500;
}
.hero-full__counter-line {
    width: 64px; height: 1px;
    background: rgba(245, 235, 217, .35);
}

/* Dots (bottom-center) */
.hero-full__dots {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-full__dot {
    width: 32px;
    height: 2px;
    background: rgba(245, 235, 217, .3);
    transition: background .3s ease, width .3s ease;
}
.hero-full__dot.is-active {
    background: var(--accent);
    width: 52px;
}

/* Scroll cue (bottom-left) */
.hero-full__scroll {
    position: absolute;
    left: 36px;
    bottom: 38px;
    z-index: 3;
    color: var(--bg);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: .75;
    transition: opacity .3s ease;
}
.hero-full__scroll:hover { opacity: 1; }
.hero-full__scroll i {
    color: var(--accent);
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* Overlay header (transparent over hero, becomes solid on scroll) */
.site-header--overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 1px solid rgba(245, 235, 217, .14);
    z-index: 50;
    transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.site-header--overlay .brand__logo {
    filter: brightness(0) invert(1);
    transition: filter .4s ease;
}
.site-header--overlay .main-nav__link {
    color: rgba(245, 235, 217, .9);
    transition: color .35s ease;
}
.site-header--overlay .main-nav__link:hover {
    color: var(--accent);
}
.site-header--overlay .main-nav__link::after {
    background: var(--accent);
}
.site-header--overlay .burger span {
    background: var(--bg);
    transition: background .35s ease;
}
.site-header--overlay .call-btn {
    background: transparent;
    color: var(--bg);
    border-color: rgba(245, 235, 217, .4);
    transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.site-header--overlay .call-btn::before {
    background: var(--accent);
}
.site-header--overlay .call-btn:hover {
    color: var(--ink);
    border-color: var(--accent);
}
.site-header--overlay .call-btn__icon {
    color: var(--accent);
    transition: color .35s ease;
}
.site-header--overlay .call-btn:hover .call-btn__icon {
    color: var(--ink);
}

/* When user scrolls down, header becomes solid */
.site-header--overlay.is-scrolled {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: var(--line);
    box-shadow: 0 4px 24px rgba(26, 15, 8, .08);
}
.site-header--overlay.is-scrolled .brand__logo { filter: none; }
.site-header--overlay.is-scrolled .main-nav__link { color: var(--ink-soft); }
.site-header--overlay.is-scrolled .main-nav__link:hover { color: var(--accent-2); }
.site-header--overlay.is-scrolled .burger span { background: var(--ink); }
.site-header--overlay.is-scrolled .call-btn {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.site-header--overlay.is-scrolled .call-btn:hover {
    color: var(--ink);
    border-color: var(--accent);
}
.site-header--overlay.is-scrolled .call-btn__icon { color: var(--accent); }

@media (max-width: 860px) {
    .hero-full__arrow { width: 44px; height: 44px; }
    .hero-full__arrow--prev { left: 16px; }
    .hero-full__arrow--next { right: 16px; }
    .hero-full__counter { right: 16px; bottom: 16px; }
    .hero-full__scroll { display: none; }
    .hero-full__dots { bottom: 22px; }
}

/* ========== HERO SLIDER ========== */
.hero {
    position: relative;
    background: var(--bg);
    overflow: hidden;
    height: calc(100vh - var(--header-h) - var(--nav-h));
    min-height: 600px;
    display: grid;
    grid-template-rows: 1fr auto auto;
    padding: clamp(24px, 4vh, 48px) 0;
}

.hero__slides {
    position: relative;
    min-height: 0;
    overflow: hidden;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .8s ease, visibility .8s;
    height: 100%;
}
.hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 50px;
    align-items: stretch;
    height: 100%;
    padding: 0;
}

.hero__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}
/* Hero sub + CTA still fade-in on slide change */
.hero__slide .hero__sub,
.hero__slide .hero__cta {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.hero__slide.is-active .hero__sub  { opacity: 1; transform: translateY(0); transition-delay: .35s; }
.hero__slide.is-active .hero__cta  { opacity: 1; transform: translateY(0); transition-delay: .55s; }
/* Hero title is split into words and animated via .split-text — handled separately */

.hero__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.7rem, 3.2vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: .01em;
    margin: 0 0 22px;
    color: var(--ink);
}

.hero__sub {
    font-size: clamp(.9rem, 1vw, 1rem);
    line-height: 1.65;
    max-width: 440px;
    color: var(--ink-soft);
    margin: 0 0 32px;
}

.hero__cta {
    display: flex;
    gap: 14px;
    align-items: center;
}

/* Hero image */
.hero__media {
    height: 100%;
    overflow: hidden;
    border-radius: 2px;
    background: var(--bg-2);
    position: relative;
}
.hero__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}
.hero__slide.is-active .hero__img {
    transform: scale(1.06);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    transition: all .3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.btn--dark {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateY(101%);
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
    z-index: -1;
}
.btn--dark:hover::before { transform: translateY(0); }
.btn--dark:hover {
    color: var(--ink);
    border-color: var(--accent);
}
.btn--circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    padding: 0;
}
.btn--circle:hover {
    background: var(--accent);
    color: var(--ink);
    border-color: var(--accent);
}

/* Slider controls — under hero */
.hero__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 28px 0 12px;
    flex-shrink: 0;
}
.hero__arrow {
    width: 42px; height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    font-size: 12px;
}
.hero__arrow:hover {
    background: var(--accent);
    color: var(--ink);
    border-color: var(--accent);
}

.hero__counter {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    font-size: 12px;
    letter-spacing: .2em;
    font-weight: 500;
}
.hero__counter-line {
    width: 50px; height: 1px;
    background: var(--line);
}

.hero__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-bottom: 0;
    flex-shrink: 0;
}
.hero__dot {
    width: 28px;
    height: 2px;
    background: var(--line);
    transition: background .3s, width .3s;
}
.hero__dot.is-active {
    background: var(--accent);
    width: 44px;
}

@media (max-width: 860px) {
    .hero {
        height: auto;
        min-height: 0;
    }
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        height: auto;
        padding: 30px 0;
    }
    .hero__media { min-height: 360px; }
}

/* ========== SHOP / PRODUCT GRID ========== */
.shop-section {
    padding: 90px 0 110px;
    background: var(--bg);
}
.section-head {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 80px;
}
.section-head:first-of-type { margin-top: 0; }
.section-head__title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin: 0 0 14px;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.1;
}
.section-head__sub {
    color: var(--ink-soft);
    font-size: 14px;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
@media (max-width: 1080px) { .products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .products { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px)  { .products { gap: 10px; } }

.product {
    display: flex;
}
.product__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    transition: transform .6s cubic-bezier(.2,.7,.2,1), border-color .35s ease;
    background: var(--paper, #ffffff);
    padding: 20px 20px 22px;
    border: 1px solid var(--line);
    border-radius: 2px;
}
.product__link:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
}

.product__media {
    aspect-ratio: 1/1;
    background-color: var(--bg-2);
    margin-bottom: 16px;
    border-radius: 1px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.product__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}
.product__link:hover .product__img {
    transform: scale(1.07);
    filter: brightness(.97);
}
.product__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(26, 23, 20, .18) 100%);
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}
.product__link:hover .product__media::after { opacity: 1; }

.woocommerce-loop-product__title {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 8px;
    color: var(--ink);
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .35s ease, letter-spacing .4s ease;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
    line-height: 1.35;
    min-height: calc(1.35em * 2);
}

.product__desc {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.55;
    color: var(--ink-soft);
    text-align: center;
    letter-spacing: .01em;
    padding: 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.55em * 2);
}

.product__price {
    text-align: center;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: .03em;
    margin: 0;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    transition: color .3s ease;
    position: relative;
}
.product__price[data-loading="true"] { opacity: .6; }
.product__link:hover .product__price { color: var(--accent-2); }
.woocommerce-loop-product__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width .45s cubic-bezier(.2,.7,.2,1);
}
.product__link:hover .woocommerce-loop-product__title {
    letter-spacing: .12em;
    color: var(--accent-2);
}
.product__link:hover .woocommerce-loop-product__title::after {
    width: 38px;
}

/* ========== SCROLL REVEAL ========== */

/* Word-by-word reveal — each .word is a span injected by JS */
.split-text .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: .25em;
}
.split-text .word__inner {
    display: inline-block;
    transform: translateY(115%);
    opacity: 0;
    transition: transform 1.1s cubic-bezier(.2,.7,.2,1), opacity 1.1s ease;
    will-change: transform, opacity;
}
.split-text.is-visible .word__inner {
    transform: translateY(0);
    opacity: 1;
}
/* Stagger each word inside a title */
.split-text.is-visible .word:nth-child(1) .word__inner { transition-delay: .00s; }
.split-text.is-visible .word:nth-child(2) .word__inner { transition-delay: .07s; }
.split-text.is-visible .word:nth-child(3) .word__inner { transition-delay: .14s; }
.split-text.is-visible .word:nth-child(4) .word__inner { transition-delay: .21s; }
.split-text.is-visible .word:nth-child(5) .word__inner { transition-delay: .28s; }
.split-text.is-visible .word:nth-child(6) .word__inner { transition-delay: .35s; }
.split-text.is-visible .word:nth-child(7) .word__inner { transition-delay: .42s; }
.split-text.is-visible .word:nth-child(8) .word__inner { transition-delay: .49s; }
.split-text.is-visible .word:nth-child(9) .word__inner { transition-delay: .56s; }
.split-text.is-visible .word:nth-child(10) .word__inner { transition-delay: .63s; }

/* Generic text fade-up reveal for paragraphs / subs */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal--delay-1 { transition-delay: .15s; }
.reveal--delay-2 { transition-delay: .3s; }
.reveal--delay-3 { transition-delay: .45s; }
.reveal--delay-4 { transition-delay: .6s; }

/* ===== Card mask reveal ===== */
/* The image inside .product__media slides up from behind a "curtain" */
.product__media .product__img {
    transform: scale(1.12) translateY(40px);
    opacity: 0;
    transition: transform 1.4s cubic-bezier(.2,.7,.2,1), opacity 1s ease;
}
.products.is-visible .product__img {
    transform: scale(1) translateY(0);
    opacity: 1;
}
/* Override hover scale once it's in view (so hover still works) */
.products.is-visible .product__link:hover .product__img {
    transform: scale(1.07);
    filter: brightness(.97);
}

/* Whole card fade + lift, staggered */
.products .product {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.products.is-visible .product { opacity: 1; transform: translateY(0); }
.products.is-visible .product:nth-child(1) { transition-delay: .05s; }
.products.is-visible .product:nth-child(2) { transition-delay: .18s; }
.products.is-visible .product:nth-child(3) { transition-delay: .31s; }
.products.is-visible .product:nth-child(4) { transition-delay: .44s; }
.products.is-visible .product:nth-child(5) { transition-delay: .57s; }
.products.is-visible .product:nth-child(6) { transition-delay: .70s; }
/* Stagger inner img reveal too */
.products.is-visible .product:nth-child(1) .product__img { transition-delay: .15s; }
.products.is-visible .product:nth-child(2) .product__img { transition-delay: .28s; }
.products.is-visible .product:nth-child(3) .product__img { transition-delay: .41s; }
.products.is-visible .product:nth-child(4) .product__img { transition-delay: .54s; }
.products.is-visible .product:nth-child(5) .product__img { transition-delay: .67s; }
.products.is-visible .product:nth-child(6) .product__img { transition-delay: .80s; }

/* Section title underline */
.section-head__title {
    position: relative;
    display: inline-block;
}
.section-head__title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transform: translateX(-50%);
    transition: width 1.1s cubic-bezier(.2,.7,.2,1) .4s;
}
.section-head.is-visible .section-head__title::after { width: 48px; }
.price {
    color: var(--muted);
    font-weight: 400;
    font-size: 13px;
    display: block;
    text-align: center;
}

/* ========== FAQ PAGE ========== */
.faq-section {
    padding: 60px 0 90px;
    background: var(--bg);
}
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    transition: color .25s ease;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-2); }
.faq-item summary i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-2);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.faq-item[open] summary i {
    background: var(--accent);
    color: var(--ink);
    transform: rotate(180deg);
}
.faq-item[open] summary {
    color: var(--ink);
}
.faq-item__body {
    padding: 0 0 24px;
    color: var(--ink-soft);
    line-height: 1.85;
    font-size: 14px;
    max-width: 760px;
    animation: faqExpand .35s ease;
}
.faq-item__body p { margin: 0 0 12px; }
.faq-item__body p:last-child { margin: 0; }
.faq-item__body strong { color: var(--ink); font-weight: 600; }
.faq-item__body a {
    color: var(--accent-2);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
@keyframes faqExpand {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========== INSTAGRAM FEED SECTION ========== */
.instagram-section {
    padding: 110px 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.instagram-section__bg-deco {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 163, 93, .07) 0%, transparent 65%);
    pointer-events: none;
}
.instagram-section .container { position: relative; z-index: 1; }

.instagram-section__head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.instagram-section__handle {
    color: var(--accent-2);
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    padding: 8px 16px;
    background: var(--bg-2);
    border-radius: 999px;
}
.instagram-section__handle i { font-size: 14px; color: var(--accent); }
.instagram-section__title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--ink);
    margin: 0 0 14px;
    line-height: 1.2;
    font-weight: 400;
    position: relative;
    display: inline-block;
}
.instagram-section__title::before,
.instagram-section__title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 36px;
    height: 1px;
    background: var(--accent);
}
.instagram-section__title::before { right: calc(100% + 22px); }
.instagram-section__title::after  { left:  calc(100% + 22px); }
.instagram-section__sub {
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 14px;
    margin: 0 auto;
    max-width: 480px;
}

/* Asymmetric editorial grid: 5 cols × 2 rows, featured tile = 2×2 */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}
.insta-tile {
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
    background: var(--bg-2);
    cursor: pointer;
    box-shadow: 0 8px 24px -12px rgba(26, 15, 8, .15);
    transition: box-shadow .4s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.insta-tile--featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}
.insta-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(26, 15, 8, .3);
}

.insta-tile__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.insta-tile:hover .insta-tile__img {
    transform: scale(1.08);
    filter: brightness(.6);
}

/* Type badge (top-right) — videos / multi-photo */
.insta-tile__type {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(26, 15, 8, .35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.insta-tile--featured .insta-tile__type {
    width: 36px; height: 36px;
    font-size: 16px;
    top: 16px; right: 16px;
}

/* Overlay — appears on hover with stats + caption */
.insta-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 15, 8, .15) 0%, rgba(26, 15, 8, .55) 50%, rgba(26, 15, 8, .85) 100%);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    padding: 16px;
    text-align: center;
    z-index: 1;
}
.insta-tile:hover .insta-tile__overlay { opacity: 1; }

/* Gold corner brackets — appear on hover */
.insta-tile__overlay::before,
.insta-tile__overlay::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid var(--accent);
    transition: width .4s cubic-bezier(.2,.7,.2,1) .1s, height .4s cubic-bezier(.2,.7,.2,1) .1s;
}
.insta-tile__overlay::before {
    top: 12px; left: 12px;
    border-right: none; border-bottom: none;
}
.insta-tile__overlay::after {
    bottom: 12px; right: 12px;
    border-left: none; border-top: none;
}
.insta-tile:hover .insta-tile__overlay::before,
.insta-tile:hover .insta-tile__overlay::after {
    width: 26px;
    height: 26px;
}

/* Stats row */
.insta-tile__stats {
    display: flex;
    gap: 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    transform: translateY(12px);
    opacity: 0;
    transition: transform .45s cubic-bezier(.2,.7,.2,1) .1s, opacity .35s ease .1s;
}
.insta-tile__stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.insta-tile__stats i { color: var(--accent); font-size: 13px; }
.insta-tile:hover .insta-tile__stats {
    transform: translateY(0);
    opacity: 1;
}

/* Caption (only on featured) */
.insta-tile__caption {
    margin: 14px 0 0;
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--accent);
    transform: translateY(12px);
    opacity: 0;
    transition: transform .5s cubic-bezier(.2,.7,.2,1) .2s, opacity .35s ease .2s;
}
.insta-tile:hover .insta-tile__caption {
    transform: translateY(0);
    opacity: 1;
}
.insta-tile--featured .insta-tile__stats {
    font-size: 16px;
    gap: 24px;
}

/* Bottom follow CTA — pill button with brand-line decoration */
.instagram-section__cta {
    text-align: center;
    margin-top: 50px;
}
.instagram-follow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    transition: background .35s ease, transform .35s ease, gap .35s ease;
    box-shadow: 0 10px 30px -10px rgba(26, 15, 8, .4);
}
.instagram-follow i:first-child {
    color: var(--accent);
    font-size: 18px;
    transition: transform .4s ease;
}
.instagram-follow i:last-child {
    font-size: 11px;
    color: var(--accent);
    transition: transform .35s ease;
}
.instagram-follow:hover {
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-2px);
    gap: 18px;
}
.instagram-follow:hover i:first-child {
    transform: rotate(-8deg);
    color: var(--ink);
}
.instagram-follow:hover i:last-child {
    transform: translateX(4px);
    color: var(--ink);
}

@media (max-width: 1080px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    .insta-tile--featured {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: 1/1;
    }
    .instagram-section__title::before,
    .instagram-section__title::after { display: none; }
}
@media (max-width: 540px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .insta-tile--featured {
        grid-column: span 2;
        grid-row: auto;
        aspect-ratio: 4/3;
    }
    .instagram-section { padding: 70px 0; }
    .instagram-section__head { margin-bottom: 36px; }
    .insta-tile__stats { font-size: 12px; gap: 12px; }
    .insta-tile__caption { font-size: .85rem; }
    .instagram-follow {
        padding: 14px 22px;
        font-size: 11px;
        letter-spacing: .15em;
    }
}

/* ========== THANK-YOU PAGE ========== */
.thank-you {
    min-height: calc(100vh - var(--header-h));
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}
.thank-you__inner {
    text-align: center;
    max-width: 640px;
}

.thank-you__icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 32px;
    animation: thankYouPop .6s cubic-bezier(.2,.9,.3,1.3);
    box-shadow: 0 18px 40px -10px rgba(201, 163, 93, .4);
}
@keyframes thankYouPop {
    0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
    60%  { transform: scale(1.15) rotate(8deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.thank-you__eyebrow {
    display: inline-block;
    color: var(--accent-2);
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 16px;
    opacity: 0;
    animation: tyFadeUp .8s ease .2s forwards;
}
.thank-you__title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--ink);
    margin: 0 0 22px;
    line-height: 1.1;
    font-weight: 400;
    opacity: 0;
    animation: tyFadeUp .8s ease .35s forwards;
}
.thank-you__text {
    color: var(--ink-soft);
    line-height: 1.8;
    margin: 0 0 40px;
    font-size: 15px;
    opacity: 0;
    animation: tyFadeUp .8s ease .5s forwards;
}
.thank-you__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    opacity: 0;
    animation: tyFadeUp .8s ease .65s forwards;
}
@keyframes tyFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.thank-you__contacts {
    list-style: none;
    padding: 28px 0 0;
    margin: 0;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: tyFadeUp .8s ease .85s forwards;
}
.thank-you__contacts li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.thank-you__contacts i {
    color: var(--accent-2);
    font-size: 14px;
}
.thank-you__contacts a {
    color: var(--ink-soft);
    transition: color .25s ease;
}
.thank-you__contacts a:hover {
    color: var(--accent-2);
}

@media (max-width: 540px) {
    .thank-you { padding: 50px 16px; }
    .thank-you__actions { flex-direction: column; align-items: stretch; }
    .thank-you__contacts { gap: 14px; flex-direction: column; }
}

/* ========== ABOUT PAGE ========== */

/* Story section */
.story-section {
    padding: 90px 0 70px;
    background: var(--bg);
}
.story-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.story-media {
    position: relative;
}
.story-media__main {
    aspect-ratio: 4/5;
    border-radius: 2px;
    overflow: hidden;
    background: var(--bg-2);
    position: relative;
}
.story-media__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.story-media:hover .story-media__img { transform: scale(1.04); }

.story-media__badge {
    position: absolute;
    right: -20px;
    bottom: 36px;
    background: var(--ink);
    color: var(--bg);
    padding: 22px 28px;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 18px 40px -12px rgba(26, 15, 8, .35);
}
.story-media__badge strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.6rem;
    color: var(--accent);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 4px;
}
.story-media__badge small {
    color: rgba(232, 213, 168, .65);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
}

.story-text__eyebrow {
    color: var(--accent-2);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 16px;
}
.story-text__title {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    color: var(--ink);
    margin: 0 0 24px;
    line-height: 1.2;
    font-weight: 400;
}
.story-text p {
    color: var(--ink-soft);
    line-height: 1.85;
    margin: 0 0 18px;
    font-size: 15px;
}
.story-text__sign {
    margin-top: 30px !important;
    color: var(--accent-2) !important;
    font-family: var(--serif);
    font-style: normal;
    font-size: 16px !important;
}

/* Stats section */
.stats-section {
    padding: 70px 0;
    background: var(--ink);
    color: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-item {
    text-align: center;
    padding: 20px 10px;
    border-right: 1px solid rgba(201, 163, 93, .15);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 400;
}
.stat-item__label {
    display: block;
    color: rgba(232, 213, 168, .75);
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    line-height: 1.5;
    font-weight: 500;
}

/* Process section */
.process-section {
    padding: 110px 0;
    background: var(--bg);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 70px;
    counter-reset: step;
}
.process-step {
    position: relative;
    padding: 36px 28px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--bg);
    transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.process-step:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 22px 48px -18px rgba(26, 15, 8, .18);
}
.process-step__num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    display: block;
    margin-bottom: 18px;
    font-weight: 400;
    opacity: .85;
}
.process-step__title {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ink);
    margin: 0 0 14px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: .02em;
}
.process-step__text {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.75;
    margin: 0;
}

/* Values section uses .craft-grid already from index page */
.values-section {
    padding: 100px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.values-section .craft-grid { margin-top: 60px; }
.values-section .craft-item__icon {
    background: var(--bg);
}

/* Quote section */
.quote-section {
    padding: 100px 0;
    background: var(--bg);
}
.quote-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 50px 20px;
}
.quote-card__mark {
    color: var(--accent);
    font-size: 36px;
    opacity: .35;
    margin-bottom: 26px;
    display: block;
}
.quote-card__text {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    color: var(--ink);
    line-height: 1.5;
    margin: 0 0 30px;
    font-weight: 400;
    font-style: normal;
    quotes: none;
}
.quote-card__text::before,
.quote-card__text::after { content: none; }

.quote-card__author {
    display: inline-block;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    min-width: 220px;
}
.quote-card__author strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.quote-card__author small {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .story-grid { grid-template-columns: 1fr; gap: 50px; }
    .story-media__badge { right: 20px; bottom: 20px; padding: 16px 22px; }
    .story-media__badge strong { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-item { padding: 30px 10px; border-bottom: 1px solid rgba(201, 163, 93, .15); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(201, 163, 93, .15); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .process-grid { grid-template-columns: 1fr; gap: 18px; }
    .stats-section { padding: 50px 0; }
    .story-section { padding: 60px 0 40px; }
    .process-section, .quote-section, .values-section { padding: 70px 0; }
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    padding: 60px 0 90px;
    background: var(--bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

/* Left: info */
.contact-info {
    position: sticky;
    top: calc(var(--header-h) + 30px);
}
.contact-info__title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    color: var(--ink);
    margin: 0 0 14px;
    line-height: 1.15;
    font-weight: 400;
}
.contact-info__lead {
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0 0 36px;
    font-size: 14px;
}

.contact-list {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact-list__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-list__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: background .3s ease, color .3s ease;
}
.contact-list__item:hover .contact-list__icon {
    background: var(--accent);
    color: var(--ink);
}
.contact-list__body h4 {
    font-family: var(--sans);
    color: var(--ink);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 4px 0 6px;
    font-weight: 600;
}
.contact-list__body p {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.contact-list__body a {
    color: var(--ink-soft);
    transition: color .25s ease;
}
.contact-list__body a:hover { color: var(--accent-2); }

.contact-info__social {
    border-top: 1px solid var(--line);
    padding-top: 28px;
}
.contact-info__social-label {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
    font-weight: 500;
}
.contact-info__social-links {
    display: flex;
    gap: 10px;
}
.contact-info__social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    font-size: 14px;
}
.contact-info__social-links a:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* Right: form card */
.contact-form-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 48px 44px;
    position: relative;
}
.contact-form-card__eyebrow {
    color: var(--accent-2);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}
.contact-form-card__title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    color: var(--ink);
    margin: 0 0 12px;
    font-weight: 400;
    line-height: 1.15;
}
.contact-form-card__text {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
    background: var(--bg);
}

.contact-form__note {
    color: var(--muted);
    font-size: 12px;
    margin: 16px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-form__note i { color: var(--accent); }

.contact-form-success {
    text-align: center;
    padding: 20px 0;
}
.contact-form-success h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--ink);
    margin: 8px 0 12px;
    font-weight: 400;
}
.contact-form-success p {
    color: var(--ink-soft);
    margin: 0 0 24px;
    line-height: 1.7;
}

/* MAP */
.map-section {
    height: 460px;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.map-section__inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.map-section iframe {
    filter: grayscale(.45) contrast(.95);
    transition: filter .5s ease;
}
.map-section:hover iframe { filter: grayscale(0) contrast(1); }

.map-section__pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    pointer-events: none;
}
.map-pin {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 32px -8px rgba(26, 15, 8, .25);
    white-space: nowrap;
}
.map-pin > i {
    color: var(--accent-2);
    font-size: 18px;
}
.map-pin__body strong {
    display: block;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}
.map-pin__body small {
    color: var(--muted);
    font-size: 11px;
}

@media (max-width: 980px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info { position: static; }
    .contact-form-card { padding: 36px 28px; }
    .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
    .map-section { height: 360px; }
    .map-pin { padding: 10px 14px; gap: 10px; }
    .map-pin__body strong { font-size: 12px; }
    .map-pin__body small { font-size: 10px; }
}

/* ========== SINGLE PRODUCT PAGE ========== */
.product-page {
    padding: 50px 0 100px;
    background: var(--bg);
}
.product-page .breadcrumbs {
    margin: 0 0 40px;
    justify-content: flex-start;
}

.product-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: start;
    margin-bottom: 80px;
}

/* Gallery */
.product-gallery__main {
    aspect-ratio: 1/1;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 14px;
    position: relative;
    cursor: pointer;
}
.product-gallery__main::after {
    content: '\f0a9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .35s ease, transform .4s cubic-bezier(.2,.7,.2,1);
    pointer-events: none;
    z-index: 2;
}
.product-gallery__main:hover::after {
    opacity: 1;
    transform: translateX(0);
}
.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s ease, transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.product-gallery__main img.is-fading {
    opacity: 0;
}
.product-gallery__main:hover img {
    transform: scale(1.04);
}
.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.thumb {
    aspect-ratio: 1/1;
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: var(--bg-2);
    transition: border-color .3s ease, transform .3s ease;
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb:hover { border-color: var(--accent); transform: translateY(-2px); }
.thumb.is-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent) inset;
}

/* Info column */
.product-info__eyebrow {
    color: var(--accent-2);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 14px;
}
.product-info__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--ink);
    margin: 0 0 18px;
    line-height: 1.15;
    font-weight: 400;
}
.product-info__rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: var(--ink-soft);
    font-size: 13px;
}
.rating-stars { color: var(--accent); display: inline-flex; gap: 3px; font-size: 14px; }
.product-info__lead {
    color: var(--ink-soft);
    line-height: 1.75;
    font-size: 15px;
    margin: 0 0 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.product-info__price-row {
    display: flex;
    align-items: baseline;
    gap: 18px;
    flex-wrap: wrap;
    margin: 0 0 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}
.product-info__price {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1;
}
.product-info__price-meta {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
}

.product-features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.product-features li {
    color: var(--ink-soft);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-features i {
    color: var(--accent);
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-info__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.btn--lg { padding: 18px 30px; font-size: 12px; }
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}
.btn--ghost:hover {
    background: var(--ink);
    color: var(--bg);
}

.product-info__guarantee {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.guarantee-item {
    display: flex;
    gap: 12px;
    align-items: center;
}
.guarantee-item i {
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}
.guarantee-item strong {
    display: block;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
}
.guarantee-item small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.3;
}

/* Tabs */
.product-tabs {
    border-top: 1px solid var(--line);
    padding-top: 40px;
}
.product-tabs__nav {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 14px 0;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: color .25s ease;
}
.tab-btn::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.is-active { color: var(--ink); }
.tab-btn.is-active::after { transform: scaleX(1); }

.tab-panel {
    display: none;
    animation: tabIn .45s cubic-bezier(.2,.7,.2,1);
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: 14px;
    max-width: 800px;
}
.tab-panel.is-active { display: block; }
.tab-panel p { margin: 0 0 14px; }
.tab-panel p:last-child { margin: 0; }
.tab-panel strong { color: var(--ink); font-weight: 600; }
@keyframes tabIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Specs list */
.specs-list { margin: 0; }
.specs-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
}
.specs-row:last-child { border-bottom: none; }
.specs-row dt {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    margin: 0;
}
.specs-row dd {
    margin: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
}

/* Care list */
.care-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.care-list li {
    padding-left: 22px;
    position: relative;
    font-size: 14px;
    line-height: 1.7;
}
.care-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 1px;
    background: var(--accent);
}

/* Related products */
.related-section {
    padding: 80px 0 100px;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
}
.related-section .section-head { margin-bottom: 50px; }

@media (max-width: 980px) {
    .product-detail { grid-template-columns: 1fr; gap: 40px; }
    .product-info__guarantee { grid-template-columns: 1fr; gap: 18px; }
    .product-tabs__nav { gap: 18px; }
}
@media (max-width: 540px) {
    .product-page { padding: 30px 0 70px; }
    .product-info__actions { flex-direction: column; }
    .product-info__actions .btn { width: 100%; justify-content: center; }
    .specs-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ========== ARCHIVE / CATALOG PAGE ========== */
.page-banner {
    padding: 70px 0 50px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    text-align: center;
}
.breadcrumbs {
    font-size: 12px;
    letter-spacing: .12em;
    color: var(--muted);
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.breadcrumbs a {
    color: var(--ink-soft);
    transition: color .25s ease;
}
.breadcrumbs a:hover { color: var(--accent-2); }
.breadcrumbs__sep {
    color: var(--line);
    font-size: 11px;
}
.breadcrumbs__current {
    color: var(--accent-2);
    font-weight: 500;
}
.page-banner__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--ink);
    margin: 0 0 14px;
    font-weight: 400;
    line-height: 1.1;
}
.page-banner__sub {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto;
}

.filter-bar {
    padding: 28px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: var(--header-h);
    z-index: 30;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .94);
}
.filter-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.filter-bar__chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.filter-chip {
    padding: 10px 18px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink-soft);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 2px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.filter-chip:hover {
    border-color: var(--accent);
    color: var(--ink);
}
.filter-chip.is-active {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.filter-bar__count {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
}

.archive-section {
    padding: 56px 0 90px;
    background: var(--bg);
}

.archive-empty {
    text-align: center;
    padding: 80px 20px;
    border: 1px dashed var(--line);
    border-radius: 2px;
    max-width: 540px;
    margin: 0 auto;
}
.archive-empty i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 18px;
    display: block;
}
.archive-empty p {
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Filter transitions for products */
.products .product[hidden] { display: none; }

@media (max-width: 720px) {
    .filter-bar__inner { justify-content: center; }
    .filter-bar__count { width: 100%; text-align: center; }
    .page-banner { padding: 50px 0 36px; }
}

/* ===== MOBILE: filter bar — non-sticky horizontal strip ===== */
@media (max-width: 768px) {
    .filter-bar {
        position: static !important;       /* kill any sticky behaviour */
        top: auto !important;
        padding: 10px 0 12px;
        background: var(--bg) !important;  /* drop blur — saves repaints on scroll */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid var(--line);
    }
    .filter-bar .container {
        padding-right: 0;                  /* edge-to-edge swipe feel */
    }
    .filter-bar__inner {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        flex-wrap: nowrap;
    }
    .filter-bar__chips {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 6px;
        width: 100%;
        padding: 4px 18px 6px 4px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .filter-bar__chips::-webkit-scrollbar { display: none; }
    .filter-chip {
        flex: 0 0 auto;
        padding: 7px 14px;
        font-size: 10.5px;
        letter-spacing: .1em;
        scroll-snap-align: start;
        white-space: nowrap;
    }
    .filter-bar__count,
    .filter-bar__meta {
        display: none;                     /* hide count on mobile — cards speak for themselves */
    }
    /* Make sure archive grid starts right after filter (no excess gap) */
    .archive-section { padding-top: 24px; }
}

/* ========== CATEGORIES (cream background, dark cards) ========== */
.categories-section {
    padding: 110px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.categories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 163, 93, .12) 0%, transparent 60%);
    pointer-events: none;
}
.categories-section .container { position: relative; z-index: 1; }

.categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 70px;
}
@media (min-width: 1200px) {
    .categories { grid-template-columns: repeat(4, 1fr); }
}
.category {
    display: block;
    position: relative;
    aspect-ratio: 3/4;
    min-height: 360px;
    overflow: hidden;
    background: var(--ink);
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
    border: 1px solid rgba(201, 163, 93, .15);
    border-radius: 2px;
    text-decoration: none;
}
.categories.is-visible .category { opacity: 1; transform: translateY(0); }
.categories.is-visible .category:nth-child(1) { transition-delay: .05s; }
.categories.is-visible .category:nth-child(2) { transition-delay: .15s; }
.categories.is-visible .category:nth-child(3) { transition-delay: .25s; }
.categories.is-visible .category:nth-child(4) { transition-delay: .35s; }

.category__img {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transition: transform 1.3s cubic-bezier(.2,.7,.2,1), filter .6s ease;
    filter: brightness(.85);
}
.category:hover .category__img {
    transform: scale(1.08);
    filter: brightness(1);
}

.category__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
        rgba(26, 15, 8, .15) 0%,
        rgba(26, 15, 8, .35) 55%,
        rgba(26, 15, 8, .92) 100%);
    transition: background .5s ease;
    pointer-events: none;
}

/* Gold corner accent — visual marker that distinguishes categories from products */
.category::before,
.category::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--accent);
    border-style: solid;
    border-width: 0;
    z-index: 3;
    transition: width .4s ease, height .4s ease;
}
.category::before {
    top: 14px;
    left: 14px;
    border-top-width: 1px;
    border-left-width: 1px;
}
.category::after {
    bottom: 14px;
    right: 14px;
    border-bottom-width: 1px;
    border-right-width: 1px;
}
.category:hover::before,
.category:hover::after {
    width: 32px;
    height: 32px;
}

/* Title centered toward bottom of card */
.category__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 56px;
    z-index: 3;
    text-align: center;
    color: var(--bg);
    font-family: var(--serif);
    font-size: clamp(1.1rem, 1.4vw, 1.5rem);
    letter-spacing: .05em;
    padding: 0 18px;
    line-height: 1.2;
    margin: 0;
    transition: color .35s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}
.category:hover .category__label {
    color: var(--accent);
    transform: translateY(-6px);
}
.category__label::after {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background: var(--accent);
    margin: 12px auto 0;
    transition: width .55s cubic-bezier(.2,.7,.2,1);
}
.category:hover .category__label::after { width: 46px; }

/* "ნახვა" arrow appears at bottom on hover */
.category__arrow {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%) translateY(8px);
    color: var(--accent);
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    z-index: 4;
    opacity: 0;
    transition: opacity .4s ease, transform .5s cubic-bezier(.2,.7,.2,1);
    white-space: nowrap;
    font-weight: 500;
}
.category:hover .category__arrow {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1199px) {
    .categories { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ----- MOBILE: categories become a horizontal-scroll slider ----- */
@media (max-width: 768px) {
    .categories-section .container {
        /* allow the slider to bleed past container padding for an edge-to-edge feel */
        padding-right: 0;
    }
    .categories {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 4px;
        -webkit-overflow-scrolling: touch;
        padding: 4px 24px 16px 4px; /* right padding = peek of next card */
        margin-top: 40px;
        /* hide the scrollbar */
        scrollbar-width: none;
    }
    .categories::-webkit-scrollbar { display: none; }

    .category {
        flex: 0 0 72%;          /* card width — leaves ~28% peek of next card */
        max-width: 72%;
        scroll-snap-align: start;
        aspect-ratio: 4/5;
        min-height: 300px;
        /* reset entry animation — every card should be visible immediately
           since they live in a scrollable strip */
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 540px) {
    .categories { gap: 12px; }
    .category {
        flex-basis: 76%;
        max-width: 76%;
        aspect-ratio: 4/5;
        min-height: 280px;
    }
    .category__label { bottom: 44px; font-size: 1rem; padding: 0 14px; }
    .category__arrow { bottom: 14px; font-size: 9px; }
}

@media (max-width: 380px) {
    .category {
        flex-basis: 82%;
        max-width: 82%;
        min-height: 260px;
    }
}

/* ========== CRAFT / VALUES ========== */
.craft-section {
    padding: 110px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 70px;
}
.craft-item {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.craft-grid.is-visible .craft-item { opacity: 1; transform: translateY(0); }
.craft-grid.is-visible .craft-item:nth-child(1) { transition-delay: .1s; }
.craft-grid.is-visible .craft-item:nth-child(2) { transition-delay: .25s; }
.craft-grid.is-visible .craft-item:nth-child(3) { transition-delay: .4s; }

.craft-item__icon {
    width: 64px;
    height: 64px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 22px;
    transition: background .35s ease, color .35s ease;
}
.craft-item:hover .craft-item__icon {
    background: var(--accent);
    color: var(--ink);
}
.craft-item__title {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--ink);
    margin: 0 0 14px;
    font-weight: 400;
    letter-spacing: .02em;
}
.craft-item__text {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 860px) {
    .craft-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ========== CTA / ORDER ========== */
.cta-section {
    padding: 120px 0;
    background: var(--ink);
    color: var(--footer-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 163, 93, .08) 0%, transparent 70%);
}
.cta-section__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.cta-section__eyebrow {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: .35em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 22px;
    font-weight: 500;
}
.cta-section__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--bg);
    margin: 0 0 22px;
    font-weight: 400;
    line-height: 1.2;
}
.cta-section__text {
    color: rgba(232, 213, 168, .75);
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 40px;
}
.btn--gold {
    background: var(--accent);
    color: var(--ink);
    border-color: var(--accent);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn--gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg);
    transform: translateY(101%);
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
    z-index: -1;
}
.btn--gold:hover::before { transform: translateY(0); }
.btn--gold:hover { border-color: var(--bg); }

/* ========== FOOTER (light cream — dark logo stays visible) ========== */
.site-footer {
    background: var(--bg-2);
    color: var(--ink-soft);
    padding: 90px 0 30px;
    border-top: 1px solid var(--line);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer__logo {
    height: 22px;
    width: auto;
    display: block;
    margin: 0 0 18px;
}
.footer__brand p { max-width: 280px; font-size: 14px; line-height: 1.7; color: var(--ink-soft); }
.footer__col h4 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--ink);
    margin: 0 0 18px;
    font-weight: 400;
    letter-spacing: .04em;
}
.footer__col a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--ink-soft);
    transition: color .25s, padding-left .25s;
}
.footer__col a:hover {
    color: var(--accent-2);
    padding-left: 6px;
}
.footer__col p { font-size: 14px; margin: 0 0 16px; color: var(--ink-soft); }

.newsletter {
    display: flex;
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    background: var(--bg);
}
.newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 14px;
    color: var(--ink);
    font-family: inherit;
    font-size: 13px;
    outline: none;
}
.newsletter input::placeholder { color: var(--muted); }
.newsletter button {
    background: var(--ink);
    color: var(--bg);
    padding: 0 20px;
    transition: background .3s;
}
.newsletter button:hover { background: var(--accent-2); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    letter-spacing: .08em;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
    width: 38px; height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.footer__social a:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

@media (max-width: 860px) {
    .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== WORDPRESS STANDARD UTILITIES ========== */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: var(--bg);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.1);
    clip: auto !important;
    clip-path: none;
    color: var(--ink);
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    padding: 14px 22px;
    background: var(--ink);
    color: var(--bg);
    font-size: 13px;
    text-decoration: none;
}
.skip-link:focus { left: 10px; top: 10px; }

.gallery-caption, .wp-caption-text {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 6px;
}
.alignleft   { float: left;  margin: 0 20px 12px 0; }
.alignright  { float: right; margin: 0 0 12px 20px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

.search-form {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    background: var(--bg);
}
.search-form .search-field {
    border: 0;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 13px;
    background: transparent;
    color: var(--ink);
    min-width: 220px;
    outline: none;
}
.search-form .search-submit {
    background: var(--ink);
    color: var(--bg);
    border: 0;
    padding: 0 16px;
    height: 38px;
    cursor: pointer;
    transition: background .25s;
}
.search-form .search-submit:hover { background: var(--accent-2); }

.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}
.pagination .page-numbers {
    padding: 10px 14px;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    border-radius: 2px;
    text-decoration: none;
    transition: all .25s;
    font-size: 13px;
    font-weight: 500;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

/* ========== WISHLIST (header link + counter) ========== */
.wishlist-link {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .25s ease, color .25s ease, background .25s ease;
    text-decoration: none;
}
.wishlist-link:hover {
    border-color: var(--accent);
    color: var(--accent-2);
}
.wishlist-link i { font-size: 14px; }

.wishlist-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--accent);
    color: var(--ink);
    font-size: 10px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
    transform: scale(0);
    transition: transform .35s cubic-bezier(.2,.9,.3,1.3);
}
.wishlist-count.is-visible { transform: scale(1); }

.site-header--overlay .wishlist-link {
    border-color: rgba(245, 235, 217, .35);
    color: rgba(245, 235, 217, .92);
}
.site-header--overlay:not(.is-scrolled) .wishlist-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.site-header--overlay.is-scrolled .wishlist-link {
    border-color: var(--line);
    color: var(--ink);
}

@media (max-width: 880px) {
    .wishlist-link { display: none; }
}

/* Heart icon on product cards (Phase 11a) */
.product-card-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
    z-index: 4;
    transition: background .25s, color .25s, transform .3s;
}
.product-card-heart:hover { background: #fff; transform: scale(1.06); }
.product-card-heart.is-active { color: #e74c3c; }
.product-card-heart i { font-size: 14px; }

/* ========== WISHLIST PAGE (Phase 5 — basic; polished Phase 11a) ========== */
.wishlist-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    background: var(--bg-2);
    border-radius: 2px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.wishlist-toolbar__count {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--ink);
}
.wishlist-toolbar__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.wishlist-toolbar__actions .btn { padding: 12px 20px; }

.wishlist-save-shared {
    padding: 22px 26px;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    border: 1px solid var(--accent);
    border-radius: 2px;
    text-align: center;
    margin-bottom: 30px;
}
.wishlist-save-shared p {
    color: var(--ink-soft);
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 540px) {
    .wishlist-toolbar { padding: 14px; }
    .wishlist-toolbar__actions { width: 100%; }
    .wishlist-toolbar__actions .btn { flex: 1; justify-content: center; }
}

/* ========== PHASE 6 — Product Card additions ========== */

/* Ensure .product is positioned for the absolute heart button */
.product { position: relative; }

/* Sale badge on card media */
.product__sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: var(--accent);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    padding: 4px 10px;
    border-radius: 2px;
    text-transform: uppercase;
}

/* Sale price treatment on card */
.product__price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: .85em;
    margin-right: 6px;
}
.product__price-sale {
    color: var(--accent-2);
}

/* Single product page — sale + old price */
.product-info__price--sale { color: var(--accent-2); }
.product-info__price--old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: .65em;
    margin-left: 10px;
}

/* Wishlist heart button on single product */
.btn--wishlist {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}
.btn--wishlist:hover {
    border-color: var(--accent);
    color: var(--accent-2);
}
.btn--wishlist.is-active {
    color: #e74c3c;
    border-color: #e74c3c;
}
.btn--wishlist.is-active i { font-weight: 900; }

/* Heart icon on product card — show on hover (mobile: always visible) */
.product .product-card-heart {
    opacity: 0;
    transform: scale(.9);
    transition: opacity .25s ease, transform .25s cubic-bezier(.2,.9,.3,1.3), background .25s, color .25s;
}
.product:hover .product-card-heart,
.product .product-card-heart.is-active,
.product .product-card-heart:focus {
    opacity: 1;
    transform: scale(1);
}
@media (hover: none) {
    .product .product-card-heart {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pagination — match the_posts_pagination() default markup */
.archive-section .pagination,
.archive-section nav.navigation.pagination {
    margin-top: 50px;
}
nav.navigation.pagination .nav-links {
    display: flex;
    gap: 8px;
    justify-content: center;
}
nav.navigation.pagination .page-numbers {
    padding: 10px 14px;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    border-radius: 2px;
    text-decoration: none;
    transition: all .25s;
    font-size: 13px;
    font-weight: 500;
}
nav.navigation.pagination .page-numbers:hover,
nav.navigation.pagination .page-numbers.current {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
nav.navigation.pagination .dots { padding: 10px 6px; border: 0; }

/* ========== MOBILE POLISH (2026-06-05) ========== */

@media (max-width: 768px) {
    /* Header — სათაური + ლოგო კომპაქტი */
    .site-header { padding: 0; }
    .header__bar { gap: 10px; padding: 10px 0; height: auto; }
    .brand__logo { height: 22px; }
    .call-btn { padding: 8px 12px; font-size: 11px; gap: 6px; }
    .call-btn__label { display: none; }
    .call-btn__icon { font-size: 14px; }

    /* ===== HERO — MOBILE REWRITE ===== */
    .hero-full {
        height: auto;
        min-height: 0;
        /* Use small-viewport-height so mobile browser chrome doesn't overflow.
           Fallback to vh for older browsers. */
        height: 100svh;
        min-height: 560px;
        max-height: 760px;
    }
    .hero-full__slide {
        /* Push the image focus a bit up so faces/objects aren't covered by overlay */
        background-position: center 30%;
    }
    .hero-full__overlay {
        /* Stronger bottom-up gradient so text stays readable over any image */
        background:
            linear-gradient(180deg,
                rgba(26, 15, 8, .25) 0%,
                rgba(26, 15, 8, .35) 35%,
                rgba(26, 15, 8, .88) 95%);
    }
    .hero-full__content {
        max-width: 100%;
        width: 100%;
        padding: 0 22px 110px;
        justify-content: flex-end;       /* anchor content to bottom of viewport */
        align-items: flex-start;
        text-align: left;
    }
    .hero-full__eyebrow {
        font-size: 10px;
        letter-spacing: .3em;
        gap: 10px;
        margin-bottom: 18px;
    }
    .hero-full__eyebrow::before { width: 22px; }
    .hero-full__title {
        font-size: clamp(1.55rem, 5.6vw, 2rem);
        line-height: 1.18;
        margin: 0 0 14px;
        -webkit-line-clamp: unset;       /* let it wrap naturally */
        overflow: visible;
        max-width: 100%;
    }
    .hero-full__sub {
        font-size: 13.5px;
        line-height: 1.6;
        margin: 0 0 26px;
        max-width: 100%;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    .hero-full__cta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
        max-width: 360px;
    }
    .hero-full__cta .btn {
        justify-content: center;
        padding: 14px 22px;
        font-size: 11px;
        letter-spacing: .15em;
    }

    /* Nav controls — tucked, smaller, lifted above dots */
    .hero-full__arrow {
        width: 38px; height: 38px;
        font-size: 11px;
        top: 42%;
    }
    .hero-full__arrow--prev { left: 10px; }
    .hero-full__arrow--next { right: 10px; }
    .hero-full__dots { bottom: 16px; gap: 6px; }
    .hero-full__dot { width: 18px; height: 2px; }
    .hero-full__dot.is-active { width: 28px; }

    /* Section heads */
    .section-head { margin-bottom: 32px; }
    .section-head__title { font-size: 1.5rem; }
    .section-head__sub { font-size: 13px; padding: 0 8px; }

    /* Products grid — 2 columns confirmed */
    .products.columns-4,
    .products.columns-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product__link { padding: 10px 10px 14px; }
    .product__media { margin-bottom: 10px; }
    .woocommerce-loop-product__title { font-size: 12px; min-height: calc(1.35em * 2); }
    .product__desc { font-size: 11px; min-height: calc(1.5em * 2); padding: 0 2px; margin: 0 0 6px; }
    .product__price { font-size: 0.95rem; padding-top: 8px; }
    .product-card-heart { width: 30px; height: 30px; top: 8px; right: 8px; opacity: 1; transform: scale(1); }
    .product-card-heart i { font-size: 12px; }

    /* CTA section */
    .cta-section { padding: 50px 0; }
    .cta-section__title { font-size: 1.4rem; }
    .cta-section__text { font-size: 13px; }

    /* About — story column */
    .story-section { padding: 50px 0; }
    .story-grid { gap: 30px; }
    .story-text__title { font-size: 1.5rem; }
    .story-media__main { max-height: 360px; }
    .story-media__badge { right: 12px; bottom: 12px; padding: 12px 16px; }
    .story-media__badge strong { font-size: 1.5rem; }

    /* Stats */
    .stats-section { padding: 40px 0; }
    .stats-grid { gap: 8px; }
    .stat-item { padding: 18px 6px; border-right: 0; border-bottom: 1px solid rgba(201,163,93,.15); }
    .stat-item__number { font-size: 1.6rem; }
    .stat-item__label { font-size: 10px; letter-spacing: .1em; }

    /* Process */
    .process-section { padding: 50px 0; }
    .process-grid { grid-template-columns: 1fr; gap: 14px; }
    .process-step { padding: 22px 18px; }
    .process-step__num { font-size: 2rem; margin-bottom: 12px; }
    .process-step__title { font-size: 1.05rem; }
    .process-step__text { font-size: 13px; }

    /* Craft / Values */
    .craft-section, .values-section { padding: 50px 0; }
    .craft-grid { grid-template-columns: 1fr; gap: 22px; }
    .craft-item__title { font-size: 1.15rem; }
    .craft-item__text { font-size: 13px; }

    /* Quote */
    .quote-section { padding: 50px 0; }
    .quote-card { padding: 22px 8px; }
    .quote-card__text { font-size: 1.05rem; line-height: 1.6; }

    /* Contact */
    .contact-section { padding: 40px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-info { position: static; }
    .contact-form-card { padding: 22px 16px; }
    .form-grid { grid-template-columns: 1fr; gap: 12px; }
    .map-section { height: 320px; }

    /* FAQ */
    .faq-section { padding: 36px 0 60px; }
    .faq-item summary { padding: 16px 0; gap: 12px; font-size: 14px; }
    .faq-item summary i { width: 24px; height: 24px; font-size: 10px; }
    .faq-item__body { font-size: 13px; padding-bottom: 16px; }

    /* Page banner */
    .page-banner { padding: 30px 0 22px; }
    .page-banner__title { font-size: 1.55rem; }
    .page-banner__sub { font-size: 13px; }

    /* Filter chips on archive — owned by the dedicated block earlier in this file */

    /* Single product detail */
    .product-page { padding: 24px 0 60px; }
    .product-detail { grid-template-columns: 1fr; gap: 24px; }
    .product-info__title { font-size: 1.5rem; }
    .product-info__price { font-size: 1.5rem; }
    .product-info__lead { font-size: 14px; }
    .product-info__actions { flex-direction: column; gap: 8px; }
    .product-info__actions .btn { width: 100%; justify-content: center; }
    .product-info__guarantee { grid-template-columns: 1fr; gap: 12px; }
    .product-tabs__nav { gap: 14px; }
    .tab-btn { font-size: 11px; padding: 10px 0; }

    /* Footer */
    .site-footer { padding: 40px 0 20px; }
    .footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

    /* Hide hero scroll cue on mobile */
    .hero-full__scroll { display: none; }
    .hero-full__counter { display: none; }
    .hero-full__dots { bottom: 16px; }
    .hero-full__dot { width: 24px; }
    .hero-full__dot.is-active { width: 38px; }

    /* Currency switcher mobile */
    .currency-switch { display: none; }

    /* Wishlist icon — show on mobile too */
    .wishlist-link { display: inline-flex; width: 36px; height: 36px; }

    /* Instagram feed */
    .instagram-section { padding: 50px 0; }
    .instagram-section__head { margin-bottom: 28px; text-align: left; }
    .instagram-section__title { font-size: 1.3rem; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .insta-tile--featured { grid-column: span 2; aspect-ratio: 16/10; }
    .instagram-follow { padding: 12px 22px; font-size: 11px; letter-spacing: .12em; }
}

@media (max-width: 480px) {
    .container { width: min(1280px, 94%); }
    .page-banner__title { font-size: 1.4rem; }

    /* Hero — fine-tune for narrow phones */
    .hero-full { min-height: 520px; max-height: 720px; }
    .hero-full__content { padding: 0 20px 96px; }
    .hero-full__title { font-size: 1.5rem; line-height: 1.18; }
    .hero-full__sub { font-size: 12.5px; line-height: 1.55; margin-bottom: 22px; }
    .hero-full__eyebrow { font-size: 9px; margin-bottom: 14px; }
    .hero-full__cta { gap: 8px; }
    .hero-full__cta .btn { padding: 13px 18px; font-size: 10.5px; }

    .section-head__title { font-size: 1.35rem; }
    .product__link { padding: 8px 8px 12px; }
    .woocommerce-loop-product__title { font-size: 11px; }
    .product__desc { font-size: 10px; line-height: 1.4; }
    .product__price { font-size: 0.85rem; }
    .filter-chip { padding: 5px 10px; font-size: 10px; }
    .category__label { font-size: 0.95rem; bottom: 38px; }
    .category__label::after { width: 22px; }
    .category__arrow { font-size: 9px; }
}

@media (max-width: 360px) {
    .brand__logo { height: 18px; }
    .header__bar { gap: 6px; }
    .call-btn { padding: 6px 10px; }
    .burger span { width: 20px; }
}
