:root {
    --bg: #f7f2eb;
    --surface: rgba(255, 252, 248, 0.9);
    --surface-strong: #fffdf9;
    --text: #241a14;
    --muted: #71645b;
    --green: #294f45;
    --green-deep: #183a33;
    --gold: #c89545;
    --gold-soft: #e6c98f;
    --line: rgba(60, 42, 28, 0.1);
    --shadow: 0 20px 52px rgba(58, 35, 19, 0.1);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(231, 191, 116, 0.18), transparent 24%),
        radial-gradient(circle at top right, rgba(32, 79, 67, 0.08), transparent 22%),
        linear-gradient(180deg, #fbf7f1 0%, #f7f1e8 52%, #f3ebdf 100%);
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: 0;
    pointer-events: none;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.32;
}

body::before {
    top: 7rem;
    left: -6rem;
    background: rgba(231, 191, 116, 0.34);
}

body::after {
    right: -5rem;
    bottom: 6rem;
    background: rgba(32, 79, 67, 0.16);
}

body > * {
    position: relative;
    z-index: 1;
}

body.motion-ready::before,
body.motion-ready::after {
    animation-duration: 13s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

body.motion-ready::before {
    animation-name: ambientDrift;
}

body.motion-ready::after {
    animation-name: ambientDriftReverse;
}

@keyframes pageFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageSlideDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ambientDrift {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(22px, -16px, 0) scale(1.08); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes ambientDriftReverse {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-18px, 20px, 0) scale(1.06); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes sculptureFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -8px, 0); }
}

@keyframes drapeSway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

@keyframes lampGlow {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes surfaceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes logoBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-2deg); }
}

@keyframes shimmerSweep {
    0% { transform: translateX(-140%) skewX(-18deg); opacity: 0; }
    18% { opacity: 0.22; }
    40% { opacity: 0.3; }
    100% { transform: translateX(220%) skewX(-18deg); opacity: 0; }
}

@keyframes badgePulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.05); }
}

@keyframes inventoryLoaderSpin {
    to { transform: rotate(360deg); }
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.announcement-bar {
    padding: 0.85rem 1.5rem;
    text-align: center;
    background: var(--green-deep);
    color: #f7efe5;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.84rem;
    letter-spacing: 0.18em;
    background: linear-gradient(90deg, #183a33, #244840, #183a33);
}

.announcement-bar.announcement-bar-promo {
    background: linear-gradient(90deg, #6f3f12, #b97720, #8c5716, #6f3f12);
    color: #fff8ef;
}

.announcement-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.16) 50%, transparent 82%);
    transform: translateX(-120%);
}

.motion-ready .announcement-bar {
    animation: pageSlideDown 0.65s ease both;
}

.motion-ready .announcement-bar::after {
    animation: shimmerSweep 4.8s ease-in-out infinite;
}

.site-header {
    padding: 1.2rem 1.5rem 0;
}

.nav-shell,
.section-shell,
.hero-section,
.story-banner,
.shop-hero,
.catalog-shell,
.site-footer {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    background: rgba(255, 252, 248, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.home-announcement-bar {
    padding: 0;
    text-align: left;
    background:
        linear-gradient(90deg, #183a33, #294f45, #183a33),
        radial-gradient(circle at 16% 32%, rgba(231, 191, 116, 0.16), transparent 20%),
        radial-gradient(circle at 82% 28%, rgba(255, 244, 224, 0.14), transparent 24%);
}

.home-announcement-shell {
    position: relative;
    z-index: 1;
    width: min(1760px, 100%);
    margin: 0 auto;
    padding: 0.6rem 3rem 1.5rem;
}

.home-announcement-shell::before,
.home-announcement-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.home-announcement-shell::before {
    display: none;
}

.home-announcement-shell::after {
    top: 1.15rem;
    left: 15.5rem;
    width: 16rem;
    height: 3.6rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(231, 191, 116, 0.18), rgba(231, 191, 116, 0));
    filter: blur(10px);
    opacity: 0.75;
}

.home-announcement-topline {
    display: grid;
    grid-template-columns: auto auto minmax(140px, 210px) minmax(430px, 1fr);
    align-items: center;
    gap: 1.6rem;
}

.home-announcement-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 6.7rem;
    height: 6.7rem;
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.98);
    padding: 0.55rem;
    box-shadow: 0 12px 28px rgba(18, 33, 29, 0.16);
}

.home-announcement-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.home-announcement-location,
.home-announcement-actions,
.home-announcement-actions a,
.home-announcement-account-shell,
.home-announcement-account-button {
    display: inline-flex;
    align-items: center;
}

.home-announcement-location {
    gap: 0.75rem;
    color: #f7efe5;
    font-size: 0.92rem;
    line-height: 1.2;
}

.home-announcement-branding {
    display: grid;
    gap: 0.05rem;
    align-content: center;
    min-width: 0;
    color: #fff6ea;
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 0.92;
    text-shadow: 0 10px 24px rgba(18, 33, 29, 0.24);
}

.home-announcement-branding span,
.home-announcement-branding strong {
    display: block;
}

.home-announcement-branding span {
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.home-announcement-branding strong {
    font-size: clamp(1.7rem, 2.45vw, 2.35rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.home-announcement-actions a,
.home-announcement-account-button,
.home-announcement-categories span {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.home-announcement-location svg {
    width: 1.8rem;
    height: 1.8rem;
    flex: 0 0 auto;
}

.home-announcement-location strong {
    display: block;
    font-size: 1rem;
}

.home-announcement-actions {
    justify-content: flex-end;
    gap: 2.2rem;
    min-width: 0;
    flex-wrap: nowrap;
}

.home-announcement-search-shell {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 40;
}

.home-announcement-search-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    border: 1px solid rgba(255, 248, 239, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff8ef;
    box-shadow: 0 10px 24px rgba(18, 33, 29, 0.16);
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.home-announcement-search-link:hover,
.home-announcement-search-shell.is-open .home-announcement-search-link {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 248, 239, 0.34);
}

.home-announcement-search-link svg {
    width: 1.4rem;
    height: 1.4rem;
}

.home-announcement-search-panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: min(21rem, calc(100vw - 2.5rem));
    padding: 0.55rem;
    border: 1px solid rgba(53, 37, 25, 0.12);
    border-radius: 18px;
    background: rgba(255, 252, 248, 0.98);
    box-shadow: 0 20px 40px rgba(18, 33, 29, 0.16);
    z-index: 30;
}

.home-announcement-search-input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #3d3731;
    font: inherit;
    font-size: 0.98rem;
    padding: 0.6rem 0.55rem;
}

.home-announcement-search-input::placeholder {
    color: #7a7167;
}

.home-announcement-search-submit {
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    background: linear-gradient(135deg, rgba(32, 79, 67, 0.96), rgba(20, 41, 36, 0.94));
    color: #fff8ef;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
}

.home-announcement-actions a,
.home-announcement-account-button {
    gap: 0.65rem;
    color: #fff8ef;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 0.35rem 0;
    font-family: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.home-announcement-account-label {
    display: inline-block;
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
}

.home-announcement-cart-link {
    justify-content: center;
    min-width: 1.7rem;
    margin-right: -0.65rem;
}

.home-announcement-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.32rem;
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    border: 1px solid rgba(255, 248, 239, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(18, 33, 29, 0.16);
    cursor: pointer;
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.home-announcement-menu-toggle:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 248, 239, 0.34);
}

.home-announcement-menu-toggle span {
    width: 1.2rem;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: #fff8ef;
    transition: transform 220ms ease, opacity 220ms ease;
}

.home-site-header {
    position: relative;
    z-index: 35;
    width: min(1760px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0;
}

.home-site-header .home-nav-panel {
    width: min(430px, calc(100vw - 2rem));
    margin: 0;
    position: absolute;
    top: -0.25rem;
    right: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem;
    border-color: rgba(255, 248, 239, 0.18);
    background:
        linear-gradient(160deg, rgba(255, 252, 248, 0.98), rgba(245, 238, 227, 0.97)),
        radial-gradient(circle at top right, rgba(231, 191, 116, 0.2), transparent 28%);
    box-shadow: 0 24px 48px rgba(18, 33, 29, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.8rem) scale(0.98);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.home-site-header.is-open .home-nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.home-announcement-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.home-announcement-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.home-announcement-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.home-site-header .brand {
    justify-content: flex-start;
}

.home-site-header .main-nav,
.home-site-header .nav-actions {
    width: 100%;
    display: grid;
    gap: 0.75rem;
}

.home-site-header .main-nav a,
.home-site-header .nav-actions > * {
    width: 100%;
}

.home-site-header .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(32, 79, 67, 0.06);
    color: var(--green-deep);
}

.home-site-header .main-nav a::after {
    display: none;
}

.home-site-header .main-nav .active {
    background: rgba(32, 79, 67, 0.1);
}

.home-site-header .nav-actions {
    padding-top: 0.2rem;
    border-top: 1px solid rgba(61, 43, 26, 0.08);
}

.home-site-header .nav-link,
.home-site-header .user-chip,
.home-site-header .nav-outline-button,
.home-site-header .nav-pill {
    justify-content: center;
}

.home-announcement-actions a:hover,
.home-announcement-account-button:hover,
.home-announcement-account-shell.is-open .home-announcement-account-button {
    transform: translateY(-2px);
}

.home-announcement-actions svg {
    width: 1.7rem;
    height: 1.7rem;
}

.home-announcement-account-shell {
    position: relative;
}

.home-announcement-account-menu {
    position: absolute;
    top: calc(100% + 0.9rem);
    right: 0;
    min-width: 10.5rem;
    display: grid;
    gap: 0.35rem;
    padding: 0.55rem;
    border-radius: 1rem;
    background: rgba(18, 41, 37, 0.96);
    border: 1px solid rgba(255, 248, 239, 0.18);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
    z-index: 20;
}

.home-announcement-account-menu-link {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.8rem 0.95rem;
    border: 0;
    border-radius: 0.85rem;
    background: transparent;
    color: #fff8ef;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 220ms ease, transform 220ms ease, color 220ms ease;
}

.home-announcement-account-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.home-announcement-account-menu-link.is-danger {
    color: #ffd7d7;
}

.home-announcement-account-menu-link.is-danger:hover {
    background: rgba(170, 36, 36, 0.18);
}

.home-announcement-categories {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.2rem;
    margin-top: 1.4rem;
}

.home-announcement-categories a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    color: #fff8ef;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
}

.home-announcement-categories span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    overflow: hidden;
    border: 2px solid rgba(255, 248, 239, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff8ef;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(18, 33, 29, 0.18);
    transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.home-announcement-categories img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-announcement-categories a:hover span {
    border-color: rgba(255, 248, 239, 0.44);
    background: rgba(255, 255, 255, 0.16);
}

.motion-ready .home-announcement-shell::after {
    animation: ambientDrift 8s ease-in-out infinite;
}

.motion-ready .home-announcement-branding {
    animation: pageFadeUp 0.7s ease 0.14s both, surfaceFloat 6.8s ease-in-out 0.9s infinite;
}

.motion-ready .home-announcement-categories a:nth-child(odd) span {
    animation: none;
}

.motion-ready .home-announcement-categories a:nth-child(even) span {
    animation: none;
}

.home-collections-first {
    padding-top: 3rem;
}

@media (max-width: 1180px) {
    .home-announcement-shell {
        padding: 0.8rem 1.25rem 1.35rem;
    }

    .home-site-header .home-nav-panel {
        right: 1.25rem;
    }

    .home-announcement-topline {
        grid-template-columns: auto auto 1fr;
        gap: 1rem;
    }

    .home-announcement-actions {
        grid-column: 1 / -1;
    }

    .home-announcement-actions {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 680px) {
    .home-announcement-bar {
        padding: 0;
    }

    .home-announcement-shell {
        overflow: visible;
        padding: 0.75rem 0.75rem 1rem;
    }

    .home-announcement-topline {
        grid-template-columns: 2.2rem 3.2rem minmax(0, 1fr) auto;
        gap: 0.3rem;
    }

    .home-announcement-logo {
        width: 3.2rem;
        height: 3.2rem;
        padding: 0.35rem;
    }

    .home-announcement-location {
        min-width: 0;
        font-size: 0.72rem;
    }

    .home-announcement-branding {
        gap: 0;
        min-width: 0;
    }

    .home-announcement-branding span {
        font-size: 0.82rem;
    }

    .home-announcement-branding strong {
        font-size: 0.96rem;
    }

    .home-announcement-location svg {
        width: 1rem;
        height: 1rem;
    }

    .home-announcement-actions {
        grid-column: auto;
        overflow: visible;
        position: relative;
        justify-content: flex-end;
        gap: 0.22rem;
        flex-wrap: nowrap;
        min-width: max-content;
    }

    .home-announcement-actions a,
    .home-announcement-account-button {
        justify-content: center;
        gap: 0;
        font-size: 0;
        padding: 0;
    }

    .home-announcement-account-label {
        display: none;
    }

    .home-announcement-account-menu {
        right: -0.35rem;
        min-width: 9.4rem;
    }

    .home-announcement-search-panel {
        left: auto;
        right: 0;
        max-width: none;
        width: min(15rem, calc(100vw - 1.5rem));
    }

    .home-announcement-search-shell {
        width: 2.2rem;
        height: 2.2rem;
    }

    .home-announcement-search-link {
        width: 2.2rem;
        height: 2.2rem;
    }

    .home-announcement-menu-toggle {
        width: 2.2rem;
        height: 2.2rem;
    }

    .home-announcement-actions svg,
    .home-announcement-search-link svg {
        width: 0.95rem;
        height: 0.95rem;
    }

    .home-announcement-menu-toggle span {
        width: 0.85rem;
    }

    .home-announcement-cart-link {
        width: 2.2rem;
        height: 2.2rem;
        min-width: 2.2rem;
        margin-right: 0;
    }

    #homeAnnouncementAccountLink {
        width: 2.2rem;
        height: 2.2rem;
    }

    .home-site-header .home-nav-panel {
        width: calc(100vw - 1.5rem);
        right: 0.75rem;
        padding: 1rem;
    }

    .home-announcement-categories {
        gap: 1rem;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.15rem;
    }

    .home-announcement-categories a {
        min-width: 4.9rem;
        font-size: 0.68rem;
        line-height: 1.1;
    }

    .home-announcement-categories span {
        width: 3.35rem;
        height: 3.35rem;
        font-size: 1.65rem;
    }
}

.motion-ready .nav-shell,
.motion-ready .admin-topbar {
    animation: pageFadeUp 0.7s ease 0.08s both;
}

.motion-ready .nav-shell,
.motion-ready .admin-topbar,
.motion-ready .shop-summary,
.motion-ready .filter-card,
.motion-ready .hero-card,
.motion-ready .cart-summary-card {
    animation-name: pageFadeUp, surfaceFloat;
    animation-duration: 0.7s, 5.6s;
    animation-delay: 0.08s, 0.85s;
    animation-fill-mode: both, both;
    animation-iteration-count: 1, infinite;
    animation-timing-function: ease, ease-in-out;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    padding: 0.4rem;
    box-shadow: 0 12px 26px rgba(54, 30, 14, 0.08);
}

.motion-ready .brand img {
    animation: logoBob 4.4s ease-in-out 0.8s infinite;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-title,
h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
}

.brand-title {
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1;
}

.brand-tag {
    margin-top: 0.15rem;
    color: var(--muted);
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.main-nav a {
    position: relative;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--gold), #efddb3);
    transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav .active::after {
    transform: scaleX(1);
}

.main-nav .active {
    color: var(--text);
}

.shop-filter-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(32, 79, 67, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--green-deep);
    font: inherit;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    white-space: nowrap;
}

.product-nav-filters {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: nowrap;
}

.product-nav-filter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(32, 79, 67, 0.16);
    border-radius: 999px;
    background: rgba(32, 79, 67, 0.06);
    color: var(--green-deep);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.product-nav-filter-link:hover {
    color: var(--green-deep);
    background: rgba(32, 79, 67, 0.12);
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.user-chip {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(32, 79, 67, 0.08);
    color: var(--green-deep);
    font-size: 0.92rem;
    font-weight: 800;
}

.nav-pill,
.nav-outline-button,
.button,
.product-meta button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
}

.nav-pill::after,
.nav-outline-button::after,
.button::after,
.product-meta button::after {
    content: "";
    position: absolute;
    inset: -20% auto -20% -35%;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: translateX(-180%) skewX(-20deg);
}

.nav-pill {
    padding: 0.9rem 1.25rem;
    background: linear-gradient(135deg, #d2a24b, #eccf92);
    color: #2f1f10;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(200, 149, 69, 0.24);
}

.nav-pill:hover,
.nav-outline-button:hover,
.button:hover,
.product-meta button:hover {
    transform: translateY(-4px) scale(1.01);
}

.nav-pill:hover::after,
.nav-outline-button:hover::after,
.button:hover::after,
.product-meta button:hover::after {
    animation: shimmerSweep 0.95s ease;
}

.nav-outline-button {
    padding: 0.85rem 1.15rem;
    border: 1px solid rgba(32, 79, 67, 0.14);
    background: rgba(255, 255, 255, 0.76);
    color: var(--green-deep);
    font-weight: 700;
    cursor: pointer;
}

.hero-section,
.shop-hero {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
    padding: 4.5rem 0 2.5rem;
}

.home-discovery-band {
    width: min(1180px, calc(100% - 2rem));
    margin: 1.2rem auto 0;
    padding: 0;
}

.home-discovery-shell {
    padding: 1.05rem 1.2rem 0.95rem;
    border-radius: 34px;
    background:
        linear-gradient(140deg, rgba(85, 47, 32, 0.96), rgba(114, 63, 43, 0.97)),
        radial-gradient(circle at top left, rgba(231, 191, 116, 0.16), transparent 28%);
    color: #fff7ef;
    box-shadow: 0 26px 50px rgba(55, 31, 22, 0.24);
}

.home-discovery-top {
    display: grid;
    grid-template-columns: auto auto minmax(260px, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
}

.home-discovery-brand,
.home-location-card,
.home-discovery-action {
    color: inherit;
}

.home-discovery-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.home-discovery-brand img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 252, 248, 0.94);
    padding: 0.35rem;
    box-shadow: 0 10px 24px rgba(19, 11, 8, 0.18);
}

.home-discovery-brand .mini-label,
.home-location-copy span:first-child {
    color: rgba(255, 244, 232, 0.72);
}

.home-discovery-brand strong,
.home-location-copy strong {
    display: block;
    font-size: 1.1rem;
}

.home-location-card {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0.1rem;
}

.home-location-icon,
.home-discovery-action > span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.home-location-icon svg,
.home-discovery-action svg,
.home-search-icon svg {
    width: 1.4rem;
    height: 1.4rem;
}

.home-search-bar {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 64px;
    padding: 0 1.15rem;
    border: 2px solid rgba(255, 248, 241, 0.85);
    border-radius: 18px;
    background: rgba(255, 252, 248, 0.97);
    box-shadow: inset 0 0 0 3px rgba(114, 63, 43, 0.08);
}

.home-search-icon {
    color: rgba(75, 48, 37, 0.64);
}

.home-search-bar input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #4d3429;
    font-size: 1.1rem;
}

.home-discovery-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.home-discovery-action {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.15rem 0.2rem;
    font-weight: 600;
}

.home-discovery-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.1rem;
    margin-top: 1.1rem;
}

.home-category-chip {
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    color: inherit;
    text-align: center;
}

.home-category-image {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 248, 241, 0.2);
}

