
/* Guards against SweetAlert2 popups/toasts rendering under the mobile nav offcanvas or any
   modal (kept in sync with the same override in css/theme.css for the admin side). */
.swal2-container {
    z-index: 1200 !important;
}

:root {
    --store-ink: #1c1a16;          /* warm near-black text */
    --store-ink-soft: #6d665b;     /* muted body text */
    --store-ink-faint: #a49c8e;    /* labels / captions */
    --store-bg: #ffffff;           /* surfaces / cards */
    --store-canvas: #f6f2ea;       /* warm cream page background */
    --store-canvas-2: #efe9dd;     /* alt band */
    --store-line: #e6dfd2;         /* hairlines */
    --store-accent: #bd5a2b;       /* terracotta */
    --store-accent-dark: #a1461f;
    --store-accent-soft: #f3e7db;
    --store-dark: #1a1713;         /* dark hero / footer band */
    --store-dark-2: #26211b;
    --store-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
    --store-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --store-shadow: 0 18px 44px -22px rgba(40, 30, 16, .38);
    --store-radius: 4px;
}

/* ---------- Base ---------- */
body.store-front {
    background: var(--store-canvas);
    color: var(--store-ink);
    font-family: var(--store-sans);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.store-front a { color: inherit; text-decoration: none; }
body.store-front img { max-width: 100%; }

.store-serif { font-family: var(--store-serif); font-weight: 500; letter-spacing: -.01em; }

.store-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.store-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--store-accent);
    display: inline-block;
    margin-bottom: 1rem;
}

.text-normal { font-weight: 400; text-transform: none; letter-spacing: normal; }

/* ---------- Announcement bar ---------- */
.store-announce {
    background: var(--store-dark);
    color: #f3ece0;
    text-align: center;
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .6rem 1rem;
}

.store-announce .mdi { color: var(--store-accent); }

/* ---------- Header ---------- */
.store-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(246, 242, 234, .88);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.store-header.is-stuck {
    background: rgba(255, 255, 255, .92);
    border-bottom-color: var(--store-line);
    box-shadow: 0 10px 30px -20px rgba(40, 30, 16, .5);
}

.store-header-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.store-header-left { display: flex; align-items: center; gap: .5rem; }

.store-logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    color: var(--store-ink);
}

.store-logo .store-logo-mark {
    font-family: var(--store-serif);
    font-weight: 600;
    font-size: 1.45rem;
    letter-spacing: .01em;
}

.store-logo .store-logo-sub {
    font-size: .56rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--store-ink-faint);
    margin-top: 4px;
}

.store-nav {
    display: flex;
    gap: 1.9rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-self: start;
}

.store-nav a {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--store-ink);
    position: relative;
    padding: .4rem 0;
}

.store-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: -2px;
    height: 1.5px;
    background: var(--store-accent);
    transition: right .28s ease;
}

.store-nav a:hover::after, .store-nav a.active::after { right: 0; }

.store-header-icons {
    display: flex;
    align-items: center;
    gap: .35rem;
    justify-self: end;
}

.store-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--store-ink);
    font-size: 1.28rem;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.store-icon-btn:hover { background: var(--store-accent-soft); color: var(--store-accent); }

.store-cart-badge {
    position: absolute;
    top: 3px;
    right: 2px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    line-height: 17px;
    font-size: .62rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: var(--store-accent);
    border-radius: 999px;
    border: 2px solid var(--store-canvas);
}

.store-account-menu .dropdown-menu {
    border: 1px solid var(--store-line);
    border-radius: var(--store-radius);
    box-shadow: var(--store-shadow);
    font-size: .85rem;
    padding: .4rem;
}

.store-account-menu .dropdown-item { border-radius: 3px; padding: .5rem .75rem; }

/* Search slide-down */
.store-search {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, .96);
}

.store-search.open { max-height: 90px; border-bottom-color: var(--store-line); }

.store-search-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    gap: .75rem;
}

/* ---------- Buttons ---------- */
.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--store-ink);
    color: #fff !important;
    border: 1.5px solid var(--store-ink);
    font-family: var(--store-sans);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .9rem 2.1rem;
    border-radius: var(--store-radius);
    cursor: pointer;
    transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.store-btn:hover {
    background: var(--store-accent);
    border-color: var(--store-accent);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -12px rgba(189, 90, 43, .7);
}