.home-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-category-solid {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff7ef;
}

.hero-editorial {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 0;
    margin-top: 2.8rem;
    padding-top: 1rem;
}

.hero-editorial-copy {
    min-height: 620px;
    padding: 3.5rem 3.25rem 3rem;
    border-radius: 34px 0 0 34px;
    background:
        linear-gradient(140deg, rgba(229, 198, 156, 0.96), rgba(240, 218, 186, 0.94)),
        radial-gradient(circle at top left, rgba(114, 63, 43, 0.12), transparent 28%);
    color: #6f402b;
}

.hero-editorial-copy .eyebrow,
.hero-editorial-copy h1,
.hero-editorial-copy .hero-text,
.hero-editorial-copy .hero-price-note {
    color: #f6e6c8;
}

.hero-editorial-copy .eyebrow {
    color: #e7bf74;
}

.hero-editorial-copy .hero-text {
    color: rgba(248, 240, 228, 0.86);
}

.hero-editorial-copy .hero-price-note {
    color: #f0d39d;
}

.hero-editorial-copy .button-primary {
    border-color: rgba(244, 224, 189, 0.26);
    background: linear-gradient(135deg, #173c34, #27544a);
    color: #fff7eb;
    box-shadow: 0 18px 38px rgba(18, 46, 39, 0.28);
}

.hero-editorial-copy .button-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #214b41, #2f6154);
}

.hero-editorial-copy .button-secondary {
    border-color: rgba(231, 191, 116, 0.26);
    background: rgba(255, 248, 239, 0.12);
    color: #fff4df;
}

.hero-editorial-copy .button-secondary:hover:not(:disabled) {
    background: rgba(255, 248, 239, 0.2);
}

.hero-editorial-divider {
    width: 74px;
    height: 3px;
    margin: 1.8rem 0;
    border-radius: 999px;
    background: rgba(231, 191, 116, 0.6);
}

.hero-editorial-text {
    max-width: 31rem;
    font-size: clamp(1.05rem, 1.75vw, 1.38rem);
    line-height: 1.8;
    letter-spacing: 0.03em;
}

.hero-editorial-visual {
    position: relative;
    min-height: 620px;
    border-radius: 0 34px 34px 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(246, 214, 166, 0.96), rgba(239, 207, 162, 0.92));
}

.hero-editorial-surface {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 247, 231, 0.55), transparent 34%),
        linear-gradient(130deg, rgba(255, 244, 224, 0.8), rgba(199, 143, 104, 0.28));
}

.hero-editorial-note {
    position: absolute;
    left: 2rem;
    top: 2rem;
    z-index: 3;
    max-width: 14rem;
    padding: 1rem 1.05rem;
    border-radius: 24px;
    background: rgba(255, 250, 243, 0.72);
    border: 1px solid rgba(122, 65, 41, 0.1);
    box-shadow: 0 16px 30px rgba(107, 62, 42, 0.12);
}

.hero-editorial-note strong {
    display: block;
    margin-top: 0.35rem;
    color: #73442e;
    line-height: 1.55;
}

.hero-editorial-card {
    position: absolute;
    z-index: 3;
    border-radius: 28px;
    padding: 0.8rem;
    border: 1px solid rgba(114, 63, 43, 0.15);
    background: rgba(255, 251, 245, 0.92);
    box-shadow: 0 16px 32px rgba(107, 62, 42, 0.18);
}

.hero-editorial-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 20px;
}

.hero-editorial-card span {
    display: block;
    margin-top: 0.55rem;
    color: #73442e;
    font-size: 0.86rem;
    line-height: 1.5;
}

.hero-editorial-card-primary {
    right: 2rem;
    bottom: 1.5rem;
    width: min(56%, 330px);
}

.hero-editorial-card-secondary {
    left: 2rem;
    top: 9rem;
    width: 170px;
}

.hero-editorial-card-tertiary {
    left: 3.5rem;
    bottom: 2.2rem;
    width: 184px;
}

.hero-with-scene,
.shop-shell-with-scene,
.product-detail-with-scene {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.theme-scene {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

#shopParallaxScene {
    --parallax-scene-shift: 0px;
    transform: translate3d(0, var(--parallax-scene-shift), 0);
    will-change: transform;
}

.theme-scene > * {
    position: absolute;
}

.hero-with-scene > *:not(.theme-scene),
.shop-shell-with-scene > *:not(.theme-scene),
.product-detail-with-scene > *:not(.theme-scene) {
    position: relative;
    z-index: 1;
}

#shopParallaxScene > [data-parallax-speed] {
    --parallax-shift: 0px;
    transform: translate3d(0, var(--parallax-shift), 0);
    will-change: transform;
}

#shopParallaxScene .theme-lotus-small[data-parallax-speed] {
    transform: translate3d(0, var(--parallax-shift), 0) scale(0.82);
}

.shop-parallax-copy {
    --parallax-copy-shift: 0px;
    transform: translate3d(0, var(--parallax-copy-shift), 0);
    will-change: transform;
}

.shop-parallax-bar {
    --parallax-bar-shift: 0px;
    transform: translate3d(0, var(--parallax-bar-shift), 0);
    will-change: transform;
}

#shopFiltersCard {
    --parallax-filter-shift: 0px;
    transform: translate3d(0, var(--parallax-filter-shift), 0);
    will-change: transform;
}

.theme-arch {
    inset: 0 0 auto auto;
    width: 34rem;
    height: 26rem;
    opacity: 0.98;
}

.theme-arch::before,
.theme-arch::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 3.2rem;
    height: 15rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(229, 206, 165, 0.96) 36%, rgba(176, 126, 58, 0.98));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.54),
        0 22px 36px rgba(87, 53, 23, 0.16);
}

.theme-arch::before {
    left: 4rem;
}

.theme-arch::after {
    right: 4rem;
}

.theme-arch-beam {
    position: absolute;
    inset: 0 3rem auto;
    height: 16rem;
    border-radius: 18rem 18rem 2.2rem 2.2rem;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 245, 223, 0.92), rgba(239, 215, 165, 0.86) 34%, rgba(166, 117, 50, 0.98) 78%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 64%);
    box-shadow:
        inset 0 -14px 26px rgba(109, 69, 30, 0.24),
        0 30px 40px rgba(59, 35, 18, 0.14);
}

.theme-arch-cap {
    top: 9.5rem;
    width: 5.3rem;
    height: 3.5rem;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, #fff5df, #d5ab63 82%);
    box-shadow: 0 14px 24px rgba(74, 46, 20, 0.14);
}

.theme-arch-cap.left {
    left: 2.9rem;
}

.theme-arch-cap.right {
    right: 2.9rem;
}

.theme-arch-godray {
    top: 2.2rem;
    left: 50%;
    width: 12rem;
    height: 12rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 224, 164, 0.82), rgba(255, 224, 164, 0.14) 52%, transparent 70%);
    filter: blur(8px);
}

.theme-drape {
    top: -1.5rem;
    width: 10.5rem;
    height: 20rem;
    border-radius: 0 0 4rem 4rem;
    background:
        linear-gradient(180deg, rgba(64, 100, 88, 0.95), rgba(27, 61, 52, 0.96)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 38%, rgba(255, 224, 164, 0.18) 72%, transparent);
    box-shadow:
        inset -12px 0 18px rgba(14, 32, 27, 0.22),
        0 20px 34px rgba(44, 36, 23, 0.12);
}

.theme-drape::after {
    content: "";
    position: absolute;
    inset: auto 0 -1rem;
    height: 4rem;
    background:
        linear-gradient(180deg, rgba(232, 188, 102, 0.96), rgba(172, 119, 43, 0.98));
    clip-path: polygon(0 0, 10% 100%, 20% 0, 30% 100%, 40% 0, 50% 100%, 60% 0, 70% 100%, 80% 0, 90% 100%, 100% 0, 100% 100%, 0 100%);
}

.theme-drape.left {
    left: 0.5rem;
    transform-origin: top left;
}

.theme-drape.right {
    right: 0.5rem;
    transform-origin: top right;
}

.theme-lamp {
    top: 1.2rem;
    width: 5rem;
    height: 16rem;
}

.theme-lamp.left {
    left: 6rem;
}

.theme-lamp.right {
    right: 6rem;
}

.theme-lamp-chain {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 8rem;
    background: linear-gradient(180deg, rgba(247, 221, 169, 0.1), rgba(219, 177, 93, 0.98));
    transform: translateX(-50%);
}

.theme-lamp-bowl {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    width: 4.6rem;
    height: 3.1rem;
    transform: translateX(-50%);
    border-radius: 0 0 3rem 3rem;
    background:
        linear-gradient(180deg, rgba(255, 248, 232, 0.94), rgba(210, 160, 74, 0.98) 54%, rgba(143, 95, 32, 1));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.44),
        0 16px 28px rgba(78, 47, 19, 0.16);
}

.theme-lamp-bowl::before {
    content: "";
    position: absolute;
    top: -0.55rem;
    left: 50%;
    width: 2.4rem;
    height: 0.9rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 247, 225, 0.94), rgba(201, 149, 67, 0.98));
}

.theme-lamp-flame {
    position: absolute;
    left: 50%;
    bottom: 3.1rem;
    width: 1.6rem;
    height: 2.4rem;
    transform: translateX(-50%);
    border-radius: 60% 60% 60% 60% / 78% 78% 40% 40%;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.12) 24%, transparent 40%),
        linear-gradient(180deg, rgba(255, 243, 173, 0.98), rgba(255, 171, 74, 0.98) 58%, rgba(193, 92, 37, 0.98));
    box-shadow:
        0 0 18px rgba(255, 183, 82, 0.82),
        0 0 40px rgba(255, 183, 82, 0.36);
}

.theme-pedestal {
    right: 4.5rem;
    bottom: 1rem;
    width: 17rem;
    height: 8rem;
}

.theme-pedestal-top {
    position: absolute;
    inset: 0 0 auto;
    height: 2rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 247, 232, 0.98), rgba(226, 191, 128, 0.96));
    box-shadow: 0 12px 22px rgba(72, 43, 20, 0.14);
}

.theme-pedestal-face {
    position: absolute;
    inset: 1.4rem 0 0;
    border-radius: 1.8rem;
    background:
        linear-gradient(180deg, rgba(238, 214, 171, 0.98), rgba(183, 132, 61, 0.98));
    box-shadow:
        inset 0 10px 18px rgba(255, 255, 255, 0.24),
        0 18px 32px rgba(64, 38, 17, 0.16);
}

.theme-pedestal-face::before {
    content: "";
    position: absolute;
    inset: 0.95rem 1.2rem auto;
    height: 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(160, 105, 41, 0.18), rgba(255, 244, 220, 0.38), rgba(160, 105, 41, 0.18));
}

.theme-pedestal-shadow {
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: -1.2rem;
    height: 1.5rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(32, 57, 49, 0.18), transparent 72%);
    filter: blur(8px);
}

.theme-pedestal.compact {
    right: 1.5rem;
    top: 12rem;
    width: 12rem;
    height: 6rem;
}

.theme-lotus {
    width: 7rem;
    height: 4.6rem;
    background:
        radial-gradient(circle at 50% 100%, rgba(214, 147, 105, 0.96), rgba(179, 98, 76, 0.98));
    clip-path: polygon(50% 0%, 64% 28%, 86% 10%, 76% 44%, 100% 42%, 78% 62%, 92% 92%, 60% 74%, 50% 100%, 40% 74%, 8% 92%, 22% 62%, 0% 42%, 24% 44%, 14% 10%, 36% 28%);
    box-shadow: 0 18px 24px rgba(70, 38, 27, 0.12);
}

.theme-lotus-large {
    right: 13rem;
    bottom: 7rem;
    transform: scale(1.12);
}

.theme-lotus-small {
    right: 3rem;
    bottom: 6.2rem;
    transform: scale(0.82);
}

.theme-medallion {
    top: 3rem;
    right: 13rem;
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 248, 225, 0.94) 0 22%, rgba(228, 188, 111, 0.92) 23% 42%, rgba(159, 107, 43, 0.94) 43% 58%, rgba(236, 209, 148, 0.86) 59% 74%, transparent 75%);
    box-shadow: 0 20px 34px rgba(67, 41, 19, 0.12);
    opacity: 0.9;
}

.theme-medallion.compact {
    width: 5.5rem;
    height: 5.5rem;
    top: 4rem;
    right: 1.5rem;
}

.theme-arch.compact {
    width: 18rem;
    height: 14rem;
    right: 0;
}

.theme-arch.compact::before,
.theme-arch.compact::after {
    width: 2rem;
    height: 8rem;
}

.theme-arch.compact::before {
    left: 2rem;
}

.theme-arch.compact::after {
    right: 2rem;
}

.theme-arch.compact .theme-arch-beam {
    inset: 0 1.25rem auto;
    height: 9rem;
}

.theme-arch.compact .theme-arch-cap {
    top: 5rem;
    width: 3.1rem;
    height: 2rem;
}

.theme-drape.compact {
    width: 6.5rem;
    height: 12rem;
}

.theme-lamp.compact {
    width: 3.4rem;
    height: 11rem;
}

.theme-lamp.compact .theme-lamp-chain {
    height: 5.4rem;
}

.theme-lamp.compact .theme-lamp-bowl {
    width: 3.2rem;
    height: 2.1rem;
}

.theme-lamp.compact .theme-lamp-flame {
    width: 1rem;
    height: 1.6rem;
    bottom: 2.2rem;
}

.hero-theme-scene .theme-arch {
    top: 0.2rem;
    right: 0;
}

.hero-theme-scene .theme-lamp.left {
    left: 15rem;
}

.hero-theme-scene .theme-lamp.right {
    right: 9rem;
}

.catalog-theme-scene .theme-arch {
    top: 0.75rem;
    right: 0;
    opacity: 0.78;
}

.catalog-theme-scene .theme-drape.left {
    left: auto;
    right: 10rem;
    top: -1rem;
}

.catalog-theme-scene .theme-drape.right {
    right: -0.75rem;
    top: -1rem;
}

.catalog-theme-scene .theme-lamp.right {
    right: 4rem;
    top: 2rem;
}

.catalog-theme-scene .theme-lotus-small {
    right: 8rem;
    bottom: 1rem;
}

.detail-theme-scene .theme-arch {
    top: 0;
    right: 0;
    opacity: 0.76;
}

.detail-theme-scene .theme-drape.right {
    top: -1rem;
    right: -0.25rem;
}

.detail-theme-scene .theme-lamp.left {
    left: auto;
    right: 11rem;
    top: 1.6rem;
}

.detail-theme-scene .theme-lotus-small {
    right: 2.2rem;
    bottom: 2rem;
}

.motion-ready .theme-drape {
    animation: drapeSway 7.5s ease-in-out infinite;
}

.motion-ready .theme-lamp,
.motion-ready .theme-pedestal,
.motion-ready .theme-lotus,
.motion-ready .theme-medallion {
    animation: sculptureFloat 7.8s ease-in-out infinite;
}

.motion-ready .theme-lamp-flame,
.motion-ready .theme-arch-godray {
    animation: lampGlow 2.8s ease-in-out infinite;
}

.motion-ready .hero-copy,
.motion-ready .hero-card,
.motion-ready .shop-summary,
.motion-ready .filter-card,
.motion-ready .checkout-form-card,
.motion-ready .cart-summary-card,
.motion-ready .admin-hub-card,
.motion-ready .inventory-template-card {
    animation: pageFadeUp 0.75s ease both;
}

.motion-ready .hero-copy,
.motion-ready .checkout-form-card,
.motion-ready .inventory-template-card {
    animation-delay: 0.14s;
}

.motion-ready .hero-card,
.motion-ready .shop-summary,
.motion-ready .cart-summary-card {
    animation-delay: 0.22s;
}

.motion-ready .hero-copy,
.motion-ready .checkout-form-card,
.motion-ready .inventory-template-card,
.motion-ready .admin-hub-card {
    animation-name: pageFadeUp, surfaceFloat;
    animation-duration: 0.75s, 6.8s;
    animation-delay: 0.14s, 0.95s;
    animation-fill-mode: both, both;
    animation-iteration-count: 1, infinite;
    animation-timing-function: ease, ease-in-out;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition:
        opacity 0.72s ease,
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.72s ease;
    transition-delay: var(--reveal-delay, 0ms);
    filter: blur(7px);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.hero-copy,
.hero-card,
.shop-summary,
.filter-card {
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
}

.hero-copy {
    position: relative;
    overflow: hidden;
    padding: 4rem;
    border-radius: 40px;
    background:
        linear-gradient(135deg, rgba(32, 79, 67, 0.9), rgba(20, 41, 36, 0.78)),
        url("Homepage_test2.jpg") center/cover;
    color: #fff8ef;
}

.hero-copy::before {
    content: "";
    position: absolute;
    inset: auto -12% -30% auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231, 191, 116, 0.38), transparent 68%);
}

.eyebrow {
    margin: 0 0 0.85rem;
    color: var(--gold-soft);
    font-size: 0.8rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.hero-text {
    max-width: 40rem;
    margin: 1.45rem 0 0;
    color: rgba(255, 248, 239, 0.82);
    font-size: 1rem;
    line-height: 1.95;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    padding: 0.52rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 248, 239, 0.1);
    border: 1px solid rgba(255, 248, 239, 0.18);
    color: #fff8ef;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.welcome-card {
    display: grid;
    gap: 0.3rem;
    max-width: 32rem;
    margin-top: 1.2rem;
    padding: 0.85rem 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 248, 239, 0.18);
}

.welcome-card strong {
    font-size: 1rem;
}

.welcome-card span {
    color: rgba(255, 248, 239, 0.78);
    line-height: 1.6;
}

.shop-welcome-card {
    margin-top: 1.4rem;
    background: rgba(32, 79, 67, 0.08);
    border: 1px solid rgba(32, 79, 67, 0.12);
}

.shop-welcome-card span {
    color: var(--muted);
}

.cart-page {
    min-height: 100vh;
    padding-bottom: 3rem;
}

.admin-page {
    min-height: 100vh;
    padding-bottom: 3rem;
    position: relative;
}

.admin-page.admin-auth-pending {
    cursor: progress;
}

.cart-main {
    padding: 3rem 0;
}

.admin-header {
    padding: 1.2rem 1.5rem 0;
}

.admin-main {
    padding: 3rem 0;
}

.admin-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.78);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.admin-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-subnav {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.55rem;
    border: 1px solid rgba(53, 37, 25, 0.08);
    border-radius: 999px;
    background: rgba(255, 250, 243, 0.9);
    box-shadow: var(--shadow);
}

.admin-subnav-link {
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.admin-subnav-link:hover,
.admin-subnav-link.active {
    background: rgba(32, 79, 67, 0.1);
    color: var(--green-deep);
}

.admin-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.admin-hub-card {
    display: grid;
    gap: 0.85rem;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;
    background: rgba(255, 250, 243, 0.92);
    box-shadow: var(--shadow);
}

.admin-hub-card h3 {
    margin: 0;
    color: var(--green-deep);
    font-size: 2rem;
}

.admin-hub-card p {
    margin: 0;
}

.admin-hub-card:hover {
    transform: translateY(-4px);
}

.admin-invoice-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
}

.admin-invoice-form,
.admin-invoice-preview-card {
    display: grid;
    gap: 1.25rem;
}

.admin-invoice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-invoice-grid label,
.admin-invoice-item-row label {
    display: grid;
    gap: 0.35rem;
    color: var(--green-deep);
    font-size: 0.92rem;
    font-weight: 700;
}

.admin-invoice-wide {
    grid-column: 1 / -1;
}

.admin-invoice-items-shell {
    display: grid;
    gap: 1rem;
}

.admin-invoice-items-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-invoice-items-header h3 {
    margin: 0.25rem 0 0;
    color: var(--green-deep);
    font-size: 1.75rem;
}

.admin-invoice-items {
    display: grid;
    gap: 0.9rem;
}

.admin-invoice-item-row {
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) repeat(2, minmax(96px, 0.75fr)) minmax(130px, 0.9fr) auto;
    gap: 0.85rem;
    align-items: end;
    padding: 1rem;
    border: 1px solid rgba(53, 37, 25, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
}

.admin-invoice-item-description {
    min-width: 0;
}

.admin-invoice-item-total {
    display: grid;
    gap: 0.35rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(32, 79, 67, 0.06);
    color: var(--muted);
}

.admin-invoice-item-total strong {
    color: var(--green-deep);
}

.admin-invoice-remove-item[disabled] {
    opacity: 0.55;
    cursor: not-allowed;
}

.admin-invoice-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.admin-invoice-preview {
    display: grid;
    gap: 1.25rem;
}

.admin-invoice-preview-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(53, 37, 25, 0.08);
}

.admin-invoice-preview-meta {
    display: grid;
    gap: 0.45rem;
    justify-items: end;
    color: var(--muted);
    text-align: right;
    font-size: 0.94rem;
}

.admin-invoice-preview-copy {
    color: var(--muted);
    line-height: 1.7;
}

.admin-invoice-preview-items {
    display: grid;
    gap: 0.8rem;
}

.admin-invoice-preview-item {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(53, 37, 25, 0.08);
}

.admin-invoice-preview-item strong {
    display: block;
    color: var(--green-deep);
}

.admin-invoice-preview-item span {
    color: var(--muted);
    line-height: 1.6;
}

.admin-invoice-preview-summary {
    display: grid;
    gap: 0.7rem;
    padding: 1.1rem;
    border-radius: 24px;
    background: rgba(32, 79, 67, 0.06);
}