.store-btn-outline { background: transparent; color: var(--store-ink) !important; }
.store-btn-outline:hover {
    background: var(--store-ink);
    border-color: var(--store-ink);
    color: #fff !important;
    box-shadow: 0 12px 24px -14px rgba(28, 26, 22, .6);
}

.store-btn-light { background: #fff; color: var(--store-ink) !important; border-color: #fff; }
.store-btn-light:hover {
    background: var(--store-accent); border-color: var(--store-accent); color: #fff !important;
}

.store-btn-outline-light { background: transparent; color: #fff !important; border-color: rgba(255, 255, 255, .55); }
.store-btn-outline-light:hover { background: #fff; border-color: #fff; color: var(--store-ink) !important; transform: translateY(-2px); }

.store-btn-block { display: flex; width: 100%; }
.store-btn-sm { padding: .6rem 1.2rem; font-size: .72rem; }

.store-btn:disabled, .store-btn.disabled {
    opacity: .38; cursor: not-allowed; transform: none !important; box-shadow: none !important;
}

.store-link {
    color: var(--store-accent) !important;
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}

/* ---------- Hero ---------- */
.store-hero {
    position: relative;
    background: var(--store-dark);
    color: #f4eee3;
    overflow: hidden;
}

.store-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(70% 120% at 82% 12%, rgba(189, 90, 43, .35), transparent 60%),
        radial-gradient(60% 100% at 8% 100%, rgba(189, 90, 43, .16), transparent 55%);
}

.store-hero-inner {
    position: relative;
    max-width: 1260px;
    margin: 0 auto;
    padding: 6.5rem 1.5rem 6rem;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 3rem;
    align-items: center;
}

.store-hero .store-eyebrow { color: #e2a982; }

.store-hero h1 {
    font-family: var(--store-serif);
    font-weight: 500;
    font-size: clamp(2.6rem, 5.2vw, 4.6rem);
    line-height: 1.03;
    letter-spacing: -.02em;
    margin: 0 0 1.4rem;
}

.store-hero h1 em { font-style: italic; color: #e6b088; }

.store-hero p {
    font-size: 1.06rem;
    color: #cfc6b6;
    max-width: 480px;
    margin: 0 0 2.2rem;
}

.store-hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

.store-hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.store-hero-stats .num { font-family: var(--store-serif); font-size: 1.9rem; line-height: 1; }
.store-hero-stats .lbl { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: #b6ac9a; margin-top: .4rem; }

.store-hero-media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 6px;
    background: linear-gradient(155deg, #2c261f, #17130f);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.store-hero-media img { width: 82%; height: 82%; object-fit: contain; filter: drop-shadow(0 24px 40px rgba(0,0,0,.5)); }

.store-hero-media .store-hero-tag {
    position: absolute;
    left: 1.25rem; bottom: 1.25rem;
    background: rgba(255,255,255,.94);
    color: var(--store-ink);
    padding: .7rem 1rem;
    border-radius: 4px;
    box-shadow: var(--store-shadow);
}

.store-hero-tag .t-name { font-weight: 700; font-size: .82rem; }
.store-hero-tag .t-price { font-family: var(--store-serif); color: var(--store-accent); font-size: 1rem; }

/* ---------- Marquee / feature bar ---------- */
.store-features {
    background: var(--store-bg);
    border-bottom: 1px solid var(--store-line);
}

.store-features-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.store-feature {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.store-feature .mdi {
    font-size: 1.7rem;
    color: var(--store-accent);
    flex-shrink: 0;
}

.store-feature .ft-t { font-weight: 700; font-size: .84rem; }
.store-feature .ft-s { font-size: .76rem; color: var(--store-ink-soft); }

/* ---------- Section heading ---------- */
.store-section {
    padding: 5rem 0;
}

.store-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
}

.store-section-head.center { flex-direction: column; align-items: center; text-align: center; }

.store-section-title {
    font-family: var(--store-serif);
    font-weight: 500;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    letter-spacing: -.02em;
    line-height: 1.08;
    margin: 0;
}

.store-section-sub { color: var(--store-ink-soft); margin: .6rem 0 0; max-width: 520px; }

/* ---------- Category tiles ---------- */
.store-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.store-cat-tile {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(150deg, var(--store-canvas-2), #e3dbcb);
    border: 1px solid var(--store-line);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem;
    color: var(--store-ink);
    transition: transform .3s ease, box-shadow .3s ease;
}

.store-cat-tile:nth-child(3n+1) { background: linear-gradient(150deg, #efe7d9, #e5d8c3); }
.store-cat-tile:nth-child(3n+2) { background: linear-gradient(150deg, #e8e4dc, #dcd3c3); }
.store-cat-tile:nth-child(3n)   { background: linear-gradient(150deg, #efe3d7, #e6cdb8); }

.store-cat-tile:hover { transform: translateY(-4px); box-shadow: var(--store-shadow); }

/* Admin-set category image fills the tile; a gradient scrim keeps the name/CTA legible. */
.store-cat-tile .ct-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform .4s ease;
}
.store-cat-tile.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(20, 18, 14, .78) 0%, rgba(20, 18, 14, .30) 45%, rgba(20, 18, 14, 0) 75%);
}
.store-cat-tile.has-image:hover .ct-bg { transform: scale(1.05); }
.store-cat-tile.has-image .ct-name { position: relative; z-index: 2; color: #fff; }
.store-cat-tile.has-image .ct-go { position: relative; z-index: 2; color: #fff; }

.store-cat-tile .mdi {
    position: absolute;
    top: 1.1rem; right: 1.1rem;
    font-size: 2.4rem;
    color: rgba(28, 26, 22, .16);
}

.store-cat-tile .ct-name { font-family: var(--store-serif); font-size: 1.35rem; line-height: 1.1; }
.store-cat-tile .ct-go {
    margin-top: .5rem;
    font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--store-accent);
    display: inline-flex; align-items: center; gap: .3rem;
}

/* ---------- Filter row ---------- */
.store-filterbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.store-category-pill {
    padding: .5rem 1.15rem;
    background: transparent;
    border: 1px solid var(--store-line);
    color: var(--store-ink-soft);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 999px;
    transition: all .18s ease;
}

.store-category-pill.active, .store-category-pill:hover {
    background: var(--store-ink); color: #fff; border-color: var(--store-ink);
}

.store-inline-search { display: flex; max-width: 300px; width: 100%; }

/* ---------- Product grid & cards ---------- */
.store-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2.5rem 1.75rem;
}

.store-product-card-wrap { display: flex; flex-direction: column; }

.store-product-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--store-bg);
    border: 1px solid var(--store-line);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.store-product-media > a { display: block; width: 100%; height: 100%; }

.store-product-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.store-product-card-wrap:hover .store-product-image { transform: scale(1.06); }

.store-product-image-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #cfc6b4; font-size: 2.75rem;
    background: linear-gradient(150deg, #f3eee4, #ece4d5);
}

.store-product-badge {
    position: absolute;
    top: .8rem; left: .8rem;
    background: var(--store-ink);
    color: #fff;
    font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: .3rem .6rem;
    border-radius: 3px;
    z-index: 2;
}

.store-product-badge.sold { background: #8a8073; }

/* quick add slides up over the image on hover */
.store-quick-add {
    position: absolute;
    left: .8rem; right: .8rem; bottom: .8rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 2;
}

.store-product-card-wrap:hover .store-quick-add { opacity: 1; transform: translateY(0); }

.store-product-category {
    font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--store-ink-faint); margin-bottom: .35rem;
}

.store-product-name {
    font-size: .96rem; font-weight: 600; line-height: 1.35; margin-bottom: .35rem;
    color: var(--store-ink);
}

.store-product-price { font-family: var(--store-serif); font-size: 1.08rem; color: var(--store-ink); }

@media (hover: none) {
    .store-quick-add { opacity: 1; transform: none; position: static; margin-top: .75rem; }
}

/* ---------- Product detail (PDP) ---------- */
.store-breadcrumb { font-size: .78rem; color: var(--store-ink-soft); margin-bottom: 2rem; }
.store-breadcrumb a:hover { color: var(--store-accent); }

.store-gallery-main {
    aspect-ratio: 1 / 1;
    background: var(--store-bg);
    border: 1px solid var(--store-line);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: .85rem;
}

.store-gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.store-gallery-thumbs { display: flex; gap: .6rem; }

.store-gallery-thumb {
    width: 78px; height: 78px;
    background: var(--store-bg);
    border: 1.5px solid var(--store-line);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: border-color .18s ease;
}

.store-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.store-gallery-thumb.active { border-color: var(--store-accent); }

.store-pdp-category { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--store-accent); margin-bottom: .7rem; }

.store-pdp-title {
    font-family: var(--store-serif); font-weight: 500;
    font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -.02em; line-height: 1.1;
    margin-bottom: .75rem;
}

.store-pdp-price { font-family: var(--store-serif); font-size: 1.7rem; color: var(--store-ink); margin-bottom: 1.25rem; }

.store-qty-stepper {
    display: inline-flex; align-items: center;
    border: 1.5px solid var(--store-line); border-radius: var(--store-radius);
    overflow: hidden;
}

.store-qty-stepper button {
    background: none; border: none; width: 42px; height: 46px; font-size: 1.1rem; cursor: pointer;
    color: var(--store-ink); transition: background .15s ease;
}
.store-qty-stepper button:hover { background: var(--store-canvas-2); }

.store-qty-stepper input {
    width: 48px; height: 46px; border: none;
    border-left: 1.5px solid var(--store-line); border-right: 1.5px solid var(--store-line);
    text-align: center; font-size: .95rem; font-weight: 600;
}

/* ---------- Cart / summary ---------- */
.store-cart-row {
    display: flex; gap: 1.1rem; align-items: center;
    padding: 1.35rem 0; border-bottom: 1px solid var(--store-line);
}

.store-cart-thumb {
    width: 88px; height: 88px;
    background: var(--store-bg); border: 1px solid var(--store-line); border-radius: 5px;
    object-fit: cover; flex-shrink: 0;
}

.store-summary-box {
    background: var(--store-bg);
    border: 1px solid var(--store-line);
    border-radius: 6px;
    padding: 1.85rem;
}

/* ---------- Forms ---------- */
.store-form-control {
    border: 1.5px solid var(--store-line);
    border-radius: var(--store-radius);
    background: var(--store-bg);
    padding: .8rem .95rem;
    font-size: .9rem;
    width: 100%;
    color: var(--store-ink);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.store-form-control:focus {
    outline: none; border-color: var(--store-accent);
    box-shadow: 0 0 0 3px rgba(189, 90, 43, .12);
}

.store-form-label {
    font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: .4rem; display: block; color: var(--store-ink);
}

.store-auth-card {
    max-width: 440px; margin: 4rem auto;
    background: var(--store-bg); border: 1px solid var(--store-line);
    border-radius: 8px; padding: 2.5rem; box-shadow: var(--store-shadow);
}

/* ---------- Editorial band ---------- */
.store-editorial {
    background: var(--store-canvas-2);
    border-top: 1px solid var(--store-line);
    border-bottom: 1px solid var(--store-line);
}

.store-editorial-inner {
    max-width: 1260px; margin: 0 auto; padding: 5rem 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}

.store-editorial ul { list-style: none; padding: 0; margin: 1.75rem 0 0; }
.store-editorial li { display: flex; gap: .85rem; padding: .7rem 0; border-bottom: 1px solid var(--store-line); }
.store-editorial li .mdi { color: var(--store-accent); font-size: 1.35rem; }

/* ---------- CTA / newsletter band ---------- */
.store-cta {
    background: var(--store-dark);
    color: #f3ece0;
    text-align: center;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.store-cta::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(60% 120% at 50% 0%, rgba(189,90,43,.28), transparent 60%);
}
.store-cta > * { position: relative; }
.store-cta h2 { font-family: var(--store-serif); font-weight: 500; font-size: clamp(1.9rem,3.4vw,2.9rem); letter-spacing: -.02em; }
.store-cta p { color: #cfc6b6; max-width: 460px; margin: .8rem auto 2rem; }

/* ---------- Footer ---------- */
.store-footer { background: var(--store-dark); color: #cabfae; }
.store-footer .store-container { padding-top: 4rem; padding-bottom: 2rem; }
.store-footer h6 {
    font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
    margin-bottom: 1.25rem; color: #f3ece0;
}
.store-footer-brand .fb-mark { font-family: var(--store-serif); font-size: 1.5rem; color: #fff; }
.store-footer a { color: #cabfae; font-size: .88rem; display: block; margin-bottom: .6rem; }
.store-footer a:hover { color: var(--store-accent); }
.store-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.4rem 0; font-size: .78rem; color: #9a907f;
}

/* ---------- Badges (Materio-compat, self-contained) ---------- */
body.store-front .badge.bg-label-success { background: #e6f4ea; color: #1f7a44; }
body.store-front .badge.bg-label-danger  { background: #fbe9e7; color: #c0392b; }
body.store-front .badge.bg-label-warning { background: #fbf0dc; color: #a9660a; }
body.store-front .badge.bg-label-info    { background: #e6f1fa; color: #1668a5; }
body.store-front .badge.bg-label-secondary { background: #efece6; color: #6d665b; }
body.store-front .badge.bg-label-primary { background: var(--store-accent-soft); color: var(--store-accent-dark); }

/* ---------- Empty state ---------- */
.store-empty-state { text-align: center; padding: 5rem 1rem; color: var(--store-ink-soft); }
.store-empty-state .mdi { color: var(--store-ink-faint); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Mobile offcanvas nav ---------- */
.store-offcanvas .offcanvas-body { padding: 1.5rem; }
.store-mobile-nav a {
    display: block; padding: .85rem 0; border-bottom: 1px solid var(--store-line);
    font-weight: 600; letter-spacing: .05em; text-transform: uppercase; font-size: .85rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .store-hero-inner { grid-template-columns: 1fr; padding: 4.5rem 1.5rem; gap: 2.5rem; }
    .store-hero-media { max-width: 420px; }
    .store-editorial-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .store-features-inner { grid-template-columns: 1fr 1fr; }
}

/* ---------- Order Tracking ---------- */
.store-track-form-wrap {
    background: var(--store-canvas-2);
    border: 1px solid var(--store-line);
    border-radius: 8px;
    padding: 1.75rem;
    max-width: 900px;
    margin-inline: auto;
}

.store-track-result {
    background: var(--store-bg);
    border: 1px solid var(--store-line);
    border-radius: 8px;
    padding: 2rem;
}

.store-track-stepper {
    display: flex;
    align-items: flex-start;
    padding: .5rem 0 .5rem;
}

.store-track-step {
    flex: 1;
    position: relative;
    text-align: center;
}

.store-track-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--store-line);
    z-index: 0;
}

.store-track-step.is-done:not(:last-child)::after {
    background: var(--store-accent);
}

.store-track-step-dot {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    margin: 0 auto .6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--store-bg);
    border: 2px solid var(--store-line);
    color: var(--store-ink-faint);
    font-size: 1.15rem;
    transition: all .2s ease;
}

.store-track-step.is-done .store-track-step-dot {
    background: var(--store-accent);
    border-color: var(--store-accent);
    color: #fff;
}

.store-track-step.is-current .store-track-step-dot {
    border-color: var(--store-accent);
    color: var(--store-accent);
    box-shadow: 0 0 0 4px rgba(189, 90, 43, .15);
}

.store-track-step-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--store-ink-soft);
}

.store-track-step.is-done .store-track-step-label,
.store-track-step.is-current .store-track-step-label {
    color: var(--store-ink);
}

@media (max-width: 767px) {
    .store-header-inner { grid-template-columns: auto 1fr auto; }
    .store-logo { grid-column: auto; justify-self: start; align-items: flex-start; }
    .store-logo .store-logo-sub { letter-spacing: .28em; }
    .store-hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .store-features-inner { grid-template-columns: 1fr; gap: 1rem; }
    .store-section { padding: 3.5rem 0; }
    .store-section-head { flex-direction: column; align-items: flex-start; }
}