.admin-invoice-preview-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
}

.admin-invoice-preview-summary strong {
    color: var(--green-deep);
}

.admin-invoice-preview-summary .total {
    padding-top: 0.65rem;
    border-top: 1px solid rgba(53, 37, 25, 0.08);
    font-weight: 800;
}

.admin-invoice-preview-notes {
    padding-top: 0.25rem;
}

.admin-invoice-preview-notes p:last-child {
    margin: 0.5rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.cart-layout {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 1.5rem;
    align-items: start;
}

.cart-list-shell,
.cart-summary-card,
.cart-item-card,
.cart-empty-state {
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 34px;
    background: rgba(255, 252, 248, 0.92);
    box-shadow: var(--shadow);
}

.cart-list-shell,
.cart-summary-card {
    padding: 1.5rem;
}

.cart-heading {
    margin-bottom: 1rem;
}

.cart-items {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
}

.cart-item-card img {
    width: 120px;
    height: 120px;
    border-radius: 22px;
    object-fit: cover;
}

.cart-item-content {
    display: grid;
    gap: 0.75rem;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cart-item-top h3 {
    margin: 0;
    color: var(--green-deep);
    font-size: 2rem;
}

.cart-item-top span,
.cart-item-content p,
.cart-empty-state p {
    color: var(--muted);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cart-stock-warning {
    color: #8d2424;
    font-weight: 700;
}

.quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.35rem;
    border: 1px solid rgba(53, 37, 25, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.quantity-controls button,
.remove-item-button {
    border: 0;
    cursor: pointer;
    font-weight: 700;
}

.quantity-controls button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(32, 79, 67, 0.08);
    color: var(--green-deep);
}

.remove-item-button {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(156, 46, 46, 0.08);
    color: #8d2424;
}

.cart-empty-state {
    display: grid;
    gap: 0.9rem;
    justify-items: start;
    padding: 2rem;
    margin-top: 1.2rem;
}

.cart-empty-state h3,
.cart-summary-card h2 {
    margin: 0;
    color: var(--green-deep);
    font-size: 2.5rem;
}

.cart-summary-card {
    position: sticky;
    top: 1rem;
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(53, 37, 25, 0.08);
    color: var(--muted);
}

.cart-summary-row strong {
    color: var(--green-deep);
}

.cart-summary-row.total {
    font-size: 1.05rem;
    font-weight: 800;
}

.cart-summary-fee-note {
    margin: 0.65rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.cart-checkout-button {
    width: 100%;
    margin-top: 1.5rem;
    border: 0;
    cursor: pointer;
}

.checkout-layout,
.admin-layout {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr;
    gap: 1.5rem;
    align-items: start;
}

.checkout-form-card {
    padding: 1.65rem;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 34px;
    background: rgba(255, 252, 248, 0.92);
    box-shadow: var(--shadow);
    display: grid;
    gap: 1rem;
}

.checkout-select,
.checkout-textarea {
    width: 100%;
    border: 1px solid rgba(53, 37, 25, 0.14);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    font: inherit;
    outline: none;
}

.checkout-textarea {
    min-height: 140px;
    resize: vertical;
}

.checkout-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(53, 37, 25, 0.08);
}

.checkout-line-warning {
    align-items: flex-start;
}

.checkout-line-note {
    margin-top: 0.35rem;
    color: #8d2424;
    font-size: 0.9rem;
    font-weight: 700;
}

.checkout-line.empty {
    justify-content: space-between;
}

.checkout-success {
    display: block;
}

.checkout-success p {
    margin: 0.45rem 0 0;
    color: var(--green-deep);
}

.admin-login-card {
    align-self: start;
}

.orders-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.2rem;
}

.order-card {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;
    background: rgba(255, 250, 243, 0.92);
    box-shadow: var(--shadow);
}

.order-card-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.order-card-top h3 {
    margin: 0;
    color: var(--green-deep);
    font-size: 2.2rem;
}

.order-meta-copy {
    margin: 0.45rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.order-status {
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(32, 79, 67, 0.1);
    color: var(--green-deep);
    font-weight: 800;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.order-grid strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--green-deep);
}

.order-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.order-admin-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(53, 37, 25, 0.08);
}

.order-admin-controls label {
    display: grid;
    gap: 0.35rem;
    color: var(--green-deep);
    font-size: 0.92rem;
    font-weight: 700;
}

.order-customer-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.9rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(53, 37, 25, 0.08);
}

.order-action-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.admin-order-input {
    width: 100%;
    border: 1px solid rgba(53, 37, 25, 0.14);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    font: inherit;
    outline: none;
}

.admin-order-save {
    align-self: end;
    border: 0;
    cursor: pointer;
    min-height: 54px;
}

.admin-order-invoice {
    align-self: end;
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(32, 79, 67, 0.18);
    background: linear-gradient(135deg, rgba(32, 79, 67, 0.96), rgba(24, 58, 51, 0.96));
    color: #fff8ef;
    box-shadow: 0 14px 28px rgba(24, 58, 51, 0.18);
    cursor: pointer;
    font-weight: 700;
}

.button {
    padding: 0.95rem 1.35rem;
    border: 1px solid transparent;
    font-weight: 700;
}

.button-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #2a1c0e;
    box-shadow: 0 14px 30px rgba(199, 147, 43, 0.26);
}

.button-secondary {
    border-color: rgba(255, 248, 239, 0.38);
    background: rgba(255, 255, 255, 0.08);
    color: #fff8ef;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-stats div {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 248, 239, 0.18);
}

.hero-stats strong,
.shop-summary strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.4rem;
}

.hero-stats span,
.shop-summary span {
    color: rgba(255, 248, 239, 0.72);
    font-size: 0.92rem;
}

.hero-card {
    align-self: end;
    padding: 2rem;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.95), rgba(246, 234, 215, 0.92));
}

.hero-card-label {
    margin: 0;
    color: var(--green);
    font-size: 0.8rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-card h2,
.section-heading h2,
.story-banner h2,
.filter-card h2 {
    margin: 0.55rem 0 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.hero-card p,
.section-heading p,
.filter-card,
.product-info p,
.site-footer p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-list {
    margin: 1.5rem 0 0;
    padding-left: 1.2rem;
    color: var(--text);
}

.hero-list li + li {
    margin-top: 0.7rem;
}

.section-shell {
    padding: 1.2rem 0 0;
}

.inventory-page-loader {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(247, 241, 232, 0.84);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.inventory-page-loader.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.inventory-page-loader-card {
    width: min(420px, calc(100vw - 3rem));
    display: grid;
    justify-items: center;
    gap: 0.7rem;
    padding: 1.35rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 24px;
    background: rgba(255, 252, 248, 0.96);
    box-shadow: 0 22px 48px rgba(45, 25, 10, 0.12);
    text-align: center;
}

.inventory-page-loader-card strong {
    color: var(--green-deep);
    font-size: 1.05rem;
}

.inventory-page-loader-card span:last-child {
    color: var(--muted);
    line-height: 1.6;
}

.inventory-page-loader-spinner {
    width: 2.8rem;
    height: 2.8rem;
    border: 3px solid rgba(32, 79, 67, 0.14);
    border-top-color: var(--green);
    border-radius: 999px;
    animation: inventoryLoaderSpin 0.9s linear infinite;
}

.home-page-grid {
    width: min(1280px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 1.25rem 0 2.5rem;
}

.home-page-grid > .section-shell,
.home-page-grid > .hero-section,
.home-page-grid > .story-banner {
    width: 100%;
    margin: 0;
}

.home-grid-collections,
.home-grid-hero,
.home-grid-trust,
.home-grid-story {
    grid-column: 1 / -1;
}

.home-grid-featured,
.home-grid-trending {
    grid-column: span 6;
}

.home-grid-featured,
.home-grid-trending {
    grid-column: 1 / -1;
}

.home-grid-confidence {
    grid-column: 1 / -1;
}

.home-grid-collections,
.home-grid-featured,
.home-grid-trending,
.home-grid-confidence {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 252, 248, 0.94), rgba(247, 240, 231, 0.92));
    box-shadow: var(--shadow);
}

.home-grid-hero {
    padding: 0;
}

.home-grid-trust {
    padding-top: 0.2rem;
}

.home-grid-story {
    margin-top: 0.2rem;
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 1.15rem;
}

.section-heading.split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    max-width: none;
}

.section-heading h2 {
    color: var(--green-deep);
}

.text-link {
    color: var(--green);
    font-weight: 700;
}

.collection-grid,
.product-grid,
.shop-grid {
    display: grid;
    gap: 1.25rem;
}

.collection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.collection-grid[data-card-count="1"] {
    grid-template-columns: minmax(320px, 440px);
}

.collection-grid[data-card-count="2"] {
    grid-template-columns: repeat(2, minmax(260px, 360px));
}

.collection-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
}

.collection-tab {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(32, 79, 67, 0.16);
    background: rgba(255, 252, 248, 0.92);
    color: var(--green-deep);
    border-radius: 999px;
    padding: 0.85rem 1.2rem;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.collection-tab::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: rgba(110, 74, 20, 0.85);
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
}

.collection-tab:hover,
.collection-tab.active {
    background: var(--gold);
    border-color: rgba(176, 131, 56, 0.4);
    color: #3b2a13;
    transform: translateY(-1px);
}

.collection-tab.progress-active::after {
    opacity: 1;
    animation: collection-tab-progress 10s linear forwards;
}

.collection-shop-link {
    align-self: center;
    white-space: nowrap;
}

.trust-strip-shell {
    margin-top: -0.9rem;
    margin-bottom: -0.1rem;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.trust-chip-card {
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 252, 248, 0.92), rgba(244, 237, 226, 0.94)),
        radial-gradient(circle at top right, rgba(231, 191, 116, 0.16), transparent 35%);
    box-shadow: var(--shadow);
    transition: transform 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

.trust-chip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(42, 27, 12, 0.12);
}

.trust-chip-card strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--green-deep);
    font-size: 1.02rem;
}

.trust-chip-card p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.94rem;
}

.hero-price-note {
    display: inline-flex;
    align-items: center;
    margin: 1rem 0 0;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 248, 234, 0.92);
    border: 1px solid rgba(176, 131, 56, 0.18);
    color: var(--green-deep);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.trust-contact-card {
    display: grid;
    gap: 0.8rem;
}

.trust-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.trust-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(32, 79, 67, 0.12);
    color: var(--green-deep);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.trust-contact-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 250, 240, 0.96);
    box-shadow: 0 14px 26px rgba(42, 27, 12, 0.12);
}

.trust-contact-link svg {
    width: 1.45rem;
    height: 1.45rem;
    flex: 0 0 auto;
}

.inventory-merchant-textarea {
    min-height: 140px;
}

.inventory-field-hint {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.5;
}

.collection-card {
    min-height: 0;
    aspect-ratio: 4 / 5;
    padding: 1.5rem;
    border-radius: 28px;
    color: #fffaf1;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}

.collection-card-animated {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
}

.collection-grid.is-switching .collection-card-animated {
    animation: collection-card-enter 540ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: var(--collection-card-delay, 0ms);
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(27, 38, 33, 0.18);
}

.collection-card span {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.85;
}

.collection-card h3 {
    margin: 0.55rem 0 0;
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    line-height: 1.02;
    max-width: 12ch;
}

.collection-card-meta {
    margin: 0.7rem 0 0;
    color: rgba(255, 250, 241, 0.82);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.collection-card-footer {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.collection-card-price {
    font-size: 1.45rem;
    line-height: 1;
    color: #fffaf1;
}

.price-stack {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.45rem;
}

.price-stack .price-compare {
    color: rgba(80, 76, 70, 0.72);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.collection-card-price .price-stack .price-compare {
    color: rgba(255, 249, 242, 0.76);
}

.collection-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(255, 248, 234, 0.95);
    color: #19392f;
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.collection-card-cta:hover {
    transform: translateY(-1px);
    background: #fff7e5;
    color: #102a22;
}

@keyframes collection-tab-progress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@keyframes collection-card-enter {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.collection-card.warm {
    background:
        linear-gradient(180deg, transparent, rgba(69, 22, 11, 0.75)),
        url("https://images.unsplash.com/photo-1610030469983-98e550d6193c?auto=format&fit=crop&w=900&q=80") center/cover;
}

.collection-card.green {
    background:
        linear-gradient(180deg, transparent, rgba(19, 57, 47, 0.78)),
        url("https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?auto=format&fit=crop&w=900&q=80") center/cover;
}

.collection-card.sand {
    background:
        linear-gradient(180deg, transparent, rgba(76, 48, 10, 0.72)),
        url("https://images.unsplash.com/photo-1521572267360-ee0c2909d518?auto=format&fit=crop&w=900&q=80") center/cover;
}

.collection-card.plum {
    background:
        linear-gradient(180deg, transparent, rgba(63, 28, 38, 0.72)),
        url("https://images.unsplash.com/photo-1612423284934-2850a4ea6b0f?auto=format&fit=crop&w=900&q=80") center/cover;
}

.product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#featuredProductGrid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

#trendingProductGrid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.experience-panel,
.testimonial-grid {
    display: grid;
    gap: 1.25rem;
}

.experience-panel {
    grid-template-columns: minmax(0, 1.38fr) minmax(220px, 0.62fr);
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255, 252, 248, 0.9), rgba(245, 237, 227, 0.92)),
        radial-gradient(circle at top right, rgba(231, 191, 116, 0.18), transparent 26%);
    box-shadow: var(--shadow);
    align-items: start;
}

.experience-copy {
    display: grid;
    align-content: start;
    gap: 0.55rem;
    padding-right: 0.35rem;
}

.experience-copy h2,
.testimonial-card h3 {
    margin: 0;
    color: var(--green-deep);
}

.experience-copy h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.96;
}

.experience-copy > p:last-of-type {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.experience-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.2rem;
}

.experience-point,
.experience-visual-card,
.testimonial-card {
    border: 1px solid rgba(61, 43, 26, 0.08);
    box-shadow: 0 18px 40px rgba(58, 35, 19, 0.08);
}

.experience-visual-card,
.testimonial-card {
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.experience-visual-card:hover,
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(42, 27, 12, 0.12);
}

.experience-point {
    display: grid;
    gap: 0.45rem;
    padding: 0.95rem 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.62);
}

.experience-point strong,
.experience-visual-card strong,
.testimonial-card strong,
.testimonial-stats strong {
    color: var(--green-deep);
}

.experience-point span,
.experience-visual-card p,
.testimonial-card p,
.testimonial-stats span,
.footer-copy {
    color: var(--muted);
    line-height: 1.7;
}

.experience-visual {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.experience-visual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.experience-visual-card {
    display: grid;
    align-content: end;
    min-height: 160px;
    padding: 1.3rem;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.experience-visual-card.highlight {
    min-height: 280px;
    color: #fff8ef;
    background:
        linear-gradient(180deg, rgba(11, 24, 21, 0.18), rgba(18, 43, 37, 0.86)),
        url("https://images.unsplash.com/photo-1610030469983-98e550d6193c?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.experience-visual-card.highlight strong,
.experience-visual-card.highlight p,
.experience-visual-card.highlight .mini-label {
    color: #fff8ef;
}

.experience-visual-card.soft {
    background:
        linear-gradient(150deg, rgba(231, 191, 116, 0.18), rgba(255, 255, 255, 0.82)),
        rgba(255, 255, 255, 0.74);
}

.experience-visual-card.outline {
    background: linear-gradient(145deg, rgba(32, 79, 67, 0.08), rgba(255, 255, 255, 0.88));
}

.mini-label,
.footer-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
}

.mini-label {
    color: var(--green);
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.6rem;
    border-radius: 28px;
    background: rgba(255, 252, 248, 0.88);
}

.testimonial-card h3 {
    font-size: 1.8rem;
    line-height: 1.08;
}

.stats-card {
    background:
        linear-gradient(160deg, rgba(32, 79, 67, 0.9), rgba(25, 53, 46, 0.92)),
        radial-gradient(circle at top right, rgba(231, 191, 116, 0.28), transparent 32%);
}

.stats-card .mini-label,
.stats-card strong,
.stats-card span,
.stats-card h3,
.stats-card p {
    color: #fff8ef;
}

.testimonial-stats {
    display: grid;
    gap: 1rem;
}

.testimonial-stats div {
    display: grid;
    gap: 0.2rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 248, 239, 0.18);
}

.testimonial-stats div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    border-radius: 34px;
    background: rgba(255, 252, 248, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

#featuredProductGrid .product-card,
#trendingProductGrid .product-card {
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 252, 248, 0.97), rgba(247, 240, 231, 0.98));
}

#featuredProductGrid .product-image-stack,
#trendingProductGrid .product-image-stack {
    min-height: 0;
    aspect-ratio: 4 / 5;
    padding: 0;
    background: rgba(248, 243, 236, 0.96);
}

#featuredProductGrid .product-info,
#trendingProductGrid .product-info {
    padding: 0.95rem 1rem 1rem;
}

#featuredProductGrid .product-info h3,
#trendingProductGrid .product-info h3 {
    font-size: 2rem;
    margin-top: 0.2rem;
}

#featuredProductGrid .product-info p,
#trendingProductGrid .product-info p {
    margin-top: 0.2rem;
    line-height: 1.6;
}

#featuredProductGrid .product-gallery-image,
#trendingProductGrid .product-gallery-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

#featuredProductGrid .product-price-block strong,
#trendingProductGrid .product-price-block strong {
    font-size: 2rem;
    color: var(--green-deep);
}

#featuredProductGrid .product-price-block span,
#trendingProductGrid .product-price-block span {
    font-size: 0.9rem;
}

#featuredProductGrid .product-meta,
#trendingProductGrid .product-meta {
    margin-top: 0.7rem;
    padding-top: 0;
    align-items: center;
}

#featuredProductGrid .product-meta button,
#trendingProductGrid .product-meta button {
    padding: 0.82rem 1.15rem;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    box-shadow: 0 14px 28px rgba(24, 58, 51, 0.18);
}

#featuredProductGrid .product-actions,
#trendingProductGrid .product-actions {
    min-width: 0;
}

.product-image-stack {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: clamp(280px, 34vw, 380px);
    overflow: hidden;
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(248, 243, 236, 0.98), rgba(240, 232, 222, 0.95));
    border-bottom: 1px solid rgba(32, 79, 67, 0.08);
    flex: 0 0 auto;
}

.product-gallery-image {
    position: absolute;
    inset: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    object-fit: contain;
    object-position: center top;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.45s ease;
}

.product-gallery-image.active {
    opacity: 1;
}

.product-card:hover,
.inventory-card:hover,
.order-card:hover,
.cart-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(45, 25, 10, 0.16);
}

.product-card:hover .product-gallery-image.active,
.inventory-card:hover img {
    transform: scale(1.04);
}

.product-card-skeleton {
    cursor: default;
}

.product-card-skeleton:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.92);
    color: var(--green-deep);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
}

.product-badge.sale-badge {
    background: linear-gradient(135deg, rgba(255, 244, 218, 0.96), rgba(255, 221, 157, 0.98));
    color: #7a4208;
    box-shadow: 0 12px 24px rgba(168, 106, 30, 0.18);
}

.motion-ready .product-badge {
    animation: badgePulse 3.2s ease-in-out 1.3s infinite;
}

.product-card-skeleton .product-badge {
    background: transparent;
    border: 0;
}

.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.55rem;
    min-width: 0;
}

.product-info h3 {
    margin: 0;
    font-size: 2.2rem;
    color: var(--green-deep);
    line-height: 1.02;
}

.product-info p {
    margin: 0.5rem 0 0;
}

.product-category-label {
    margin: 0 0 0.45rem;
    color: var(--green);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.product-rating {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(32, 79, 67, 0.08);
    color: var(--green-deep);
    font-size: 0.85rem;
    font-weight: 800;
}

.product-rating-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.product-stock-status {
    margin: 0.8rem 0 0;
    color: var(--green);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.product-stock-status.out {
    color: #8d2424;
}

.product-size-shell {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.product-color-shell {
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.product-size-label {
    color: var(--green-deep);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-color-label {
    color: var(--green-deep);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.size-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.color-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.size-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(32, 79, 67, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--green-deep);
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.size-chip.selected {
    background: rgba(32, 79, 67, 0.12);
    border-color: rgba(32, 79, 67, 0.35);
    box-shadow: 0 10px 22px rgba(32, 79, 67, 0.12);
}

.size-chip.out {
    color: #8d2424;
    border-color: rgba(141, 36, 36, 0.18);
    background: rgba(141, 36, 36, 0.06);
    cursor: not-allowed;
}

.size-chip:not(.out):hover {
    transform: translateY(-3px) scale(1.03);
}

.color-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(32, 79, 67, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--green-deep);
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.color-chip.selected {
    background: rgba(32, 79, 67, 0.12);
    border-color: rgba(32, 79, 67, 0.35);
    box-shadow: 0 10px 22px rgba(32, 79, 67, 0.12);
}

.color-chip:hover {
    transform: translateY(-3px);
}

.size-chip-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    min-height: 1.4rem;
    padding: 0.15rem 0.35rem;
    border-radius: 999px;
    background: rgba(32, 79, 67, 0.1);
    font-size: 0.76rem;
}

.size-chip.out .size-chip-mark {
    background: rgba(141, 36, 36, 0.12);
}

.product-feature-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    color: var(--muted);
    line-height: 1.75;
}

.product-feature-list li + li {
    margin-top: 0.2rem;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.45rem;
}

.product-meta span {
    font-weight: 800;
    color: var(--text);
}

.product-price-block {
    display: grid;
    gap: 0.18rem;
}

.product-price-block strong {
    font-size: 1.8rem;
    color: var(--text);
}

.product-price-block .price-compare {
    font-size: 0.92rem;
}

.product-price-block span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.product-meta button {
    padding: 0.78rem 1.05rem;
    border: 0;
    background: var(--green);
    color: #fff9f2;
    font-weight: 700;
}

.catalog-product-card .product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.35rem;
}

.empty-shop-state {
    min-height: 240px;
}

.product-copy {
    color: var(--muted);
    line-height: 1.68;
}

.product-actions {
    display: grid;
    justify-items: end;
    gap: 0.4rem;
    min-width: 9rem;
}

.product-card-note {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: right;
}

.storefront-empty-state {
    display: grid;
    gap: 0.55rem;
    align-content: start;
}

.storefront-empty-state h3 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    color: var(--green-deep);
}

.storefront-empty-state p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.skeleton-image-stack {
    background:
        linear-gradient(180deg, rgba(244, 237, 226, 0.92), rgba(234, 224, 210, 0.96));
}

.skeleton-meta {
    align-items: end;
}

.skeleton-block {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(223, 212, 194, 0.88);
}

.skeleton-block::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    animation: skeleton-slide 1.4s ease-in-out infinite;
}

.skeleton-badge {
    width: 7.5rem;
    height: 1.9rem;
}

.skeleton-image {
    position: absolute;
    inset: 2rem;
    border-radius: 28px;
}

.skeleton-line {
    height: 0.92rem;
    margin-top: 0.65rem;
}

.skeleton-line-short {
    width: 38%;
}

.skeleton-line-medium {
    width: 72%;
}

.skeleton-line-heading {
    width: 64%;
    height: 1.4rem;
}

.skeleton-line-price {
    width: 7rem;
    height: 1.45rem;
}

.skeleton-button {
    width: 8.5rem;
    height: 2.9rem;
    border-radius: 999px;
}

@keyframes skeleton-slide {
    to {
        transform: translateX(100%);
    }
}

.review-empty-state {
    padding: 1.9rem;
    border-radius: 30px;
    background: rgba(255, 252, 248, 0.92);
    border: 1px solid rgba(32, 79, 67, 0.08);
    box-shadow: var(--shadow);
}

.admin-inventory-heading {
    margin-top: 2.5rem;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1rem 0 2rem;
}

.admin-table-shell {
    margin-top: 1.5rem;
}

.section-heading.compact {
    margin-bottom: 1rem;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(32, 79, 67, 0.1);
    border-radius: 24px;
    background: rgba(255, 252, 248, 0.94);
    box-shadow: var(--shadow);
}

.admin-data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 920px;
}

.admin-data-table th,
.admin-data-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(32, 79, 67, 0.08);
    text-align: left;
    vertical-align: top;
}

.admin-data-table th {
    background: rgba(32, 79, 67, 0.06);
    color: var(--green-deep);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-data-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-table-input {
    width: 100%;
    min-width: 84px;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(32, 79, 67, 0.14);
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    font: inherit;
}

.admin-table-save {
    white-space: nowrap;
}

.admin-table-size-cell {
    display: grid;
    gap: 0.45rem;
}

.admin-table-size-cell span {
    color: var(--muted);
    font-size: 0.84rem;
}

.inventory-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 32px;
    background: rgba(255, 252, 248, 0.94);
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.inventory-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.inventory-card-content {
    display: grid;
    gap: 0.7rem;
    padding: 1.25rem;
}

.inventory-card-content h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--green-deep);
}

.inventory-card-content p {
    margin: 0;
    color: var(--muted);
}

.inventory-stock-input {
    margin-top: 0.35rem;
}

.inventory-size-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.inventory-size-grid label {
    display: grid;
    gap: 0.35rem;
    color: var(--green-deep);
    font-size: 0.92rem;
    font-weight: 700;
}

.inventory-total-copy {
    font-weight: 700;
}

.inventory-template-card {
    margin-bottom: 1.5rem;
}

.inventory-template-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.inventory-template-grid label {
    display: grid;
    gap: 0.35rem;
    color: var(--green-deep);
    font-size: 0.92rem;
    font-weight: 700;
}

.inventory-template-wide {
    grid-column: 1 / -1;
}

.inventory-textarea {
    min-height: 120px;
    resize: vertical;
}

.inventory-image-uploader {
    display: grid;
    gap: 0.75rem;
}

.inventory-field-label {
    color: var(--green-deep);
    font-weight: 800;
}

.inventory-dropzone {
    display: grid;
    gap: 0.35rem;
    padding: 1.1rem;
    border: 1px dashed rgba(32, 79, 67, 0.26);
    border-radius: 22px;
    background: rgba(32, 79, 67, 0.05);
    color: var(--green-deep);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.inventory-dropzone.is-dragging,
.inventory-dropzone:hover {
    border-color: rgba(32, 79, 67, 0.55);
    background: rgba(32, 79, 67, 0.1);
    transform: translateY(-2px);
}

.inventory-dropzone span {
    color: var(--muted);
    line-height: 1.6;
}

.inventory-file-input {
    display: none;
}

.inventory-upload-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.inventory-upload-list span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--green-deep);
    font-size: 0.82rem;
    font-weight: 700;
}

.inventory-save-button {
    border: 0;
    cursor: pointer;
}

.inventory-color-variant-shell {
    display: grid;
    gap: 0.8rem;
}

.inventory-color-variant-grid {
    display: grid;
    gap: 0.85rem;
}

.inventory-color-variant-card {
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
    border: 1px solid rgba(32, 79, 67, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.inventory-variant-empty {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.story-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.8rem;
    margin-bottom: 2rem;
    padding: 1.6rem 1.9rem;
    border-radius: 32px;
    background:
        linear-gradient(120deg, rgba(32, 79, 67, 0.95), rgba(30, 55, 48, 0.88)),
        radial-gradient(circle at top right, rgba(231, 191, 116, 0.4), transparent 30%);
    box-shadow: var(--shadow);
    color: #fff8ef;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.story-banner h2 {
    max-width: 36rem;
}

.story-banner .eyebrow,
.shop-hero .eyebrow {
    color: var(--gold-soft);
}

.site-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0 2.5rem;
}

.footer-brand-block {
    max-width: 22rem;
}

.footer-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
}

.footer-link-grid div {
    display: grid;
    gap: 0.7rem;
}

.footer-link-grid a {
    color: var(--muted);
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-link-grid a:hover {
    color: var(--green-deep);
    transform: translateX(3px);
}

.footer-label {
    margin-bottom: 0.15rem;
    color: var(--green-deep);
}

.footer-copy {
    text-align: right;
}

.policy-shell {
    display: grid;
    gap: 2rem;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.policy-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(24, 58, 51, 0.08);
    border-radius: 28px;
    padding: 1.6rem;
    box-shadow: 0 18px 36px rgba(41, 74, 62, 0.08);
}

.policy-card h2 {
    margin: 0.45rem 0 0.7rem;
}

.policy-card p {
    margin: 0;
    color: var(--ink-muted);
}

.policy-card .text-link {
    display: inline-flex;
    margin-top: 1rem;
}

.policy-highlight-grid,
.policy-detail-layout {
    display: grid;
    gap: 1.25rem;
}

.founder-story-shell {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.4rem;
    align-items: stretch;
}

.founder-portrait-card,
.founder-story-card {
    margin: 0;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(24, 58, 51, 0.08);
    border-radius: 30px;
    box-shadow: 0 18px 36px rgba(41, 74, 62, 0.08);
    overflow: hidden;
}

.founder-portrait-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center top;
}

.founder-story-card {
    padding: 1.8rem;
}

.founder-story-card h2 {
    margin: 0.35rem 0 0.8rem;
    color: var(--green-deep);
}

.founder-story-card p {
    color: var(--ink-muted);
    line-height: 1.75;
}

.founder-story-card .button {
    margin-top: 1rem;
}

.policy-highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-highlight-card,
.policy-detail-card,
.policy-contact-banner {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(24, 58, 51, 0.08);
    box-shadow: 0 18px 36px rgba(41, 74, 62, 0.08);
}

.policy-highlight-card,
.policy-detail-card {
    border-radius: 28px;
    padding: 1.6rem;
}

.policy-highlight-card strong,
.policy-detail-card h2,
.policy-contact-banner h2 {
    color: var(--green-deep);
}

.policy-highlight-card p,
.policy-detail-card p,
.policy-contact-banner p {
    color: var(--ink-muted);
}

.policy-highlight-card strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1.05rem;
    line-height: 1.45;
}

.policy-highlight-card p {
    margin: 0.65rem 0 0;
}

.policy-detail-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: var(--ink-muted);
    line-height: 1.8;
}

.policy-list li + li {
    margin-top: 0.45rem;
}

.policy-contact-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-radius: 32px;
    padding: 1.8rem;
}

.policy-contact-banner h2 {
    margin: 0.35rem 0 0.7rem;
}

.policy-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.floating-whatsapp-button {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1fbf62, #118e47);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 20px 44px rgba(17, 142, 71, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.floating-whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(17, 142, 71, 0.34);
    filter: saturate(1.06);
}

.floating-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.floating-whatsapp-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.floating-whatsapp-label {
    white-space: nowrap;
}

.site-footer h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--green-deep);
}

.shop-page {
    padding-bottom: 2.5rem;
}

.product-page {
    padding: 3rem 0 3.5rem;
}

.shop-shell-with-scene {
    padding-top: 3.5rem;
}

.product-detail-shell,
.product-review-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.product-detail-shell {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
    padding-top: 1rem;
}

.product-detail-gallery,
.product-detail-info,
.product-review-form,
.product-review-list {
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 32px;
    background: rgba(255, 252, 248, 0.94);
    box-shadow: var(--shadow);
}

.product-detail-gallery {
    padding: 1.2rem;
}

.product-detail-stage {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(248, 243, 236, 0.98), rgba(240, 232, 222, 0.95));
}

.product-detail-image {
    position: absolute;
    inset: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    object-fit: contain;
    object-position: center top;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-detail-image.active {
    opacity: 1;
}

.product-detail-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.product-detail-thumb {
    padding: 0.35rem;
    border: 1px solid rgba(32, 79, 67, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    cursor: pointer;
}

.product-detail-thumb.active {
    border-color: rgba(32, 79, 67, 0.34);
    box-shadow: 0 10px 22px rgba(32, 79, 67, 0.1);
}

.product-detail-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.product-detail-info {
    padding: 2rem;
}

.shop-intro-copy {
    max-width: 46rem;
    margin: 0.6rem 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.product-detail-rating-row,
.product-review-card-top,
.product-review-layout {
    display: flex;
    gap: 1rem;
}

.product-detail-rating-row {
    align-items: center;
    margin-top: 1rem;
}

.product-detail-rating-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.5rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(32, 79, 67, 0.1);
    color: var(--green-deep);
    font-weight: 800;
}

.product-detail-rating-copy,
.product-review-summary {
    color: var(--muted);
}

.product-detail-price {
    margin: 1rem 0 0;
    color: var(--green-deep);
}

.product-detail-price .price-stack {
    gap: 0.65rem;
}

.product-detail-price strong {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--green-deep);
}

.product-detail-price .price-compare {
    font-size: 1.05rem;
    color: rgba(32, 79, 67, 0.68);
}

.cart-item-compare {
    margin: 0.22rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 1.4px;
}

.product-detail-description {
    margin-top: 0.85rem;
    color: var(--muted);
    line-height: 1.85;
}

.product-detail-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.product-detail-assurance span {
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(24, 58, 51, 0.08);
    color: var(--green-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.product-detail-actions .product-buy-now {
    border-color: rgba(24, 58, 51, 0.18);
    background: linear-gradient(135deg, #183a33, #2a5a4d);
    color: #fff7eb;
    box-shadow: 0 16px 34px rgba(18, 46, 39, 0.18);
}

.product-detail-actions .product-buy-now:hover:not(:disabled) {
    background: linear-gradient(135deg, #21483f, #33675a);
}

.product-detail-helper {
    margin: 0.8rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.product-detail-specs {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(32, 79, 67, 0.1);
}

.product-detail-spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.product-detail-spec-card {
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(24, 58, 51, 0.05);
    border: 1px solid rgba(32, 79, 67, 0.08);
}

.product-detail-spec-section {
    display: inline-block;
    margin-bottom: 0.35rem;
    color: rgba(32, 79, 67, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-detail-spec-card strong {
    display: block;
    color: var(--green-deep);
}

.product-detail-spec-card p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ask-kandhas-shell {
    position: fixed;
    right: 1.2rem;
    bottom: 6.85rem;
    z-index: 35;
    width: min(420px, calc(100vw - 2rem));
    max-height: min(78vh, 760px);
    padding: 1.35rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background:
        radial-gradient(circle at top right, rgba(230, 201, 143, 0.38), transparent 34%),
        radial-gradient(circle at bottom left, rgba(32, 79, 67, 0.12), transparent 36%),
        linear-gradient(145deg, rgba(14, 31, 28, 0.98), rgba(24, 58, 51, 0.94) 48%, rgba(33, 74, 63, 0.94) 100%);
    box-shadow:
        0 24px 54px rgba(22, 45, 39, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #f8f3eb;
    overflow: hidden;
    transform: translateY(1rem) scale(0.96);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms ease;
}

.ask-kandhas-shell.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ask-kandhas-shell::after {
    content: "";
    position: absolute;
    inset: -30% auto auto -20%;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 226, 171, 0.16), transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

.ask-kandhas-header,
.ask-kandhas-actions,
.ask-kandhas-meta,
.ask-kandhas-suggestions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.ask-kandhas-header {
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.ask-kandhas-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.ask-kandhas-label {
    margin: 0;
    color: rgba(242, 224, 194, 0.84);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.ask-kandhas-header h2 {
    margin: 0.3rem 0 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff8ef;
}

.ask-kandhas-status,
.ask-kandhas-meta span,
.ask-kandhas-suggestions button {
    border-radius: 999px;
}

.ask-kandhas-status {
    padding: 0.55rem 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f6e7c7;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.ask-kandhas-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff6e7;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease;
}

.ask-kandhas-close:hover,
.ask-kandhas-close:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    outline: none;
}

.ask-kandhas-copy {
    position: relative;
    z-index: 1;
    margin: 0.85rem 0 0;
    max-width: 38rem;
    color: rgba(248, 243, 235, 0.78);
    line-height: 1.8;
}

.ask-kandhas-meta {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

.ask-kandhas-meta span {
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff3d8;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ask-kandhas-suggestions {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

.ask-kandhas-suggestions button {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fdf7ee;
    padding: 0.7rem 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.ask-kandhas-suggestions button:hover,
.ask-kandhas-suggestions button:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.24);
    outline: none;
}

.ask-kandhas-thread {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
    max-height: min(32vh, 280px);
    overflow-y: auto;
    padding-right: 0.15rem;
}

.ask-kandhas-bubble {
    max-width: min(100%, 36rem);
    padding: 0.95rem 1rem;
    border-radius: 22px;
    line-height: 1.75;
    font-size: 0.94rem;
    backdrop-filter: blur(10px);
}

.ask-kandhas-bubble strong {
    display: block;
    margin-bottom: 0.28rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ask-kandhas-bubble p {
    margin: 0;
    white-space: pre-wrap;
}

.ask-kandhas-bubble.user {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(226, 188, 109, 0.92), rgba(236, 210, 162, 0.9));
    color: #2a1e12;
    box-shadow: 0 18px 30px rgba(212, 166, 85, 0.2);
}

.ask-kandhas-bubble.assistant {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8f3eb;
    box-shadow: 0 18px 34px rgba(12, 25, 22, 0.2);
}

.ask-kandhas-bubble.loading {
    position: relative;
    overflow: hidden;
}

.ask-kandhas-bubble.loading::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.12) 50%, transparent 78%);
    transform: translateX(-120%);
    animation: shimmerSweep 1.4s ease-in-out infinite;
}

.ask-kandhas-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.95rem;
    margin-top: 1rem;
}

.ask-kandhas-input-shell {
    display: block;
}

.ask-kandhas-input-shell textarea {
    width: 100%;
    min-height: 88px;
    resize: vertical;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff8ef;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ask-kandhas-input-shell textarea::placeholder {
    color: rgba(248, 243, 235, 0.56);
}

.ask-kandhas-input-shell textarea:focus {
    border-color: rgba(243, 217, 165, 0.48);
    box-shadow:
        0 0 0 4px rgba(243, 217, 165, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ask-kandhas-actions {
    justify-content: space-between;
}

.ask-kandhas-send {
    min-width: 9.5rem;
    border: 0;
    cursor: pointer;
}

.ask-kandhas-send:disabled {
    cursor: progress;
    opacity: 0.78;
}

.ask-kandhas-whatsapp {
    color: rgba(255, 248, 239, 0.84);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(255, 248, 239, 0.24);
    text-underline-offset: 0.22rem;
}

.ask-kandhas-whatsapp:hover {
    color: #fff8ef;
}

.ask-kandhas-orb {
    position: absolute;
    top: 1.15rem;
    right: 1.2rem;
    width: 5.6rem;
    height: 5.6rem;
    pointer-events: none;
}

.ask-kandhas-orb span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 235, 196, 0.16);
}

.ask-kandhas-orb span:nth-child(1) {
    background: radial-gradient(circle, rgba(250, 218, 157, 0.4), rgba(250, 218, 157, 0.04) 58%, transparent 76%);
}

.ask-kandhas-orb span:nth-child(2) {
    inset: 0.55rem;
    animation: sculptureFloat 5.6s ease-in-out infinite;
}

.ask-kandhas-orb span:nth-child(3) {
    inset: 1.2rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.54), rgba(255, 215, 156, 0.14) 55%, transparent 72%);
    animation: badgePulse 2.8s ease-in-out infinite;
}

.ask-kandhas-launcher {
    position: fixed;
    right: 1.4rem;
    bottom: 6.2rem;
    z-index: 34;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.65rem;
    height: 3.65rem;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #f2d9a7, #c79544 55%, #6c4a18);
    color: #17362f;
    box-shadow:
        0 22px 42px rgba(39, 63, 55, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.46);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
    overflow: hidden;
}

.ask-kandhas-launcher:hover,
.ask-kandhas-launcher:focus-visible {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 26px 46px rgba(39, 63, 55, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.46);
    outline: none;
}

.ask-kandhas-launcher.is-open {
    transform: scale(0.96);
}

.ask-kandhas-launcher-ring,
.ask-kandhas-launcher-core {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ask-kandhas-launcher-ring {
    inset: 0.34rem;
    border: 1px solid rgba(255, 248, 230, 0.42);
    animation: sculptureFloat 4.8s ease-in-out infinite;
}

.ask-kandhas-launcher-core {
    inset: 0.9rem;
    background: radial-gradient(circle, rgba(255, 249, 236, 0.94), rgba(255, 225, 165, 0.14) 60%, transparent 72%);
    animation: badgePulse 2.6s ease-in-out infinite;
}

.ask-kandhas-launcher-copy {
    position: relative;
    z-index: 1;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.product-buy-now {
    border-color: rgba(24, 58, 51, 0.22);
    background: rgba(24, 58, 51, 0.05);
}

.product-detail-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(32, 79, 67, 0.1);
}

.product-detail-meta strong {
    display: block;
    color: var(--green-deep);
    margin-bottom: 0.35rem;
}

.product-detail-meta span {
    color: var(--muted);
}

.product-review-shell {
    margin-top: 2rem;
}

.product-review-layout {
    align-items: start;
}

.product-review-list {
    flex: 1.15;
    padding: 1.4rem;
    display: grid;
    gap: 1rem;
}

.product-review-form {
    flex: 0.85;
    padding: 1.5rem;
}

.review-star-row {
    margin-top: 0.55rem;
}

.review-stars {
    display: inline-flex;
    gap: 0.3rem;
}

.review-star {
    border: 0;
    background: transparent;
    color: rgba(53, 37, 25, 0.24);
    font-size: 2rem;
    line-height: 1;
    padding: 0.1rem 0.15rem;
    cursor: pointer;
    transition: transform 120ms ease, color 120ms ease;
}

.review-star:hover,
.review-star:focus-visible {
    color: #c3913a;
    transform: translateY(-1px);
    outline: none;
}

.review-star.is-active {
    color: #c3913a;
}

.review-rating-copy {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.92rem;
    color: var(--muted);
}

.product-review-card {
    padding: 1.2rem;
    border: 1px solid rgba(32, 79, 67, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
}

.product-review-card-top {
    align-items: center;
    justify-content: space-between;
}

.product-review-card-top strong {
    display: block;
    color: var(--green-deep);
}

.product-review-card-top span,
.product-review-card p {
    color: var(--muted);
}

.shop-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0;
}

.shop-summary {
    display: grid;
    gap: 1rem;
    align-content: center;
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(32, 79, 67, 0.92), rgba(23, 58, 49, 0.92));
    color: #fff8ef;
}

.catalog-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    padding-top: 1rem;
}

.filter-card {
    position: sticky;
    top: 1rem;
    padding: 1.6rem;
    border-radius: 28px;
    background: rgba(255, 250, 243, 0.9);
}

.shop-filter-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.shop-filter-backdrop,
.shop-filter-close {
    display: none;
}

.shop-filter-close {
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(32, 79, 67, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--green-deep);
    font-size: 0.82rem;
    font-weight: 700;
}

.filter-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--green-deep);
    font-size: 0.95rem;
    font-weight: 800;
}

.shop-filter-select {
    width: 100%;
}

.shop-filter-search {
    width: 100%;
}

.shop-filter-reset {
    width: 100%;
    margin-top: 1.4rem;
}

.shop-results-shell {
    display: grid;
    gap: 1rem;
}

.shop-results-bar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 24px;
    background: rgba(255, 252, 248, 0.8);
    box-shadow: var(--shadow);
}

.shop-results-bar h3 {
    margin: 0.35rem 0 0;
    color: var(--green-deep);
    font-size: 1.9rem;
}

.shop-results-count {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
    text-align: right;
}

.shop-results-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
}

.filter-group + .filter-group {
    margin-top: 1.35rem;
}

.filter-group span {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--green-deep);
    font-size: 0.95rem;
    font-weight: 800;
}

.filter-group a {
    display: block;
    padding: 0.75rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
}

.filter-group a + a {
    margin-top: 0.65rem;
}

.shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.shop-grid > .empty-shop-state {
    grid-column: 1 / -1;
}

.auth-page {
    min-height: 100vh;
    padding-bottom: 3rem;
}

.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 1.5rem;
    align-items: stretch;
    padding: 3rem 0;
}

.auth-aside,
.auth-panel {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 34px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.auth-aside {
    position: relative;
    padding: 2.5rem;
    background:
        linear-gradient(140deg, rgba(23, 58, 49, 0.82), rgba(18, 29, 27, 0.74)),
        url("Background_img.jpeg") center/cover;
    color: #fff8ef;
}

.auth-aside::after {
    content: "";
    position: absolute;
    right: -4rem;
    bottom: -5rem;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231, 191, 116, 0.45), transparent 68%);
}

.auth-aside-content {
    position: relative;
    z-index: 1;
}

.auth-aside h1 {
    max-width: 18rem;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.auth-points {
    display: grid;
    gap: 0.95rem;
    margin-top: 2rem;
}

.auth-point {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.auth-point strong {
    display: block;
    margin-bottom: 0.25rem;
}

.auth-point span {
    color: rgba(255, 248, 239, 0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

.auth-panel {
    padding: 1.5rem;
    background: rgba(255, 250, 243, 0.92);
    backdrop-filter: blur(10px);
}

.auth-panel-inner {
    padding: 1rem;
}

.auth-toggle {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
    padding: 0.45rem;
    border-radius: 999px;
    background: rgba(32, 79, 67, 0.08);
}

.auth-toggle button {
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1rem;
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    cursor: pointer;
}

.auth-toggle button.active {
    background: var(--green);
    color: #fff8ef;
}

.auth-header {
    margin: 1.6rem 0 1.2rem;
}

.auth-header h2 {
    margin: 0;
    color: var(--green-deep);
    font-size: clamp(2rem, 4vw, 3rem);
}

.auth-header p {
    margin: 0.55rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.method-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.25rem;
}

.method-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.68);
    color: var(--muted);
    font-weight: 700;
    cursor: pointer;
}

.method-chip.active {
    border-color: transparent;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: #2a1c0e;
}

.auth-method-panel {
    display: none;
}

.auth-method-panel.active {
    display: block;
}

.auth-form {
    display: grid;
    gap: 1rem;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field-group {
    display: grid;
    gap: 0.45rem;
}

.field-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-deep);
}

.field-group input,
.field-group select {
    width: 100%;
    border: 1px solid rgba(53, 37, 25, 0.14);
    border-radius: 18px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    outline: none;
}

.field-group input:focus,
.field-group select:focus {
    border-color: rgba(32, 79, 67, 0.45);
    box-shadow: 0 0 0 4px rgba(32, 79, 67, 0.08);
}

.phone-field-row {
    display: grid;
    grid-template-columns: minmax(148px, 0.95fr) minmax(0, 1.45fr);
    gap: 0.75rem;
}

.phone-country-select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--green-deep) 50%),
        linear-gradient(135deg, var(--green-deep) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.5rem;
}

.auth-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.auth-form .button-secondary.auth-submit {
    background: rgba(32, 79, 67, 0.1);
    color: var(--green-deep);
    border: 1px solid rgba(32, 79, 67, 0.16);
    box-shadow: none;
}

.auth-form .button-secondary.auth-submit:hover:not(:disabled) {
    background: rgba(32, 79, 67, 0.16);
}

.helper-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.4rem 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(53, 37, 25, 0.12);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 56px;
    border: 1px solid rgba(53, 37, 25, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.social-button.google {
    color: #9b5a08;
}

.social-button.facebook {
    color: #1f4fa7;
}

.status-card,
.auth-note,
.success-banner,
.error-banner {
    margin-top: 1rem;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    line-height: 1.6;
    font-size: 0.94rem;
}

.auth-note {
    background: rgba(32, 79, 67, 0.07);
    color: var(--muted);
}

.status-card {
    display: grid;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted);
}

.status-card strong {
    color: var(--green-deep);
}

.status-action {
    margin-top: 0.6rem;
    width: fit-content;
}

.success-banner {
    display: none;
    background: rgba(32, 79, 67, 0.12);
    color: var(--green-deep);
    font-weight: 700;
}

.error-banner {
    display: none;
    background: rgba(156, 46, 46, 0.1);
    color: #8d2424;
    font-weight: 700;
}

.success-banner.visible {
    display: block;
}

.error-banner.visible {
    display: block;
}

#recaptcha-container {
    min-height: 0;
    margin-top: 0.25rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
}

.recaptcha-shell {
    display: grid;
    gap: 0.55rem;
    margin: 0.35rem 0 0.75rem;
}

.recaptcha-label {
    color: var(--green-deep);
    font-size: 0.92rem;
    font-weight: 700;
}

.recaptcha-shell.is-invisible {
    margin: 0;
}

.recaptcha-shell.is-invisible .recaptcha-label {
    display: none;
}

.recaptcha-shell.is-invisible #recaptcha-container {
    margin: 0;
    height: 0;
    overflow: hidden;
}

@media (max-width: 980px) {
    .home-page-grid {
        grid-template-columns: 1fr;
    }

    .home-grid-featured,
    .home-grid-trending,
    .home-grid-experience,
    .home-grid-confidence,
    .home-grid-collections,
    .home-grid-hero,
    .home-grid-trust,
    .home-grid-story {
        grid-column: auto;
    }

    .theme-scene {
        opacity: 0.82;
        transform: scale(0.84);
        transform-origin: top right;
    }

    .nav-shell,
    .hero-section,
    .shop-hero,
    .catalog-shell,
    .cart-layout,
    .checkout-layout,
    .auth-layout,
    .site-footer,
    .section-heading.split,
    .story-banner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .auth-grid,
    .social-grid,
    .order-grid,
    .order-admin-controls,
    .admin-hub-grid,
    .inventory-template-grid,
    .inventory-size-grid {
        grid-template-columns: 1fr;
    }

    .phone-field-row {
        grid-template-columns: 1fr;
    }

    .inventory-grid {
        grid-template-columns: 1fr;
    }

    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-strip,
    #featuredProductGrid,
    #trendingProductGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .experience-panel,
    .testimonial-grid,
    .experience-points,
    .footer-link-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .founder-story-shell,
    .policy-highlight-grid,
    .policy-detail-layout {
        grid-template-columns: 1fr;
    }

    .experience-visual-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .product-detail-shell,
    .product-review-layout,
    .product-detail-meta {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .product-detail-spec-list {
        grid-template-columns: 1fr;
    }

    .catalog-shell {
        display: block;
    }

    .home-discovery-top {
        grid-template-columns: 1fr 1fr;
    }

    .home-search-bar {
        grid-column: 1 / -1;
    }

    .home-discovery-actions {
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .hero-editorial {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-editorial-copy,
    .hero-editorial-visual {
        border-radius: 28px;
    }

    .hero-editorial-copy {
        min-height: auto;
        padding: 3rem 2.5rem 2.4rem;
    }

    .hero-editorial-visual {
        min-height: 620px;
        margin-top: 1rem;
    }

    .hero-editorial-note {
        left: 1.4rem;
        top: 1.4rem;
        max-width: 12.5rem;
    }

    .hero-editorial-card-primary {
        right: 1.4rem;
        bottom: 1.4rem;
        width: min(56%, 300px);
    }

    .hero-editorial-card-secondary,
    .hero-editorial-card-tertiary {
        left: 1.4rem;
    }

    .hero-editorial-card-secondary {
        top: 13rem;
        width: 156px;
    }

    .hero-editorial-card-tertiary {
        bottom: 1.4rem;
        width: 172px;
    }

    .shop-results-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-results-actions {
        width: 100%;
        justify-content: space-between;
    }

    .shop-results-count {
        text-align: left;
    }

    .policy-contact-banner {
        flex-direction: column;
        align-items: start;
    }

    .floating-whatsapp-button {
        right: 0.9rem;
        bottom: 0.9rem;
        padding: 0.85rem 1rem;
    }

    .ask-kandhas-shell {
        right: 0.9rem;
        bottom: 6.35rem;
        width: min(400px, calc(100vw - 1.4rem));
    }

    .ask-kandhas-launcher {
        right: 1rem;
        bottom: 5.8rem;
    }

    .ask-kandhas-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ask-kandhas-send {
        width: 100%;
    }

    .filter-card {
        position: static;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 720px) {
    .home-page-grid {
        width: min(1280px, calc(100% - 1rem));
        gap: 1rem;
        padding: 1rem 0 2rem;
    }

    .home-grid-collections,
    .home-grid-featured,
    .home-grid-trending,
    .home-grid-experience,
    .home-grid-confidence {
        padding: 1rem;
        border-radius: 24px;
    }

    body::before,
    body::after {
        width: 14rem;
        height: 14rem;
        opacity: 0.16;
    }

    .theme-scene {
        opacity: 0.78;
        transform: scale(0.68);
        transform-origin: top right;
    }

    #shopParallaxScene,
    #shopParallaxScene > [data-parallax-speed],
    #shopFiltersCard,
    .shop-parallax-bar,
    .shop-parallax-copy {
        transform: none;
        will-change: auto;
    }

    .ask-kandhas-shell {
        padding: 1.15rem;
        border-radius: 26px;
        right: 0.7rem;
        bottom: 6rem;
        width: calc(100vw - 1.4rem);
        max-height: 72vh;
    }

    .ask-kandhas-header {
        align-items: flex-start;
        padding-right: 3rem;
    }

    .ask-kandhas-status,
    .ask-kandhas-suggestions button,
    .ask-kandhas-meta span {
        font-size: 0.76rem;
    }

    .ask-kandhas-bubble {
        max-width: 100%;
    }

    .ask-kandhas-orb {
        width: 4.6rem;
        height: 4.6rem;
        top: 1rem;
        right: 0.85rem;
    }

    .ask-kandhas-thread {
        max-height: 26vh;
    }

    .ask-kandhas-launcher {
        right: 0.95rem;
        bottom: 5.55rem;
        width: 3.3rem;
        height: 3.3rem;
    }

    .hero-theme-scene {
        display: none;
    }

    .catalog-theme-scene,
    .detail-theme-scene {
        transform: scale(0.64) translateX(1.5rem);
        transform-origin: top right;
    }

    .site-header,
    .admin-header,
    .announcement-bar {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .announcement-bar {
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
        font-size: 0.62rem;
        letter-spacing: 0.1em;
        white-space: nowrap;
    }

    .shop-page-body .nav-shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 0.6rem;
    }

    .shop-page-body .brand,
    .shop-page-body .main-nav,
    .shop-page-body .nav-actions {
        width: auto;
    }

    .shop-page-body .brand {
        min-width: 0;
        gap: 0.6rem;
    }

    .shop-page-body .brand-copy {
        min-width: 0;
    }

    .shop-page-body .brand img {
        width: 3rem;
        height: 3rem;
    }

    .shop-page-body .brand-tag,
    .shop-page-body #myOrdersLink,
    .shop-page-body #userGreeting {
        display: none !important;
    }

    .shop-page-body .brand-title {
        font-size: 0.94rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .shop-page-body .main-nav,
    .shop-page-body .nav-actions {
        gap: 0.55rem;
        flex-wrap: nowrap;
        overflow: visible;
        padding-bottom: 0;
    }

    .shop-page-body .main-nav a,
    .shop-page-body .nav-link,
    .shop-page-body .nav-outline-button,
    .shop-page-body .nav-pill {
        font-size: 0.78rem;
    }

    .shop-page-body .nav-link,
    .shop-page-body .nav-outline-button,
    .shop-page-body .nav-pill {
        padding: 0.68rem 0.76rem;
    }

    .shop-page-body .cart-link {
        gap: 0.2rem;
    }

    .shop-page-body .nav-pill {
        min-width: 0;
    }

    .shop-filter-nav-toggle {
        display: inline-flex;
    }

    .shop-page-body .shop-filter-nav-toggle {
        font-size: 0.78rem;
        padding: 0.62rem 0.88rem;
    }

    .shop-page-body .catalog-shell {
        display: block;
    }

    .shop-page-body .filter-card {
        position: fixed;
        top: 5.8rem;
        left: 0.9rem;
        right: 0.9rem;
        z-index: 45;
        margin: 0;
        max-height: calc(100vh - 7rem);
        overflow: auto;
        background: rgba(255, 250, 243, 0.78);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-0.8rem);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .shop-page-body .filter-card.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .shop-page-body .shop-filter-backdrop {
        position: fixed;
        inset: 0;
        z-index: 40;
        display: block;
        border: 0;
        padding: 0;
        background: rgba(24, 58, 51, 0.14);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }

    .shop-page-body .shop-filter-close {
        display: inline-flex;
    }

    .shop-page-body.shop-filter-open {
        overflow: hidden;
    }

    .nav-shell,
    .admin-topbar,
    .hero-copy,
    .hero-card,
    .shop-summary,
    .cart-list-shell,
    .cart-summary-card,
    .filter-card,
    .story-banner {
        border-radius: 24px;
    }

    .nav-shell,
    .admin-topbar {
        padding: 1rem;
    }

    .home-discovery-shell {
        padding: 1rem;
        border-radius: 26px;
    }

    .home-discovery-top {
        grid-template-columns: 1fr;
    }

    .home-location-card,
    .home-discovery-actions {
        justify-content: flex-start;
    }

    .home-discovery-actions {
        flex-wrap: wrap;
    }

    .home-category-chip {
        width: calc(50% - 0.75rem);
    }

    .brand {
        width: 100%;
    }

    .main-nav {
        width: 100%;
        gap: 0.75rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-actions,
    .admin-actions {
        width: 100%;
        gap: 0.75rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .admin-subnav {
        width: 100%;
        justify-content: space-between;
    }

    .admin-invoice-layout,
    .admin-invoice-preview-top,
    .admin-invoice-grid,
    .admin-invoice-item-row {
        grid-template-columns: 1fr;
    }

    .admin-invoice-preview-meta {
        justify-items: start;
        text-align: left;
    }

    .admin-invoice-item-total,
    .admin-invoice-remove-item,
    .admin-invoice-actions .button {
        width: 100%;
    }

    .nav-pill {
        min-width: 132px;
    }

    .auth-panel,
    .auth-aside {
        padding: 1.25rem;
    }

    .hero-section,
    .shop-hero {
        padding-top: 2.5rem;
    }

    .hero-editorial-copy {
        padding: 2.2rem 1.6rem;
        background: linear-gradient(140deg, rgba(229, 198, 156, 0.96), rgba(240, 218, 186, 0.94));
        color: #6f402b;
        box-shadow: none;
    }

    .hero-editorial-copy .eyebrow,
    .hero-editorial-copy h1,
    .hero-editorial-copy .hero-text,
    .hero-editorial-copy .hero-price-note {
        color: #7a4129;
    }

    .hero-editorial-visual {
        min-height: 500px;
    }

    .hero-editorial-note {
        position: absolute;
        left: 1rem;
        top: 1rem;
        z-index: 4;
        width: min(168px, calc(100% - 2rem));
        max-width: 168px;
        margin: 0;
        padding: 0.9rem 0.95rem 1rem;
    }

    .hero-editorial-card {
        padding: 0.55rem;
        border-radius: 20px;
    }

    .hero-editorial-card-secondary,
    .hero-editorial-card-tertiary {
        width: 132px;
    }

    .hero-editorial-card-primary {
        right: 1rem;
        bottom: 1.2rem;
        width: min(56%, 228px);
    }

    .hero-editorial-card-secondary {
        left: 1rem;
        top: 11.5rem;
    }

    .hero-editorial-card-tertiary {
        left: 1rem;
        bottom: 1.8rem;
    }

    .experience-panel,
    .testimonial-card {
        padding: 1.4rem;
    }

    .product-detail-info,
    .product-review-form,
    .product-review-list {
        padding: 1.05rem;
        border-radius: 24px;
    }

    .product-page {
        padding-bottom: 2rem;
    }

    .product-detail-shell,
    .product-review-shell {
        width: min(1180px, calc(100% - 1rem));
    }

    .product-detail-shell {
        gap: 1rem;
        padding-top: 0.5rem;
    }

    .product-detail-gallery {
        padding: 0.8rem;
        border-radius: 24px;
    }

    .product-detail-stage {
        aspect-ratio: 1 / 1.12;
        border-radius: 20px;
    }

    .product-detail-image {
        inset: 0.7rem;
        width: calc(100% - 1.4rem);
        height: calc(100% - 1.4rem);
    }

    .product-detail-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.55rem;
        margin-top: 0.75rem;
    }

    .product-detail-thumb {
        padding: 0.25rem;
        border-radius: 14px;
    }

    .product-detail-info h1 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
        line-height: 1.05;
    }

    .product-detail-rating-row {
        flex-wrap: wrap;
        gap: 0.55rem;
        margin-top: 0.8rem;
    }

    .product-card {
        border-radius: 26px;
    }

    .shop-grid .product-card {
        border-radius: 24px;
    }

    .product-image-stack {
        min-height: 260px;
        padding: 0.85rem;
    }

    .shop-grid .product-image-stack {
        min-height: 190px;
        padding: 0.7rem;
    }

    .product-gallery-image {
        inset: 0.85rem;
        width: calc(100% - 1.7rem);
        height: calc(100% - 1.7rem);
    }

    .shop-grid .product-gallery-image {
        inset: 0.7rem;
        width: calc(100% - 1.4rem);
        height: calc(100% - 1.4rem);
    }

    .product-info {
        padding: 1.2rem;
    }

    .product-info h3 {
        font-size: clamp(1.65rem, 9vw, 2rem);
    }

    .shop-grid .product-info {
        padding: 0.95rem 0.9rem 0.9rem;
        gap: 0.28rem;
    }

    .shop-grid .product-info h3 {
        font-size: clamp(1.2rem, 4.8vw, 1.48rem);
        line-height: 1.08;
    }

    .shop-grid .product-category-label {
        margin-bottom: 0.2rem;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .shop-grid .product-copy {
        margin-top: 0.32rem;
        font-size: 0.82rem;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .shop-grid .product-stock-status,
    .shop-grid .product-color-label,
    .shop-grid .product-size-label {
        font-size: 0.72rem;
    }

    .shop-grid .product-color-shell,
    .shop-grid .product-size-shell {
        margin-top: 0.5rem;
    }

    .shop-grid .color-selector,
    .shop-grid .size-selector {
        gap: 0.35rem;
    }

    .shop-grid .color-chip,
    .shop-grid .size-chip {
        padding: 0.48rem 0.62rem;
        font-size: 0.72rem;
    }

    .shop-grid .product-meta {
        gap: 0.55rem;
        margin-top: 0.72rem;
        padding-top: 0.7rem;
    }

    .shop-grid .product-price-block strong {
        font-size: 1.25rem;
    }

    .shop-grid .product-price-block span,
    .shop-grid .product-price-block .price-compare {
        font-size: 0.7rem;
    }

    .shop-grid .product-actions {
        min-width: 0;
        justify-items: stretch;
    }

    .shop-grid .product-card-note {
        display: none;
    }

    .shop-grid .product-meta button {
        width: 100%;
        padding: 0.72rem 0.8rem;
        font-size: 0.78rem;
    }

    .product-meta {
        align-items: stretch;
        flex-direction: column;
        gap: 0.85rem;
    }

    .product-actions {
        width: 100%;
        min-width: 0;
        justify-items: stretch;
    }

    .product-card-note {
        text-align: left;
    }

    .product-meta button {
        width: 100%;
    }

    .product-detail-price {
        margin-top: 0.75rem;
    }

    .product-detail-price strong {
        font-size: 1.9rem;
    }

    .product-detail-price .price-compare {
        font-size: 0.92rem;
    }

    .product-detail-description,
    .product-detail-helper {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .product-detail-assurance {
        gap: 0.45rem;
        margin-top: 0.85rem;
    }

    .product-detail-assurance span {
        padding: 0.42rem 0.62rem;
        font-size: 0.67rem;
        letter-spacing: 0.05em;
    }

    .product-color-shell,
    .product-size-shell {
        margin-top: 0.95rem;
    }

    .product-detail-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.15rem;
    }

    .product-detail-actions .button {
        width: 100%;
        justify-content: center;
    }

    .product-detail-specs {
        margin-top: 1.2rem;
        padding-top: 1rem;
    }

    .product-detail-spec-list {
        gap: 0.7rem;
    }

    .product-detail-spec-card {
        padding: 0.85rem 0.9rem;
        border-radius: 18px;
    }

    .product-detail-meta {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        margin-top: 1.2rem;
        padding-top: 1rem;
    }

    .product-detail-meta > div {
        padding: 0.85rem 0.95rem;
        border-radius: 18px;
        background: rgba(24, 58, 51, 0.05);
        border: 1px solid rgba(32, 79, 67, 0.08);
    }

    .product-review-shell {
        margin-top: 1rem;
    }

    .product-review-layout {
        flex-direction: column;
        gap: 1rem;
    }

    .product-review-card-top {
        flex-wrap: wrap;
        gap: 0.55rem;
    }

    .product-review-list {
        gap: 0.85rem;
    }

    .review-stars {
        flex-wrap: wrap;
    }

    .review-star {
        font-size: 1.7rem;
    }

    .review-rating-copy {
        font-size: 0.88rem;
    }

    .hero-copy {
        padding: 2rem 1.4rem;
        background: #23463d;
        color: #fff8ef;
        backdrop-filter: none;
        box-shadow: 0 16px 34px rgba(24, 58, 51, 0.22);
    }

    .hero-copy .eyebrow,
    .hero-copy h1,
    .hero-copy .hero-text,
    .hero-copy .hero-stats span,
    .hero-copy .hero-stats strong {
        color: #fff8ef;
    }

    .hero-copy .hero-text,
    .hero-copy .hero-stats span {
        opacity: 0.88;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-trust-row {
        gap: 0.55rem;
    }

    .hero-trust-row span {
        width: 100%;
        justify-content: center;
    }

    .section-shell,
    .site-footer {
        width: min(1180px, calc(100% - 2rem));
    }

    .home-collections-first .section-heading.split,
    .section-heading.split {
        align-items: end;
        flex-direction: row;
        gap: 0.75rem;
        justify-content: space-between;
    }

    .section-heading.split > div {
        min-width: 0;
    }

    .section-heading.split h2 {
        font-size: clamp(1.65rem, 7.4vw, 2.2rem);
    }

    .section-heading.split p:not(.eyebrow) {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .home-collections-first .collection-shop-link {
        align-self: center;
        flex: 0 0 auto;
        font-size: 0.86rem;
    }

    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .collection-card {
        min-height: 220px;
        padding: 1rem;
        border-radius: 22px;
    }

    .collection-card h3 {
        font-size: clamp(1.35rem, 6.2vw, 1.85rem);
        max-width: 10ch;
    }

    .collection-card-meta {
        font-size: 0.72rem;
    }

    .collection-card-footer {
        align-items: center;
        flex-direction: row;
        gap: 0.55rem;
    }

    .collection-card-price {
        font-size: 1.05rem;
    }

    .collection-card-cta {
        min-width: auto;
        width: auto;
        padding: 0.58rem 0.7rem;
        font-size: 0.78rem;
    }

    .home-category-chip {
        width: 100%;
    }

    .home-discovery-action {
        width: 100%;
        justify-content: flex-start;
    }

    .trust-strip,
    #featuredProductGrid,
    #trendingProductGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    #featuredProductGrid .product-image-stack,
    #trendingProductGrid .product-image-stack {
        min-height: 0;
    }

    #featuredProductGrid .product-info,
    #trendingProductGrid .product-info {
        padding: 0.85rem 0.9rem 0.9rem;
    }

    #featuredProductGrid .product-info h3,
    #trendingProductGrid .product-info h3 {
        font-size: clamp(1.3rem, 6vw, 1.65rem);
    }

    #featuredProductGrid .product-price-block strong,
    #trendingProductGrid .product-price-block strong {
        font-size: 1.28rem;
    }

    #featuredProductGrid .product-price-block span,
    #trendingProductGrid .product-price-block span,
    .product-card-note {
        font-size: 0.68rem;
    }

    .experience-visual-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .story-banner {
        padding: 1.6rem;
    }

    .site-footer {
        padding-bottom: 2rem;
    }

    .footer-copy {
        text-align: left;
    }
}
