:root {
    --ivory: #fffcf7;
    --ivory-soft: #faf6ef;
    --ivory-deep: #f3ebe0;
    --white: #ffffff;
    --ink: #2a2622;
    --ink-soft: #6b635a;
    --muted: #8f8578;
    --gold: #c4a35a;
    --gold-bright: #d8bc74;
    --gold-deep: #9a7a35;
    --gold-line: rgba(196, 163, 90, 0.35);
    --line: rgba(42, 38, 34, 0.08);
    --shadow: 0 18px 50px rgba(70, 55, 30, 0.08);
    --shadow-gold: 0 12px 40px rgba(196, 163, 90, 0.18);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-script: "Great Vibes", cursive;
    --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--ivory);
    scrollbar-width: thin;
    scrollbar-color: var(--gold-deep) var(--ivory-deep);
}

html::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track {
    background: var(--ivory-deep);
}

html::-webkit-scrollbar-thumb {
    border: 3px solid var(--ivory-deep);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
}

html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    isolation: isolate;
    background-color: var(--ivory);
    background-image:
        radial-gradient(ellipse 90% 50% at 12% 0%, rgba(255, 248, 232, 0.7), transparent 55%),
        radial-gradient(ellipse 80% 45% at 88% 8%, rgba(255, 252, 247, 0.65), transparent 50%),
        linear-gradient(180deg, #fffdf9 0%, var(--ivory) 42%, var(--ivory-soft) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Soft ambient shade — same on every page */
.site-ambiance {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ambiance-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    will-change: transform, opacity;
}

.ambiance-glow-a {
    width: min(58vw, 680px);
    height: min(58vw, 680px);
    top: -16%;
    left: -14%;
    background:
        radial-gradient(circle, rgba(232, 205, 130, 0.28) 0%, rgba(216, 188, 116, 0.12) 40%, transparent 70%);
    animation: ambiance-drift-a 18s ease-in-out infinite alternate;
}

.ambiance-glow-b {
    width: min(52vw, 620px);
    height: min(52vw, 620px);
    top: 10%;
    right: -16%;
    background:
        radial-gradient(circle, rgba(255, 248, 230, 0.45) 0%, rgba(216, 188, 116, 0.1) 42%, transparent 72%);
    animation: ambiance-drift-b 22s ease-in-out infinite alternate;
}

.ambiance-glow-c {
    width: min(64vw, 760px);
    height: min(48vw, 580px);
    bottom: -20%;
    left: 12%;
    background:
        radial-gradient(circle, rgba(255, 250, 240, 0.4) 0%, rgba(243, 235, 224, 0.18) 45%, transparent 72%);
    animation: ambiance-drift-c 20s ease-in-out infinite alternate;
}

.ambiance-glow-d {
    width: min(44vw, 480px);
    height: min(44vw, 480px);
    top: 42%;
    left: 40%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 252, 245, 0.2) 45%, transparent 70%);
    animation: ambiance-pulse 12s ease-in-out infinite;
}

.ambiance-beam {
    position: absolute;
    inset: -20% -10%;
    background:
        linear-gradient(
            115deg,
            transparent 24%,
            rgba(255, 255, 255, 0.2) 40%,
            rgba(216, 188, 116, 0.12) 50%,
            rgba(255, 255, 255, 0.16) 60%,
            transparent 76%
        );
    mix-blend-mode: soft-light;
    animation: ambiance-sheen 14s ease-in-out infinite;
}

.ambiance-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 80% at 50% 40%, transparent 55%, rgba(243, 235, 224, 0.35) 100%);
}

.ambiance-grain {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        radial-gradient(rgba(196, 163, 90, 0.1) 0.6px, transparent 0.7px);
    background-size: 4px 4px;
    mix-blend-mode: soft-light;
}

@keyframes ambiance-drift-a {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(8%, 10%, 0) scale(1.12); }
}

@keyframes ambiance-drift-b {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-10%, 8%, 0) scale(1.08); }
}

@keyframes ambiance-drift-c {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(6%, -8%, 0) scale(1.1); }
}

@keyframes ambiance-pulse {
    0%, 100% { opacity: 0.55; transform: translate3d(0, 0, 0) scale(1); }
    50% { opacity: 0.95; transform: translate3d(-3%, 4%, 0) scale(1.15); }
}

@keyframes ambiance-sheen {
    0%, 100% { transform: translateX(-8%) rotate(0.001deg); opacity: 0.55; }
    50% { transform: translateX(8%) rotate(0.001deg); opacity: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
    .ambiance-glow-a,
    .ambiance-glow-b,
    .ambiance-glow-c,
    .ambiance-glow-d,
    .ambiance-beam {
        animation: none !important;
    }
}

.announcement,
main,
.site-footer {
    position: relative;
    z-index: 1;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: 0.01em;
    margin: 0 0 0.5rem;
    color: var(--ink);
}

p { margin: 0 0 1rem; }

.container {
    width: min(1140px, calc(100% - 2.75rem));
    margin-inline: auto;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Top bar + left brand header */
.announcement {
    background: linear-gradient(90deg, #f3ebe0, #fff8eb, #f3ebe0, #fff8eb, #f3ebe0);
    background-size: 200% 100%;
    animation: announcement-shine 8s linear infinite;
    border-bottom: 1px solid var(--gold-line);
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.85rem;
}

@keyframes announcement-shine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.announcement-location {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    font-weight: 500;
    color: var(--ink-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 252, 247, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.header-stack {
    padding: 0.55rem 0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.header-side {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.header-side.left {
    justify-content: flex-start;
    min-width: 0;
}

.header-side.right { justify-content: flex-end; }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink);
    line-height: 1;
    text-align: left;
}

.brand-logo {
    display: block;
    width: 12.25rem;
    height: auto;
    aspect-ratio: 1024 / 576;
    flex-shrink: 0;
    border: 0;
    background: transparent;
    object-fit: contain;
    object-position: center;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: none;
    transition: opacity 0.25s ease;
}

.brand:hover .brand-logo {
    opacity: 0.92;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    letter-spacing: 0.08em;
}

.brand-tag {
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 1.5rem;
    min-width: 0;
}

.nav a {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
    position: relative;
    padding: 0.35rem 0;
    white-space: nowrap;
}

.nav a:hover,
.nav a.active { color: var(--ink); }

.nav a.active::after,
.nav a:hover::after {
    content: "";
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 1px solid var(--gold-line);
    padding: 0.45rem 0.85rem 0.45rem 0.65rem;
    background: linear-gradient(145deg, #fffdf9, #f7efe3);
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-link:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.cart-icon-wrap {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #fff;
    flex-shrink: 0;
}

.cart-icon {
    width: 1.15rem;
    height: 1.15rem;
}

.cart-count {
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
    display: inline-grid;
    place-items: center;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
    border: 2px solid var(--ivory);
}

.cart-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    line-height: 1.15;
}

.cart-label {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
}

.cart-total {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gold-deep);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #fff;
    box-shadow: 0 6px 16px rgba(154, 122, 53, 0.28);
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle:hover,
.menu-toggle.is-open {
    background: linear-gradient(135deg, var(--gold-deep), #7d6228);
    box-shadow: 0 8px 20px rgba(154, 122, 53, 0.35);
}

.menu-toggle-lines {
    position: relative;
    display: block;
    width: 1.15rem;
    height: 0.9rem;
}

.menu-toggle-lines span {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.22s ease, top 0.22s ease, opacity 0.22s ease;
}

.menu-toggle-lines span:nth-child(1) { top: 0; }
.menu-toggle-lines span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle-lines span:nth-child(3) { bottom: 0; top: auto; }

.menu-toggle.is-open .menu-toggle-lines span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.menu-toggle.is-open .menu-toggle-lines span:nth-child(3) {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
}

.header-note {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Full-bleed hero carousel with a diagonal gold reveal */
.hero-carousel {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: min(82vh, 52rem);
    min-height: 34rem;
    perspective: 1400px;
    overflow: hidden;
    background: var(--ivory-deep);
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(2%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
    animation: hero-slide-enter-next 1.2s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.hero-slide.is-active.is-entering-prev {
    animation-name: hero-slide-enter-prev;
}

.hero-slide.is-leaving-next,
.hero-slide.is-leaving-prev {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    z-index: 3;
}

.hero-slide.is-leaving-next {
    animation: hero-slide-leave-next 0.95s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.hero-slide.is-leaving-prev {
    animation: hero-slide-leave-prev 0.95s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.hero-slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--ivory-soft);
    isolation: isolate;
}

.hero-slide-media::before {
    content: "";
    position: absolute;
    inset: -8%;
    z-index: -2;
    background-image: var(--slide-image);
    background-position: center;
    background-size: cover;
    filter: blur(24px) saturate(1.15);
    opacity: 0.72;
    transform: scale(1.08);
}

.hero-slide-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 72% 48%, transparent 0 28%, rgba(154, 122, 53, 0.08) 72%),
        linear-gradient(90deg, rgba(255, 252, 247, 0.42), transparent 58%);
    pointer-events: none;
}

.hero-slide-media img {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.04) translate3d(0, 0, 0);
    filter: drop-shadow(0 18px 26px rgba(20, 16, 12, 0.2));
    will-change: transform, filter;
}

.hero-slide.is-active .hero-slide-media img {
    animation: hero-image-drift 7.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-slide-enter-next {
    0% {
        opacity: 0;
        transform: translate3d(8%, 0, 0) scale(1.06) rotateY(-3deg);
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
    42% {
        opacity: 1;
        transform: translate3d(1%, 0, 0) scale(1.02) rotateY(-0.8deg);
        clip-path: polygon(68% 0, 100% 0, 100% 100%, 34% 100%);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes hero-slide-enter-prev {
    0% {
        opacity: 0;
        transform: translate3d(-8%, 0, 0) scale(1.06) rotateY(3deg);
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    42% {
        opacity: 1;
        transform: translate3d(-1%, 0, 0) scale(1.02) rotateY(0.8deg);
        clip-path: polygon(0 0, 32% 0, 66% 100%, 0 100%);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes hero-slide-leave-next {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    100% {
        opacity: 0;
        transform: translate3d(-7%, 0, 0) scale(0.98) rotateY(2deg);
        clip-path: polygon(0 0, 64% 0, 36% 100%, 0 100%);
    }
}

@keyframes hero-slide-leave-prev {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    100% {
        opacity: 0;
        transform: translate3d(7%, 0, 0) scale(0.98) rotateY(-2deg);
        clip-path: polygon(36% 0, 100% 0, 100% 100%, 64% 100%);
    }
}

@keyframes hero-image-drift {
    0% {
        transform: scale(1.08) translate3d(1.5%, 0, 0);
        filter: drop-shadow(0 18px 26px rgba(20, 16, 12, 0.2)) saturate(0.94) brightness(0.94);
    }
    28% {
        transform: scale(1.05) translate3d(0, -0.5%, 0);
        filter: drop-shadow(0 18px 26px rgba(20, 16, 12, 0.2)) saturate(1) brightness(1);
    }
    100% {
        transform: scale(1.01) translate3d(-1%, 0.5%, 0);
        filter: drop-shadow(0 18px 26px rgba(20, 16, 12, 0.2)) saturate(1.03) brightness(1.02);
    }
}

.hero-slide-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 252, 247, 0.82) 0%, rgba(255, 252, 247, 0.42) 40%, rgba(255, 252, 247, 0.04) 76%),
        linear-gradient(180deg, rgba(255, 252, 247, 0.08) 0%, transparent 45%, rgba(154, 122, 53, 0.12) 100%);
}

.hero-slide-veil::after {
    content: "";
    position: absolute;
    inset: -20% auto -20% -12%;
    width: 12%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(244, 218, 157, 0.34), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
}

.hero-slide.is-active .hero-slide-veil::after {
    animation: hero-gold-sweep 1.35s 0.25s ease-out both;
}

@keyframes hero-gold-sweep {
    0% {
        left: -12%;
        opacity: 0;
    }
    18% { opacity: 1; }
    100% {
        left: 112%;
        opacity: 0;
    }
}

.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: min(1140px, calc(100% - 2.75rem));
    margin-inline: auto;
    width: min(1140px, calc(100% - 2.75rem));
    padding-block: 3rem 4.5rem;
    pointer-events: none;
}

.hero-slide-content .hero-actions,
.hero-slide-content .btn {
    pointer-events: auto;
}

.hero-slide-content > * {
    max-width: 34rem;
}

.hero-content-panel {
    position: relative;
    width: min(36rem, 100%);
    padding: 0;
}

.hero-content-panel::before,
.hero-content-panel::after {
    display: none;
}

.hero-kicker-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-content-panel .hero-kicker {
    margin: 0;
    color: var(--gold-deep);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    line-height: 1.35;
    text-shadow: none;
}

.hero-slide-count {
    flex: 0 0 auto;
    color: var(--gold-deep);
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}

.hero-content-panel h1,
.hero-content-panel .hero-subtitle,
.hero-content-panel .hero-description,
.hero-content-panel .hero-actions {
    position: relative;
    z-index: 1;
}

.hero-content-panel h1 {
    color: var(--ink);
    margin-bottom: 0.7rem;
    text-shadow: 0 2px 16px rgba(255, 252, 247, 0.8);
}

.hero-content-panel .hero-subtitle {
    color: var(--ink-soft);
    font-size: 1.02rem;
    text-shadow: 0 1px 10px rgba(255, 252, 247, 0.75);
}

.hero-content-panel .hero-description {
    color: var(--muted);
    text-shadow: 0 1px 8px rgba(255, 252, 247, 0.72);
}

.hero-content-panel .hero-actions {
    margin-top: 1.35rem;
}

.hero-content-panel .btn-primary {
    box-shadow: 0 9px 22px rgba(154, 122, 53, 0.28);
}

.hero-slide.is-active .hero-slide-content {
    animation: none;
    opacity: 1;
    transform: none;
}

@keyframes hero-content-in {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-kicker {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #f3e2b0;
    margin: 0 0 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-slide-content h1 {
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    color: #fffdf8;
    margin: 0 0 0.85rem;
    max-width: 14ch;
    line-height: 1.08;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
    color: rgba(255, 252, 247, 0.92);
    max-width: 28rem;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.55;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-description {
    color: rgba(255, 252, 247, 0.82);
    max-width: 30rem;
    margin: 0.65rem 0 0;
    font-size: 0.82rem;
    line-height: 1.55;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.hero-slide-content .btn-primary {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(196, 163, 90, 0.7);
    border-radius: 50%;
    background: rgba(255, 252, 247, 0.78);
    color: var(--gold-deep);
    box-shadow: 0 8px 24px rgba(26, 20, 14, 0.16);
    backdrop-filter: blur(5px);
    cursor: pointer;
    transform: translateY(-50%);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-nav svg {
    width: 1.15rem;
    height: 1.15rem;
}

.hero-nav:hover {
    border-color: var(--gold);
    background: #fff;
    box-shadow: var(--shadow-gold);
    transform: translateY(-50%) scale(1.08);
}

.hero-prev { left: 1.25rem; }
.hero-next { right: 1.25rem; }

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    width: min(220px, calc(100% - 3rem));
    padding: 0.65rem 0.85rem 0.7rem;
    border: 1px solid rgba(255, 252, 247, 0.28);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.72);
    box-shadow: 0 8px 25px rgba(154, 122, 53, 0.16);
    backdrop-filter: blur(7px);
}

.hero-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid var(--gold);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 28px;
    background: linear-gradient(90deg, var(--gold-bright), var(--gold));
    border-color: transparent;
}

.hero-progress {
    width: 100%;
    height: 2px;
    background: rgba(154, 122, 53, 0.2);
    border-radius: 999px;
    overflow: hidden;
}

.hero-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold-bright), var(--gold-deep));
    border-radius: inherit;
}

.home-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 3px;
    pointer-events: none;
    background: rgba(196, 163, 90, 0.12);
}

.home-scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-bright), var(--gold-deep), #6d4b16);
    box-shadow: 0 0 10px rgba(216, 188, 116, 0.72);
    transition: width 0.08s linear;
}

.home-marquee {
    position: relative;
    z-index: 3;
    overflow: hidden;
    border-block: 1px solid rgba(196, 163, 90, 0.3);
    background: #2a2622;
    color: #f5e5b7;
    white-space: nowrap;
}

.home-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    min-height: 3rem;
    animation: home-marquee-scroll 28s linear infinite;
}

.home-marquee span {
    padding-inline: 1.4rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-marquee i {
    color: var(--gold-bright);
    font-size: 0.85rem;
    font-style: normal;
}

@keyframes home-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.9rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #fff;
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-ghost,
.btn-outline {
    background: var(--white);
    color: var(--gold-deep);
    border-color: var(--gold-line);
}

.btn-ghost:hover,
.btn-outline:hover {
    border-color: var(--gold);
    background: #fffaf0;
}

.btn-dark {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
}

.btn-sm { padding: 0.55rem 0.85rem; font-size: 0.7rem; }
.btn-block { width: 100%; }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #1ebe57;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
}

.btn-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
    color: #fff;
    border-color: transparent;
}

.btn-instagram:hover {
    color: #fff;
    filter: brightness(1.05);
    box-shadow: 0 12px 30px rgba(221, 42, 123, 0.28);
}

.whatsapp-float {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: auto;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.social-float-stack {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.scroll-top-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid rgba(154, 122, 53, 0.45);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.scroll-top-btn[hidden] {
    display: none !important;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.scroll-top-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.scroll-top-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(154, 122, 53, 0.35);
}

.instagram-float {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
    color: #fff;
    box-shadow: 0 10px 28px rgba(221, 42, 123, 0.38);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.instagram-float svg,
.whatsapp-float svg {
    width: 1.7rem;
    height: 1.7rem;
}

.whatsapp-float:hover {
    background: #1ebe57;
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.5);
}

.instagram-float:hover {
    color: #fff;
    filter: brightness(1.06);
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px rgba(221, 42, 123, 0.48);
}

.social-icon {
    width: 0.95rem;
    height: 0.95rem;
    margin-right: 0.4rem;
    vertical-align: -0.12rem;
}

.btn-instagram,
.social-on-image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.royal-light-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    margin-top: 0.35rem;
}

.royal-light-copy .btn-outline {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--ink);
}

.royal-light-copy .btn-outline:hover {
    background: #fff;
}

@media (max-width: 640px) {
    .social-float-stack {
        right: 1rem;
        bottom: 1rem;
    }

    .instagram-float,
    .whatsapp-float,
    .scroll-top-btn {
        width: 3.15rem;
        height: 3.15rem;
    }
}

/* Multi-page layouts */
.page-hero-band {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, #fff8eb, var(--ivory));
    border-bottom: 1px solid var(--gold-line);
    text-align: center;
}

.page-hero-band h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}

.page-hero-band .eyebrow a {
    color: var(--gold-deep);
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1.75rem;
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 200px;
}

.category-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

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

.category-card-top h2 {
    font-size: 1.7rem;
    margin: 0;
}

.category-card-top span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
}

.category-card p {
    color: var(--ink-soft);
    flex: 1;
}

.category-card-link {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 600;
}

.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.75rem;
    padding: 2.5rem 0 3.5rem;
    align-items: start;
}

.category-page-body {
    padding: 2rem 0 3.5rem;
}

.category-products .product-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1200px) {
    .category-products .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-sidebar-filter {
    padding: 1.15rem 1.1rem 1.2rem;
    border: 1px solid var(--gold-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 246, 239, 0.94));
    box-shadow: var(--shadow-gold);
}

.category-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(42, 38, 34, 0.06);
}

.category-sidebar-head h3 {
    margin: 0;
    font-size: 1.15rem;
}

.category-sidebar-reset {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-deep);
}

.category-sidebar-block {
    margin-bottom: 1rem;
}

.category-sidebar-block > label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.category-sidebar-block input[type="search"],
.category-filter-sort {
    width: 100%;
}

.category-sidebar-chips {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-line) transparent;
}

.category-sidebar-chips::-webkit-scrollbar {
    width: 6px;
}

.category-sidebar-chips::-webkit-scrollbar-thumb {
    background: var(--gold-line);
    border-radius: 999px;
}

.category-sidebar-chips::-webkit-scrollbar-track {
    background: transparent;
}

.category-sidebar-chips .category-chip {
    width: 100%;
    justify-content: space-between;
    flex-shrink: 0;
}

.category-filter-bar {
    margin-bottom: 1.75rem;
    padding: 1.15rem 1.2rem 1.2rem;
    border: 1px solid var(--gold-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 246, 239, 0.92));
    box-shadow: var(--shadow-gold);
}

.category-filter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.95rem;
}

.category-filter-search {
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 340px;
}

.category-filter-search input,
.category-sidebar-block input[type="search"] {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--gold-line);
    background: #fff;
    color: var(--ink);
}

.category-filter-search input:focus,
.category-sidebar-block input[type="search"]:focus,
.category-filter-sort:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(216, 188, 116, 0.2);
}

.category-filter-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.category-filter-check {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--line);
    background: #fff;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.82rem;
    color: var(--ink-soft);
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.category-filter-check input {
    width: auto;
    margin: 0;
    accent-color: var(--gold-deep);
}

.category-filter-check.is-on {
    border-color: var(--gold);
    background: rgba(216, 188, 116, 0.16);
    color: var(--gold-deep);
    font-weight: 600;
}

.category-filter-sort {
    min-width: 160px;
    padding: 0.62rem 0.8rem;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 0.84rem;
}

.category-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(42, 38, 34, 0.06);
}

.category-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.85rem;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.category-chip:hover {
    transform: translateY(-2px);
    border-color: var(--gold-line);
    color: var(--gold-deep);
    box-shadow: 0 8px 18px rgba(154, 122, 53, 0.12);
}

.category-chip.is-active,
.category-chip.tone-0.is-active {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    border-color: transparent;
    color: #fffdf8;
    box-shadow: 0 10px 22px rgba(154, 122, 53, 0.28);
}

.category-chip.tone-1.is-active {
    background: linear-gradient(135deg, #efd0b5, #b06a3a);
    border-color: transparent;
    color: #fff;
}

.category-chip.tone-2.is-active {
    background: linear-gradient(135deg, #cfe2d5, #4a7056);
    border-color: transparent;
    color: #fff;
}

.category-chip.tone-3.is-active {
    background: linear-gradient(135deg, #dfcdef, #6c4a8c);
    border-color: transparent;
    color: #fff;
}

.category-chip.tone-4.is-active {
    background: linear-gradient(135deg, #cddff0, #3a608a);
    border-color: transparent;
    color: #fff;
}

.category-chip.tone-5.is-active {
    background: linear-gradient(135deg, #f2d2cf, #9e4a4a);
    border-color: transparent;
    color: #fff;
}

.category-chip.tone-6.is-active {
    background: linear-gradient(135deg, #cfe6e4, #377872);
    border-color: transparent;
    color: #fff;
}

.category-chip.tone-7.is-active {
    background: linear-gradient(135deg, #ead7b8, #9a7a35);
    border-color: transparent;
    color: #fff;
}

.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;
}

@media (max-width: 960px) {
    .category-layout {
        grid-template-columns: 1fr;
    }

    .category-filter-sidebar {
        position: static;
    }

    .category-sidebar-chips {
        max-height: 180px;
    }
}

@media (max-width: 720px) {
    .category-filter-bar {
        padding: 1rem;
    }

    .category-filter-search {
        max-width: none;
        flex-basis: 100%;
    }

    .category-filter-controls {
        width: 100%;
    }

    .category-filter-sort {
        flex: 1 1 auto;
        min-width: 0;
    }

    .category-sidebar-chips {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .category-sidebar-chips .category-chip {
        width: auto;
    }
}

.category-sidebar {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1.25rem;
    height: fit-content;
    position: sticky;
    top: 7rem;
}

.category-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.sidebar-links a {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.55rem 0.4rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.sidebar-links a:hover {
    color: var(--gold-deep);
}

.product-breadcrumb,
.site-breadcrumb {
    padding: 1.25rem 0 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.site-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.site-breadcrumb-sep {
    color: var(--muted);
    opacity: 0.7;
}

.product-breadcrumb a,
.site-breadcrumb a {
    color: var(--gold-deep);
    text-decoration: none;
}

.product-breadcrumb a:hover,
.site-breadcrumb a:hover {
    text-decoration: underline;
}

.site-breadcrumb [aria-current="page"] {
    color: var(--ink-soft);
}

.product-lead {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: var(--ink);
}

.product-highlights {
    margin: 1rem 0 1.25rem;
    padding-left: 1.1rem;
    color: var(--ink-soft);
}

.product-highlights li {
    margin-bottom: 0.35rem;
}

.stock-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1rem 0 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
}

.variant-picker {
    margin: 1.15rem 0 0.35rem;
}

.variant-picker-label {
    margin: 0 0 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.variant-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.7rem 0.4rem 0.4rem;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 600;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.variant-option-thumb {
    width: 2rem;
    height: 2rem;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(42, 38, 34, 0.08);
    flex-shrink: 0;
}

.variant-option:hover {
    border-color: var(--gold-line);
    transform: translateY(-1px);
}

.variant-option.is-active {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(247, 239, 226, 0.95));
    box-shadow: 0 8px 18px rgba(154, 122, 53, 0.16);
    color: var(--gold-deep);
}

.variant-selected {
    margin: 0.65rem 0 0;
    font-size: 0.88rem;
}

.variant-selected strong {
    color: var(--ink);
    font-weight: 700;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.stock-badge.is-in {
    color: #2f6b45;
    background: linear-gradient(135deg, #eaf6ee, #d8efdf);
    border-color: rgba(47, 107, 69, 0.28);
    box-shadow: 0 6px 16px rgba(47, 107, 69, 0.12);
}

.stock-badge.is-out {
    color: #8a3a32;
    background: linear-gradient(135deg, #fbebe8, #f5ddd8);
    border-color: rgba(138, 58, 50, 0.28);
    box-shadow: 0 6px 16px rgba(138, 58, 50, 0.1);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.product-actions .qty-row {
    margin: 0;
}

.product-whatsapp-order {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    max-width: 26rem;
    padding: 0.85rem 1rem;
    border: 1px solid #1ebe57;
    border-radius: 0.45rem;
    background: linear-gradient(135deg, #25d366, #1ebe57);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.product-whatsapp-order:hover {
    color: #fff;
    filter: brightness(1.04);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.36);
}

.product-whatsapp-order-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    flex-shrink: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.product-whatsapp-order-icon svg {
    width: 1.45rem;
    height: 1.45rem;
}

.product-whatsapp-order-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
}

.product-whatsapp-order-copy strong {
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.product-whatsapp-order-copy small {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.92;
    line-height: 1.35;
}

.product-whatsapp-order-arrow {
    flex-shrink: 0;
    font-size: 1.15rem;
    opacity: 0.9;
    transition: transform 0.2s ease;
}

.product-whatsapp-order:hover .product-whatsapp-order-arrow {
    transform: translateX(3px);
}

.whatsapp-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff8eb;
    border: 1px dashed var(--gold-line);
}

.whatsapp-preview pre {
    margin: 0.5rem 0 0;
    white-space: pre-wrap;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.55;
}

.specs-panel {
    margin: 0.5rem 0 2.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1.5rem;
}

.specs-panel h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    text-align: left;
    padding: 0.75rem 0.4rem;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.specs-table th {
    width: 180px;
    color: var(--gold-deep);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-specs-wrap {
    padding: 0 0 2.25rem;
}

.product-specs {
    padding: 1.15rem 0 0;
    border-top: 1px solid var(--gold-line);
    background: transparent;
}

.product-specs-head {
    margin-bottom: 0.85rem;
}

.product-specs-head h2 {
    margin: 0;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    font-weight: 700;
    color: var(--ink);
}

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

.product-spec {
    display: grid;
    gap: 0.2rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(42, 38, 34, 0.06);
}

.product-spec--wide {
    grid-column: 1 / -1;
}

.product-spec dt {
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
}

.product-spec dd {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

.product-spec a {
    color: var(--gold-deep);
    text-decoration: none;
}

.product-spec a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .product-specs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .product-specs-grid {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .product-spec {
        padding: 0.45rem 0;
    }
}

.card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: auto;
    padding: 0.7rem 1rem;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #fffdf8;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(154, 122, 53, 0.22);
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.card-cta:hover,
.product-card:hover .card-cta {
    background: #fffdf8;
    color: var(--gold-deep);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(154, 122, 53, 0.28);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    padding: 2.5rem 0 4rem;
}

.contact-form,
.contact-side {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1.5rem;
}

.contact-meta {
    margin-top: 1.5rem;
    color: var(--ink-soft);
}

.contact-social-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.page-shop .filters,
.page-categories .category-cards {
    margin-top: 0.5rem;
}

/* Shop + category detail — royal transitions & gold reflection */
.page-shop,
.page-category.page-shop {
    position: relative;
}

.page-shop::before,
.page-category.page-shop::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 55vh;
    background:
        radial-gradient(circle at 18% 20%, rgba(216, 188, 116, 0.14), transparent 34%),
        radial-gradient(circle at 82% 8%, rgba(154, 122, 53, 0.1), transparent 28%);
    pointer-events: none;
    z-index: 0;
}

.page-shop > *,
.page-category.page-shop > * {
    position: relative;
    z-index: 1;
}

.page-shop .shop-hero,
.page-category .shop-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 248, 235, 0.96), var(--ivory));
    border-bottom: 1px solid var(--gold-line);
}

.shop-hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -80px;
    top: -160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 188, 116, 0.28), transparent 68%);
    animation: shop-glow-drift 9s ease-in-out infinite alternate;
    pointer-events: none;
}

.shop-hero-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 48%, transparent 66%);
    transform: translateX(-120%);
    animation: shop-sheen-sweep 7.5s ease-in-out infinite;
    pointer-events: none;
}

.shop-hero-inner {
    position: relative;
    z-index: 1;
}

.shop-hero-line {
    opacity: 0;
    transform: translateY(18px);
    animation: shop-hero-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--hero-delay, 0s);
}

.shop-hero-rule {
    width: 0;
    height: 2px;
    margin: 1.05rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold), transparent);
    animation-name: shop-rule-grow;
}

.shop-filter-enter,
.shop-product-enter {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}

.shop-filter-enter.is-visible,
.shop-product-enter.is-visible {
    opacity: 1;
    transform: none;
}

.page-shop .category-sidebar-filter,
.page-category .category-sidebar-filter {
    position: relative;
    overflow: hidden;
}

.page-shop .category-sidebar-filter::before,
.page-category .category-sidebar-filter::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-bright), var(--gold), var(--gold-deep));
    background-size: 200% 100%;
    animation: shop-gold-flow 4.5s linear infinite;
}

.page-shop .shop-product-enter .product-card,
.page-category .shop-product-enter .product-card {
    height: 100%;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.5s ease;
}

.page-shop .shop-product-enter .product-card::before,
.page-category .shop-product-enter .product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    pointer-events: none;
    z-index: 2;
    transition: border-color 0.35s ease, box-shadow 0.45s ease;
}

.page-shop .shop-product-enter .product-media,
.page-category .shop-product-enter .product-media {
    position: relative;
}

.page-shop .shop-product-enter .product-media::before,
.page-category .shop-product-enter .product-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, transparent 25%, rgba(255, 252, 247, 0.42) 48%, transparent 70%);
    transform: translateX(-130%) skewX(-12deg);
    transition: transform 0.9s ease;
    pointer-events: none;
}

.page-shop .shop-product-enter .product-card:hover,
.page-category .shop-product-enter .product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 44px rgba(154, 122, 53, 0.18);
}

.page-shop .shop-product-enter .product-card:hover::before,
.page-category .shop-product-enter .product-card:hover::before {
    border-color: rgba(216, 188, 116, 0.55);
    box-shadow: inset 0 0 0 1px rgba(216, 188, 116, 0.2);
}

.page-shop .shop-product-enter .product-card:hover .product-media::before,
.page-category .shop-product-enter .product-card:hover .product-media::before {
    transform: translateX(130%) skewX(-12deg);
}

.page-shop .shop-product-enter .product-card:hover .product-media img,
.page-category .shop-product-enter .product-card:hover .product-media img {
    transform: scale(1.06);
}

.page-shop .pagination-nav,
.page-category .pagination-nav {
    animation: shop-pager-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.15s;
}

@keyframes shop-hero-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

@keyframes shop-rule-grow {
    from { opacity: 0; width: 0; }
    to { opacity: 1; width: min(170px, 40vw); }
}

@keyframes shop-glow-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-30px, 18px, 0) scale(1.1); }
}

@keyframes shop-sheen-sweep {
    0%, 55% { transform: translateX(-120%); }
    75%, 100% { transform: translateX(120%); }
}

@keyframes shop-gold-flow {
    from { background-position: 0% 50%; }
    to { background-position: 200% 50%; }
}

@keyframes shop-pager-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .shop-hero-line,
    .shop-hero-glow,
    .shop-hero-sheen,
    .page-shop .category-sidebar-filter::before,
    .page-category .category-sidebar-filter::before,
    .page-shop .pagination-nav,
    .page-category .pagination-nav {
        animation: none !important;
    }

    .shop-hero-line,
    .shop-filter-enter,
    .shop-product-enter,
    .shop-filter-enter.is-visible,
    .shop-product-enter.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .shop-hero-rule {
        width: min(170px, 40vw);
    }

    .page-shop .shop-product-enter .product-media::before,
    .page-category .shop-product-enter .product-media::before {
        display: none;
    }
}

/* Categories page — colorful responsive mosaic */
.page-categories .categories-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(216, 188, 116, 0.22), transparent 36%),
        radial-gradient(circle at 88% 10%, rgba(176, 106, 58, 0.12), transparent 30%),
        linear-gradient(180deg, #fff8eb, var(--ivory));
}

.page-categories .categories-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -40% auto;
    width: 48%;
    height: 120%;
    background: radial-gradient(circle, rgba(216, 188, 116, 0.18), transparent 68%);
    animation: categories-hero-drift 10s ease-in-out infinite alternate;
    pointer-events: none;
}

.categories-hero-inner {
    position: relative;
    z-index: 1;
}

.categories-hero-line {
    opacity: 0;
    transform: translateY(18px);
    animation: categories-hero-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--hero-delay, 0s);
}

.categories-hero-rule {
    width: 0;
    height: 2px;
    margin: 1.1rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation-name: categories-rule-grow;
}

@keyframes categories-hero-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

@keyframes categories-rule-grow {
    from { opacity: 0; width: 0; }
    to { opacity: 1; width: min(180px, 42vw); }
}

@keyframes categories-hero-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-24px, -18px, 0) scale(1.08); }
}

.categories-page-body {
    padding: 2.5rem 0 4rem;
}

.categories-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.categories-pagination .pagination {
    margin-top: 0;
}

.categories-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.1rem;
    perspective: 1200px;
}

.category-panel {
    --panel-bg: linear-gradient(160deg, #fffdf9, #f3ebe0);
    --panel-border: var(--line);
    --panel-title: var(--ink);
    --panel-text: var(--ink-soft);
    --panel-meta: var(--gold-deep);
    --panel-glow: rgba(216, 188, 116, 0.28);
    --panel-shadow: rgba(70, 55, 30, 0.12);
    --panel-accent: rgba(216, 188, 116, 0.55);
    position: relative;
    overflow: hidden;
    grid-column: span 4;
    min-height: 250px;
    padding: 1.7rem 1.55rem 1.45rem;
    border: 1px solid var(--panel-border);
    background: var(--panel-bg);
    background-size: 140% 140%;
    color: var(--panel-title);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transform-style: preserve-3d;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s ease,
        border-color 0.35s ease,
        background-position 0.7s ease;
}

.category-panel-enter {
    opacity: 0;
    transform: translateY(42px) scale(0.94);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s ease,
        border-color 0.35s ease,
        background-position 0.7s ease;
    transition-delay: var(--delay, 0s);
}

.category-panel-enter.is-visible {
    opacity: 1;
    transform: none;
}

.category-panel.is-feature {
    grid-column: span 8;
    min-height: 340px;
}

.category-panel-photo,
.category-panel-photo-veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.category-panel-photo {
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.04);
    filter: saturate(0.92) brightness(1.08);
    opacity: 0.42;
    transition: transform 0.7s ease, opacity 0.45s ease, filter 0.45s ease;
    box-shadow: inset 0 0 60px rgba(42, 38, 34, 0.12);
}

.category-panel-photo-veil {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.55) 0%, rgba(255, 252, 247, 0.18) 38%, rgba(42, 38, 34, 0.28) 100%),
        linear-gradient(135deg, rgba(255, 248, 235, 0.35), transparent 55%);
}

.category-panel.has-image {
    border-color: rgba(154, 122, 53, 0.22);
    box-shadow: 0 16px 36px rgba(70, 55, 30, 0.14);
    --panel-title: #2a2622;
    --panel-text: #5d564d;
    --panel-meta: var(--gold-deep);
}

.category-panel.has-image .category-panel-copy,
.category-panel.has-image .category-panel-glow,
.category-panel.has-image .category-panel-shine,
.category-panel.has-image .category-panel-orb {
    z-index: 2;
}

.category-panel.has-image:hover {
    box-shadow: 0 22px 48px rgba(70, 55, 30, 0.2);
}

.category-panel.has-image:hover .category-panel-photo {
    transform: scale(1.1);
    opacity: 0.52;
    filter: saturate(1) brightness(1.1);
}

.category-panel.tone-0 {
    --panel-bg: linear-gradient(145deg, #d8bc74 0%, #b99445 48%, #8a6b2e 100%);
    --panel-border: transparent;
    --panel-title: #fffdf8;
    --panel-text: rgba(255, 252, 247, 0.88);
    --panel-meta: #fff4d4;
    --panel-glow: rgba(255, 252, 247, 0.28);
    --panel-shadow: rgba(154, 122, 53, 0.35);
    --panel-accent: rgba(255, 244, 212, 0.7);
}

.category-panel.tone-1 {
    --panel-bg: linear-gradient(145deg, #fff4eb 0%, #efd0b5 55%, #d9a57a 100%);
    --panel-border: rgba(176, 106, 58, 0.22);
    --panel-title: #6f3a1d;
    --panel-text: #8d5a3a;
    --panel-meta: #a05528;
    --panel-glow: rgba(176, 106, 58, 0.28);
    --panel-shadow: rgba(176, 106, 58, 0.22);
    --panel-accent: rgba(160, 85, 40, 0.45);
}

.category-panel.tone-2 {
    --panel-bg: linear-gradient(145deg, #eef7f1 0%, #cfe2d5 55%, #8fb49a 100%);
    --panel-border: rgba(74, 112, 86, 0.22);
    --panel-title: #244533;
    --panel-text: #4d6b58;
    --panel-meta: #2f5a40;
    --panel-glow: rgba(74, 112, 86, 0.25);
    --panel-shadow: rgba(74, 112, 86, 0.2);
    --panel-accent: rgba(47, 90, 64, 0.4);
}

.category-panel.tone-3 {
    --panel-bg: linear-gradient(145deg, #f6f0fb 0%, #dfcdef 55%, #b79cd0 100%);
    --panel-border: rgba(108, 74, 140, 0.22);
    --panel-title: #43275d;
    --panel-text: #6d5484;
    --panel-meta: #5b3a78;
    --panel-glow: rgba(108, 74, 140, 0.25);
    --panel-shadow: rgba(108, 74, 140, 0.2);
    --panel-accent: rgba(91, 58, 120, 0.4);
}

.category-panel.tone-4 {
    --panel-bg: linear-gradient(145deg, #eef5fb 0%, #cddff0 55%, #8fb0d2 100%);
    --panel-border: rgba(58, 96, 138, 0.22);
    --panel-title: #1f3b56;
    --panel-text: #4d6a86;
    --panel-meta: #2f567a;
    --panel-glow: rgba(58, 96, 138, 0.25);
    --panel-shadow: rgba(58, 96, 138, 0.2);
    --panel-accent: rgba(47, 86, 122, 0.4);
}

.category-panel.tone-5 {
    --panel-bg: linear-gradient(145deg, #fff5f4 0%, #f2d2cf 55%, #d99590 100%);
    --panel-border: rgba(158, 74, 74, 0.22);
    --panel-title: #6a2c2c;
    --panel-text: #8d5555;
    --panel-meta: #8a3d3d;
    --panel-glow: rgba(158, 74, 74, 0.25);
    --panel-shadow: rgba(158, 74, 74, 0.2);
    --panel-accent: rgba(138, 61, 61, 0.4);
}

.category-panel.tone-6 {
    --panel-bg: linear-gradient(145deg, #f3f8f8 0%, #cfe6e4 55%, #84b8b3 100%);
    --panel-border: rgba(55, 120, 114, 0.22);
    --panel-title: #1f4a46;
    --panel-text: #4d746f;
    --panel-meta: #2d6a64;
    --panel-glow: rgba(55, 120, 114, 0.25);
    --panel-shadow: rgba(55, 120, 114, 0.2);
    --panel-accent: rgba(45, 106, 100, 0.4);
}

.category-panel.tone-7 {
    --panel-bg: linear-gradient(145deg, #fbf6ee 0%, #ead7b8 55%, #c4a06a 100%);
    --panel-border: rgba(154, 122, 53, 0.25);
    --panel-title: #5a4520;
    --panel-text: #7d6842;
    --panel-meta: #8a6b2e;
    --panel-glow: rgba(196, 160, 106, 0.3);
    --panel-shadow: rgba(154, 122, 53, 0.22);
    --panel-accent: rgba(138, 107, 46, 0.45);
}

.category-panel-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    right: -70px;
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--panel-glow), transparent 70%);
    pointer-events: none;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.category-panel-orb {
    position: absolute;
    width: 120px;
    height: 120px;
    left: -36px;
    bottom: -42px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--panel-accent), transparent 72%);
    opacity: 0.45;
    pointer-events: none;
    animation: category-orb-float 5.5s ease-in-out infinite alternate;
}

.category-panel-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.34) 48%, transparent 68%);
    transform: translateX(-130%);
    pointer-events: none;
    transition: transform 0.85s ease;
}

.category-panel-mark {
    position: absolute;
    top: 1.15rem;
    left: 1.25rem;
    font-family: var(--font-display);
    font-size: 2.55rem;
    line-height: 1;
    opacity: 0.2;
    letter-spacing: 0.04em;
    color: var(--panel-title);
    transition: opacity 0.35s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-panel-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transform: translateY(8px);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-panel-copy h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    color: var(--panel-title);
    transition: letter-spacing 0.4s ease;
}

.category-panel.is-feature .category-panel-copy h2 {
    font-size: clamp(2rem, 3.4vw, 2.9rem);
}

.category-panel-copy p {
    margin: 0;
    max-width: 34rem;
    color: var(--panel-text);
    font-size: 0.95rem;
    line-height: 1.55;
    opacity: 0.95;
    transition: opacity 0.35s ease;
}

.category-panel-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.45rem;
    flex-wrap: wrap;
}

.category-panel-count {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--panel-meta);
}

.category-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid color-mix(in srgb, var(--panel-meta) 45%, transparent);
    background: color-mix(in srgb, #fff 18%, transparent);
    backdrop-filter: blur(4px);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--panel-meta);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.category-panel-cta i {
    font-style: normal;
    transition: transform 0.35s ease;
}

.category-panel:hover {
    transform: translateY(-12px) scale(1.015);
    box-shadow: 0 22px 48px var(--panel-shadow);
    background-position: 100% 40%;
}

.category-panel-enter.is-visible:hover {
    transform: translateY(-12px) scale(1.015);
}

.category-panel:hover .category-panel-glow {
    transform: scale(1.28) translate(-14px, 16px);
    opacity: 1;
}

.category-panel:hover .category-panel-shine {
    transform: translateX(130%);
}

.category-panel:hover .category-panel-mark {
    opacity: 0.34;
    transform: translateY(-4px) scale(1.05);
}

.category-panel:hover .category-panel-copy {
    transform: translateY(0);
}

.category-panel:hover .category-panel-copy h2 {
    letter-spacing: 0.01em;
}

.category-panel:hover .category-panel-cta {
    background: color-mix(in srgb, #fff 42%, transparent);
    border-color: color-mix(in srgb, var(--panel-meta) 70%, transparent);
    transform: translateX(2px);
}

.category-panel:hover .category-panel-cta i {
    transform: translateX(5px);
}

@keyframes category-orb-float {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(18px, -14px, 0) scale(1.12); }
}

@media (max-width: 960px) {
    .category-panel,
    .category-panel.is-feature {
        grid-column: span 6;
        min-height: 240px;
    }

    .category-panel.is-feature {
        min-height: 290px;
    }
}

@media (max-width: 640px) {
    .categories-page-body {
        padding: 1.75rem 0 3rem;
    }

    .categories-mosaic {
        gap: 0.9rem;
    }

    .category-panel,
    .category-panel.is-feature {
        grid-column: span 12;
        min-height: 220px;
        padding: 1.4rem 1.2rem 1.25rem;
    }

    .category-panel-mark {
        font-size: 2.1rem;
        top: 1rem;
        left: 1rem;
    }

    .category-panel:hover {
        transform: translateY(-6px) scale(1.01);
    }
}

@media (prefers-reduced-motion: reduce) {
    .categories-hero-line,
    .page-categories .categories-hero::after,
    .category-panel-orb,
    .category-panel-shine {
        animation: none !important;
    }

    .categories-hero-line,
    .category-panel-enter,
    .category-panel-enter.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .categories-hero-rule {
        width: min(180px, 42vw);
    }
}


/* Sections */
.section { padding: 4.75rem 0; }
.section-alt { background: var(--ivory-soft); border-block: 1px solid var(--line); }

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.2rem;
}

.section-head.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
}

.section-head a:not(.collections-link) {
    color: var(--gold-deep);
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
}

.section-head .collections-link {
    color: #fff;
    flex-shrink: 0;
    align-self: center;
}

.eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.65rem;
    font-weight: 600;
}

.muted { color: var(--muted); }

/* Promise row — new structure */
.promise-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.promise-item {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.promise-item .mark {
    width: 54px;
    height: 54px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 1px solid var(--gold-line);
    display: grid;
    place-items: center;
    color: var(--gold-deep);
    background: #fffaf0;
    box-shadow: 0 0 0 8px rgba(196, 163, 90, 0.08);
}

.promise-item .mark svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.promise-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.promise-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

/* Category mosaic — new structure */
.category-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    min-height: 420px;
}

.category-mosaic a {
    position: relative;
    overflow: hidden;
    background: var(--ivory-deep);
    border: 1px solid var(--gold-line);
    display: flex;
    align-items: end;
    padding: 1.4rem;
    min-height: 180px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-mosaic a:first-child {
    grid-row: 1 / span 2;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(255,252,247,0.15), rgba(42,38,34,0.45)),
        url("../images/hero-sip-style.png") center/cover;
    color: #fff;
}

.category-mosaic a:first-child h3,
.category-mosaic a:first-child span { color: #fff; }

.category-mosaic a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.category-mosaic h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.category-mosaic span {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.category-tile {
    padding: 1.5rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    transition: 0.25s ease;
}

.category-tile:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.category-tile h3 { font-size: 1.25rem; }
.category-tile span {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Explore collections — animated showcase */
.collections-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 20%, rgba(216, 188, 116, 0.14), transparent 34%),
        radial-gradient(circle at 92% 70%, rgba(243, 235, 224, 0.85), transparent 40%),
        var(--ivory);
}

.collections-showcase::before {
    content: "";
    position: absolute;
    inset: auto -10% -20% auto;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(196, 163, 90, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.collections-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 2.4rem;
}

.collections-head h2 {
    font-size: clamp(2rem, 3.6vw, 3rem);
    margin: 0 0 0.55rem;
}

.collections-head h2 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--gold-deep);
    font-size: 1.12em;
}

.collections-lead {
    margin: 0;
    max-width: 28rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.collections-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--gold);
    border-radius: 0;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #fff !important;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(154, 122, 53, 0.28);
    transition: gap 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.collections-link svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.25s ease;
}

.collections-link:hover {
    gap: 0.75rem;
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 14px 30px rgba(154, 122, 53, 0.36);
    color: #fff;
}

.collections-link:hover svg {
    transform: translateX(3px);
}

.collections-mosaic {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(190px, 1fr));
    gap: 1rem;
    min-height: 420px;
}

.collection-card {
    --tone-bg: linear-gradient(160deg, #fffdf9 0%, #f7efe3 100%);
    --tone-swap: linear-gradient(145deg, #9a7a35, #7d6228);
    --tone-border: var(--gold-line);
    --tone-title: #2a2622;
    --tone-accent: #9a7a35;
    --tone-muted: #8f8578;
    --tone-glow: rgba(216, 188, 116, 0.3);
    --tone-shadow: rgba(154, 122, 53, 0.22);
    --tone-on-swap: #fffdf8;

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 190px;
    padding: 1.35rem 1.3rem 1.25rem;
    overflow: hidden;
    border: 1px solid var(--tone-border);
    background: var(--tone-bg);
    color: var(--tone-title);
    isolation: isolate;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.45s ease;
}

/* Unique color for every category */
.collection-card.tone-0 {
    --tone-bg: linear-gradient(155deg, #d8bc74 0%, #9a7a35 58%, #7d6228 100%);
    --tone-swap: linear-gradient(155deg, #2a2622 0%, #4a3b28 100%);
    --tone-border: transparent;
    --tone-title: #fffdf8;
    --tone-accent: #fff4d4;
    --tone-muted: rgba(255, 252, 247, 0.82);
    --tone-glow: rgba(255, 252, 247, 0.28);
    --tone-shadow: rgba(154, 122, 53, 0.38);
    --tone-on-swap: #fffdf8;
}

.collection-card.tone-1 {
    --tone-bg: linear-gradient(160deg, #fff8f1 0%, #f0d9c4 100%);
    --tone-swap: linear-gradient(145deg, #b06a3a, #7a3f1d);
    --tone-border: rgba(176, 106, 58, 0.28);
    --tone-title: #7a3f1d;
    --tone-accent: #b06a3a;
    --tone-muted: #a07155;
    --tone-glow: rgba(176, 106, 58, 0.28);
    --tone-shadow: rgba(176, 106, 58, 0.22);
}

.collection-card.tone-2 {
    --tone-bg: linear-gradient(160deg, #f4f8f5 0%, #d7e5db 100%);
    --tone-swap: linear-gradient(145deg, #4a7056, #2f4a38);
    --tone-border: rgba(74, 112, 86, 0.28);
    --tone-title: #2f4a38;
    --tone-accent: #4a7056;
    --tone-muted: #6a8472;
    --tone-glow: rgba(74, 112, 86, 0.25);
    --tone-shadow: rgba(74, 112, 86, 0.2);
}

.collection-card.tone-3 {
    --tone-bg: linear-gradient(160deg, #f7f3fb 0%, #e2d4ef 100%);
    --tone-swap: linear-gradient(145deg, #6c4a8c, #4b2f66);
    --tone-border: rgba(108, 74, 140, 0.25);
    --tone-title: #4b2f66;
    --tone-accent: #6c4a8c;
    --tone-muted: #7d6a90;
    --tone-glow: rgba(108, 74, 140, 0.25);
    --tone-shadow: rgba(108, 74, 140, 0.2);
}

.collection-card.tone-4 {
    --tone-bg: linear-gradient(160deg, #f3f7fb 0%, #d5e4f2 100%);
    --tone-swap: linear-gradient(145deg, #3a608a, #243f5c);
    --tone-border: rgba(58, 96, 138, 0.28);
    --tone-title: #243f5c;
    --tone-accent: #3a608a;
    --tone-muted: #6a8096;
    --tone-glow: rgba(58, 96, 138, 0.25);
    --tone-shadow: rgba(58, 96, 138, 0.2);
}

.collection-card.tone-5 {
    --tone-bg: linear-gradient(160deg, #fff6f5 0%, #f2d0cd 100%);
    --tone-swap: linear-gradient(145deg, #9e4a4a, #6e2f2f);
    --tone-border: rgba(158, 74, 74, 0.28);
    --tone-title: #6e2f2f;
    --tone-accent: #9e4a4a;
    --tone-muted: #9a6d6d;
    --tone-glow: rgba(158, 74, 74, 0.25);
    --tone-shadow: rgba(158, 74, 74, 0.2);
}

.collection-card.is-feature {
    grid-row: 1 / span 2;
    min-height: 100%;
    padding: 1.8rem 1.6rem 1.5rem;
}

.collection-photo,
.collection-photo-veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.collection-photo {
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.05);
    filter: saturate(0.9) brightness(1.1);
    opacity: 0.4;
    transition: transform 0.65s ease, opacity 0.4s ease, filter 0.4s ease;
    box-shadow: inset 0 0 48px rgba(42, 38, 34, 0.12);
}

.collection-photo-veil {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.58) 0%, rgba(255, 252, 247, 0.2) 40%, rgba(42, 38, 34, 0.3) 100%);
}

.collection-card.has-image {
    border-color: rgba(154, 122, 53, 0.22);
    box-shadow: 0 14px 32px rgba(70, 55, 30, 0.12);
    --tone-title: #2a2622;
    --tone-muted: #6b635a;
    --tone-accent: var(--gold-deep);
    --tone-on-swap: #2a2622;
}

.collection-card.has-image .collection-copy,
.collection-card.has-image .collection-cta,
.collection-card.has-image .collection-swap,
.collection-card.has-image .collection-shine,
.collection-card.has-image .collection-glow {
    z-index: 2;
}

.collection-card.has-image .collection-swap {
    opacity: 0;
}

.collection-card.has-image:hover {
    box-shadow: 0 20px 44px rgba(70, 55, 30, 0.18);
}

.collection-card.has-image:hover .collection-photo {
    transform: scale(1.1);
    opacity: 0.5;
    filter: saturate(1) brightness(1.08);
}

.collection-card.has-image:hover .collection-copy h3,
.collection-card.has-image:hover .collection-copy p,
.collection-card.has-image:hover .collection-cta {
    color: #2a2622;
}

.collection-swap {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--tone-swap);
    transform: translateY(101%);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.collection-shine {
    position: absolute;
    top: 0;
    left: -40%;
    z-index: 1;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: skewX(-18deg) translateX(-120%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.collection-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    right: -40px;
    top: -40px;
    z-index: 1;
    border-radius: 50%;
    background: radial-gradient(circle, var(--tone-glow), transparent 68%);
    transform: scale(0.7);
    opacity: 0.65;
    transition: transform 0.55s ease, opacity 0.55s ease;
    pointer-events: none;
}

.collection-copy,
.collection-cta {
    position: relative;
    z-index: 2;
}

.collection-copy h3 {
    font-family: "Playfair Display", var(--font-display), Georgia, serif;
    font-size: clamp(1.55rem, 2.3vw, 2.15rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0 0 0.4rem;
    color: var(--tone-title);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s ease;
}

.collection-card.is-feature .collection-copy h3 {
    font-size: clamp(1.9rem, 2.8vw, 2.7rem);
}

.collection-copy p {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--tone-muted);
    transition: color 0.35s ease, transform 0.45s ease;
}

.collection-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--tone-accent);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.35s ease;
}

.collection-cta i {
    font-style: normal;
    transition: transform 0.35s ease;
}

.collection-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: transparent;
    box-shadow: 0 18px 40px var(--tone-shadow);
}

.collection-card:hover .collection-swap {
    transform: translateY(0);
}

.collection-card:hover .collection-shine {
    transform: skewX(-18deg) translateX(280%);
}

.collection-card:hover .collection-glow {
    transform: scale(1.2);
    opacity: 1;
}

.collection-card:hover .collection-copy h3 {
    color: var(--tone-on-swap);
    transform: translateY(-4px);
}

.collection-card:hover .collection-copy p {
    color: rgba(255, 252, 247, 0.82);
    transform: translateY(-2px);
}

.collection-card:hover .collection-cta {
    opacity: 1;
    color: var(--tone-on-swap);
    transform: translateY(0);
}

.collection-card:hover .collection-cta i {
    transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
    .collection-swap,
    .collection-shine {
        transition: none;
    }
}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-zoom {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-zoom { transform: scale(0.92); }

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible {
    opacity: 1;
    transform: none;
}

/* Home motion extras */
.page-home .royal-story-media {
    transform: translateY(var(--parallax, 0px));
    transition: transform 0.2s linear;
}

.page-home .royal-story-copy [data-stagger],
.page-home .collections-head [data-stagger],
.page-home .section-head [data-stagger] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--stagger, 0s);
}

.page-home .royal-story-copy [data-stagger].is-visible,
.page-home .collections-head [data-stagger].is-visible,
.page-home .section-head [data-stagger].is-visible {
    opacity: 1;
    transform: none;
}

.page-home .collection-card.reveal-up {
    transform: translateY(48px) scale(0.96);
}

.page-home .collection-card.reveal-up.is-visible {
    transform: none;
}

.page-home .script-accent {
    background: linear-gradient(120deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gold-shimmer 4.5s ease-in-out infinite;
}

.page-home .home-bulk-panel.is-visible {
    animation: contact-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.whatsapp-float {
    animation: wa-pulse 2.6s ease-in-out infinite;
}

.whatsapp-float:hover {
    animation: none;
}

@keyframes gold-shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@keyframes contact-rise {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes phone-glow {
    0%, 100% { letter-spacing: 0.02em; }
    50% { letter-spacing: 0.045em; }
}

@keyframes wa-pulse {
    0%, 100% {
        box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 14px 34px rgba(37, 211, 102, 0.58);
        transform: translateY(-3px);
    }
}

.hero-slide-content [data-hero-line] {
    opacity: 0;
    transform: translateY(22px);
}

.hero-slide.is-active .hero-slide-content [data-hero-line] {
    animation: hero-line-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: var(--hero-delay, 0s);
}

@keyframes hero-line-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Royal light box — after Selected pieces */
.royal-light-section {
    padding-top: 1.5rem;
    background: linear-gradient(180deg, var(--ivory-soft) 0%, var(--ivory) 100%);
}

.home-bulk-section {
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
}

.home-bulk-panel {
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(154, 122, 53, 0.45);
    box-shadow: var(--shadow-gold);
    background:
        linear-gradient(90deg, var(--gold-deep) 0 5px, transparent 5px),
        radial-gradient(ellipse 70% 90% at 100% 0%, rgba(216, 188, 116, 0.32), transparent 55%),
        radial-gradient(ellipse 55% 70% at 0% 100%, rgba(154, 122, 53, 0.14), transparent 50%),
        linear-gradient(160deg, #fffdf8 0%, #f4e8d0 52%, #ebd9b4 100%);
}

.home-bulk-panel-glow {
    position: absolute;
    inset: auto -12% -40% auto;
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 163, 90, 0.26), transparent 68%);
    pointer-events: none;
}

.home-bulk-ribbon {
    position: absolute;
    top: 1.1rem;
    right: 0;
    z-index: 2;
    padding: 0.45rem 1.15rem 0.45rem 1rem;
    background: var(--gold-deep);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: -4px 6px 18px rgba(90, 65, 20, 0.18);
}

.home-bulk-ribbon::before {
    content: "";
    position: absolute;
    left: -0.55rem;
    top: 0;
    bottom: 0;
    width: 0.55rem;
    background: inherit;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.home-bulk-box {
    position: relative;
    z-index: 1;
    margin: clamp(1.15rem, 2.8vw, 1.65rem);
    padding: clamp(1.25rem, 2.8vw, 1.85rem);
    padding-right: clamp(1.25rem, 8vw, 7rem);
    border: 1px solid rgba(154, 122, 53, 0.35);
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 236, 214, 0.95));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.home-bulk-box .eyebrow {
    margin: 0 0 0.55rem;
}

.home-bulk-box h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 3.2vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
}

.home-bulk-lead {
    margin: 0 0 1.05rem;
    max-width: 40rem;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.55;
    color: var(--ink-soft);
}

.home-bulk-points {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 1.25rem;
}

.home-bulk-points li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--ink);
}

.home-bulk-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.4rem;
    height: 0.4rem;
    background: var(--gold);
}

.home-bulk-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.15rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(154, 122, 53, 0.22);
}

.home-bulk-cta-note {
    margin: 0;
    flex: 1 1 14rem;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--ink-soft);
}

.home-bulk-cta-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    background: var(--gold-deep);
    border-color: var(--gold-deep);
    color: #fff;
}

.home-bulk-cta-btn:hover {
    background: #84662c;
    border-color: #84662c;
    color: #fff;
    box-shadow: 0 12px 30px rgba(154, 122, 53, 0.28);
}

@media (max-width: 860px) {
    .home-bulk-ribbon {
        top: 0.85rem;
        font-size: 0.64rem;
        padding: 0.4rem 0.95rem 0.4rem 0.85rem;
    }

    .home-bulk-box {
        padding-right: clamp(1.15rem, 2.8vw, 1.5rem);
    }
}

@media (max-width: 560px) {
    .home-bulk-section {
        padding-top: 2.25rem;
        padding-bottom: 2.75rem;
    }

    .home-bulk-panel {
        display: flex;
        flex-direction: column;
        border-width: 1.5px;
    }

    .home-bulk-box {
        margin: 1rem;
        padding: 1.15rem;
    }

    .home-bulk-points {
        flex-direction: column;
        gap: 0.45rem;
    }

    .home-bulk-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-bulk-cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .home-bulk-ribbon {
        position: static;
        display: inline-block;
        margin: 1rem 1rem 0;
        align-self: flex-start;
    }

    .home-bulk-ribbon::before {
        display: none;
    }
}

body.bulk-quote-open {
    overflow: hidden;
}

.bulk-quote-modal[hidden] {
    display: none !important;
}

.bulk-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.bulk-quote-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 38, 34, 0.48);
    backdrop-filter: blur(2px);
}

.bulk-quote-dialog {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: none;
    overflow: visible;
    padding: 1.15rem 1.25rem 1.25rem;
    border: 1px solid rgba(154, 122, 53, 0.35);
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(247, 236, 214, 0.96));
    box-shadow: var(--shadow-gold);
}

.bulk-quote-close {
    position: absolute;
    top: 0.5rem;
    right: 0.55rem;
    width: 1.9rem;
    height: 1.9rem;
    border: 1px solid var(--gold-line);
    background: rgba(255, 252, 247, 0.9);
    color: var(--ink);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.bulk-quote-close:hover {
    border-color: var(--gold);
    color: var(--gold-deep);
}

.bulk-quote-dialog .eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.65rem;
}

.bulk-quote-dialog h2 {
    margin: 0 0 0.25rem;
    font-size: clamp(1.35rem, 2.6vw, 1.7rem);
    line-height: 1.15;
    padding-right: 1.75rem;
}

.bulk-quote-intro {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    line-height: 1.35;
}

.bulk-quote-dialog .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.bulk-quote-dialog .form-group {
    margin-bottom: 0.6rem;
}

.bulk-quote-dialog label {
    margin-bottom: 0.25rem;
    font-size: 0.64rem;
    color: var(--gold-deep);
}

.bulk-quote-dialog input,
.bulk-quote-dialog textarea {
    width: 100%;
    border: 1px solid var(--gold-line);
    background: #fffdf9;
    color: var(--ink);
    padding: 0.55rem 0.7rem;
    font: inherit;
    font-size: 0.92rem;
    line-height: 1.3;
}

.bulk-quote-select {
    position: relative;
}

.bulk-quote-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 2.45rem;
    padding: 0.55rem 2.2rem 0.55rem 0.7rem;
    border: 1px solid var(--gold-line);
    background-color: #fffdf9;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%),
        linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%),
        linear-gradient(to right, rgba(196, 163, 90, 0.18), rgba(196, 163, 90, 0.18));
    background-position:
        calc(100% - 14px) calc(50% - 2px),
        calc(100% - 9px) calc(50% - 2px),
        100% 0;
    background-size:
        5px 5px,
        5px 5px,
        2rem 100%;
    background-repeat: no-repeat;
    color: var(--ink);
    font: inherit;
    font-size: 0.92rem;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
}

.bulk-quote-select-trigger.is-placeholder {
    color: var(--ink-soft);
}

.bulk-quote-select-trigger:hover:not(:disabled) {
    border-color: var(--gold);
    background-color: #fff8ec;
}

.bulk-quote-select.is-open .bulk-quote-select-trigger {
    border-color: var(--gold);
    outline: 2px solid rgba(196, 163, 90, 0.25);
    background-color: #fff8ec;
}

.bulk-quote-select.is-disabled .bulk-quote-select-trigger,
.bulk-quote-select-trigger:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    color: var(--ink-soft);
    background-color: rgba(247, 236, 214, 0.75);
}

.bulk-quote-select-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 5;
    margin: 0;
    padding: 0.3rem;
    list-style: none;
    max-height: 11.5rem;
    overflow-y: auto;
    border: 1px solid rgba(154, 122, 53, 0.4);
    background: linear-gradient(180deg, #fffdf9, #f7ecd6);
    box-shadow: var(--shadow-gold);
}

.bulk-quote-select-menu[hidden] {
    display: none !important;
}

.bulk-quote-select-menu [role="option"] {
    padding: 0.55rem 0.7rem;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.3;
}

.bulk-quote-select-menu [role="option"]:hover,
.bulk-quote-select-menu [role="option"]:focus {
    outline: none;
    background: rgba(196, 163, 90, 0.22);
    color: var(--gold-deep);
}

.bulk-quote-select-menu [role="option"].is-selected {
    background: rgba(154, 122, 53, 0.2);
    color: var(--gold-deep);
    font-weight: 600;
}

.bulk-quote-dialog textarea {
    min-height: calc(2.4em + 1.1rem + 5px);
    height: calc(2.4em + 1.1rem + 5px);
    resize: none;
}

.bulk-quote-dialog input:focus,
.bulk-quote-dialog textarea:focus {
    outline: 2px solid rgba(196, 163, 90, 0.25);
    border-color: var(--gold);
}

.bulk-quote-qty {
    display: grid;
    grid-template-columns: 2.4rem 1fr 2.4rem;
    align-items: stretch;
    width: 100%;
    border: 1px solid var(--gold-line);
    background: rgba(196, 163, 90, 0.1);
    overflow: hidden;
}

.bulk-quote-qty input {
    width: 100%;
    min-width: 0;
    border: 0;
    border-left: 1px solid var(--gold-line);
    border-right: 1px solid var(--gold-line);
    border-radius: 0;
    text-align: center;
    padding: 0.55rem 0.25rem;
    background: rgba(255, 252, 247, 0.92);
    color: var(--ink);
    -moz-appearance: textfield;
    appearance: textfield;
}

.bulk-quote-qty input::-webkit-outer-spin-button,
.bulk-quote-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bulk-quote-qty-btn {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: rgba(196, 163, 90, 0.18);
    color: var(--gold-deep);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
}

.bulk-quote-qty-btn:hover {
    background: rgba(196, 163, 90, 0.3);
    color: var(--ink);
}

.bulk-quote-error,
.bulk-quote-form-error {
    display: block;
    margin-top: 0.2rem;
    color: #8c3228;
    font-size: 0.75rem;
}

.bulk-quote-submit {
    width: 100%;
    margin-top: 0.15rem;
    justify-content: center;
    padding: 0.7rem 1rem;
}

.bulk-quote-success-view h2 {
    margin-bottom: 0.5rem;
}

.bulk-quote-success-view .muted {
    margin: 0 0 0.9rem;
}

body.thanks-modal-open {
    overflow: hidden;
}

.thanks-modal .thanks-dialog {
    width: min(440px, 100%);
    text-align: center;
    padding: 1.6rem 1.4rem 1.45rem;
}

.thanks-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thanks-modal-mark {
    width: 3.4rem;
    height: 3.4rem;
    margin: 0.15rem 0 0.85rem;
    color: var(--gold-deep, #8a6a2f);
}

.thanks-modal-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}

.thanks-modal .eyebrow {
    letter-spacing: 0.14em;
}

.thanks-modal h2 {
    padding-right: 0;
    margin-bottom: 0.45rem;
}

.thanks-modal-message {
    margin: 0 0 1.15rem;
    max-width: 30ch;
    line-height: 1.45;
    font-size: 0.95rem;
}

.thanks-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
    width: 100%;
}

.thanks-modal-actions .btn {
    min-width: 8.5rem;
    justify-content: center;
}

@media (max-width: 640px) {
    .bulk-quote-modal {
        padding: 0.55rem;
        align-items: flex-start;
        padding-top: 0.75rem;
    }

    .bulk-quote-dialog {
        padding: 1rem 0.95rem 1.05rem;
    }

    .bulk-quote-dialog .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .bulk-quote-intro {
        margin-bottom: 0.55rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 420px) {
    .bulk-quote-dialog .form-row {
        grid-template-columns: 1fr;
    }
}

.workshop-home-section {
    padding-bottom: 1rem;
}

.workshop-home-carousel {
    position: relative;
    padding: 0.25rem 0 0;
}

.workshop-home-viewport {
    overflow: hidden;
    margin-inline: -0.35rem;
    padding: 0.35rem;
}

.workshop-home-track {
    display: flex;
    gap: 1rem;
    will-change: transform;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.workshop-home-slide {
    flex: 0 0 calc((100% - 2rem) / 3);
    min-width: 0;
    opacity: 0.62;
    transform: scale(0.94);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.workshop-home-slide.is-center {
    position: relative;
    z-index: 1;
    opacity: 1;
    transform: scale(1.03);
}

.workshop-home-slide.is-center .workshop-shot {
    border-color: rgba(196, 163, 90, 0.72);
    box-shadow: 0 17px 34px rgba(154, 122, 53, 0.2);
}

.workshop-home-slide .workshop-shot {
    height: 100%;
    box-shadow: 0 10px 25px rgba(70, 55, 30, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.workshop-home-slide .workshop-shot:hover {
    transform: translateY(-5px);
    box-shadow: 0 17px 32px rgba(154, 122, 53, 0.18);
}

.workshop-home-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.workshop-home-arrow {
    display: inline-grid;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: 1px solid var(--gold-line);
    border-radius: 50%;
    background: var(--white);
    color: var(--gold-deep);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.workshop-home-arrow svg {
    width: 1rem;
    height: 1rem;
}

.workshop-home-arrow:hover {
    transform: scale(1.08);
    background: var(--ivory-soft);
    box-shadow: var(--shadow-gold);
}

.workshop-home-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.workshop-home-dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
}

.workshop-home-dot.is-active {
    width: 1.35rem;
    border-radius: 999px;
    background: var(--gold);
}

.workshop-home-grid,
.workshop-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.workshop-gallery-head {
    margin: 2rem 0 1rem;
}

.workshop-gallery-head h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.45rem, 2.6vw, 1.9rem);
}

.workshop-gallery-head .muted {
    margin: 0;
}

.workshop-featured-video {
    margin: 2rem 0 0.5rem;
}

.workshop-featured-video h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.45rem, 2.6vw, 1.9rem);
}

.workshop-video-frame {
    border: 1px solid var(--gold-line);
    background: #111;
    overflow: hidden;
}

.workshop-brand-video {
    display: block;
    width: 100%;
    max-height: min(70vh, 560px);
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #000;
}

.workshop-shot {
    margin: 0;
    position: relative;
    overflow: hidden;
    background: var(--ivory-soft);
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
}

.workshop-shot.is-video {
    background: #111;
}

.workshop-shot img,
.workshop-shot video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.workshop-shot video {
    object-fit: contain;
    background: #000;
}

.workshop-shot:hover img {
    transform: scale(1.05);
}

.workshop-shot figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.85rem 0.9rem;
    background: linear-gradient(transparent, rgba(28, 23, 20, 0.72));
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.workshop-shot figcaption strong {
    font-size: 0.92rem;
}

.workshop-shot figcaption span {
    font-size: 0.78rem;
    opacity: 0.88;
}

.workshop-home-slide .workshop-shot {
    aspect-ratio: 1 / 1;
    background:
        linear-gradient(145deg, #fffdf8, #f2e8d7);
}

.workshop-home-slide .workshop-shot img {
    padding: 0;
    object-fit: cover;
    object-position: center;
    background: transparent;
}

.workshop-home-slide .workshop-shot:hover img {
    transform: none;
}

.workshop-bulk-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 1.75rem;
    border: 1px solid var(--gold-line);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(247, 239, 227, 0.96)),
        var(--ivory-soft);
}

.workshop-bulk-banner h2 {
    margin: 0.15rem 0 0.4rem;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.workshop-bulk-banner .muted {
    margin: 0;
    max-width: 36rem;
}

.workshop-bulk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

@media (max-width: 900px) {
    .workshop-home-grid,
    .workshop-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .workshop-home-slide {
        flex-basis: calc((100% - 1rem) / 2);
    }
    .workshop-home-slide {
        opacity: 0.78;
        transform: scale(0.97);
    }
    .workshop-home-slide.is-center {
        transform: scale(1.01);
    }
}

@media (max-width: 560px) {
    .workshop-home-grid,
    .workshop-gallery {
        grid-template-columns: 1fr;
    }
    .workshop-home-slide {
        flex-basis: 100%;
        opacity: 1;
        transform: none;
    }
}

.royal-light-box {
    position: relative;
    min-height: min(52vh, 420px);
    overflow: hidden;
    border: 1px solid var(--gold-line);
    background: #f7efe3;
    box-shadow: var(--shadow-gold);
    display: grid;
    place-items: center;
    text-align: center;
}

.royal-light-media {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 252, 247, 0.75), transparent 42%),
        linear-gradient(135deg, #fff9f0, #f0e2cf 45%, #e8d5b5);
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: royal-light-drift 14s ease-in-out infinite alternate;
}

.royal-light-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.55) 0%, rgba(255, 252, 247, 0.72) 45%, rgba(255, 252, 247, 0.88) 100%),
        radial-gradient(circle at 50% 40%, rgba(216, 188, 116, 0.18), transparent 55%);
}

.royal-light-media {
    background-position: center;
    transform: scale(1.02);
}

.royal-light-veil {
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.14) 0%, rgba(255, 252, 247, 0.24) 48%, rgba(255, 252, 247, 0.62) 100%),
        radial-gradient(circle at 50% 42%, rgba(255, 252, 247, 0.28), transparent 58%);
}

.royal-light-ornament {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(196, 163, 90, 0.35);
    pointer-events: none;
    animation: royal-frame-glow 5s ease-in-out infinite alternate;
}

.royal-light-ornament::before,
.royal-light-ornament::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--gold);
}

.royal-light-ornament::before {
    top: -1px;
    left: -1px;
    border-right: 0;
    border-bottom: 0;
}

.royal-light-ornament::after {
    right: -1px;
    bottom: -1px;
    border-left: 0;
    border-top: 0;
}

.royal-light-copy {
    position: relative;
    z-index: 2;
    max-width: 34rem;
    padding: 3rem 1.5rem;
}

.royal-light-copy .eyebrow {
    color: var(--gold-deep);
}

.royal-light-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 0.85rem;
    color: var(--ink);
}

.royal-light-copy h2 em {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--gold-deep);
    font-size: 1.15em;
}

.royal-light-product-name {
    margin: 0 auto 0.65rem !important;
    color: var(--gold-deep) !important;
    font-family: var(--font-display);
    font-size: 1.15rem !important;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.royal-light-copy > p {
    margin: 0 auto 1.4rem;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 28rem;
}

.royal-light-copy .btn {
    animation: royal-cta-float 3.2s ease-in-out infinite;
}

@keyframes royal-light-drift {
    from { transform: scale(1.05) translate3d(0, 0, 0); }
    to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@keyframes royal-frame-glow {
    from { box-shadow: inset 0 0 0 rgba(216, 188, 116, 0); }
    to { box-shadow: inset 0 0 40px rgba(216, 188, 116, 0.12); }
}

@keyframes royal-cta-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
    .royal-light-media,
    .royal-light-ornament,
    .royal-light-copy .btn {
        animation: none;
    }
}

/* Page-turn reveal for Selected pieces */
.featured-turn-grid {
    perspective: 1400px;
}

.page-turn {
    opacity: 0;
    transform-style: preserve-3d;
    transition: opacity 0.2s ease;
    transition-delay: var(--delay, 0s);
}

.page-turn-inner {
    height: 100%;
    transform-origin: left center;
    transform: rotateY(-92deg) translateX(-12px);
    backface-visibility: hidden;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition:
        transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 1.05s ease;
    transition-delay: var(--delay, 0s);
}

.page-turn.is-visible {
    opacity: 1;
}

.page-turn.is-visible .page-turn-inner {
    transform: none;
    backface-visibility: visible;
    transform-style: flat;
    box-shadow: 0 14px 34px rgba(70, 55, 30, 0.12);
}

.page-turn .product-card {
    transform-style: preserve-3d;
}

.page-turn.is-visible .product-card {
    transform-style: flat;
}

.page-turn.is-visible .product-card:hover {
    transform: translateY(-6px);
}

.featured-showcase .product-media,
.featured-showcase .product-meta a,
.featured-showcase .card-cta {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.script-accent {
    font-family: var(--font-script);
    font-style: normal;
    color: var(--gold-deep);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-zoom,
    .page-turn,
    .page-turn-inner {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .collection-card,
    .collection-card:hover,
    .product-card:hover,
    .page-turn.is-visible .product-card:hover {
        transform: none;
    }
    .announcement,
    .royal-video-play,
    .page-home .script-accent,
    .whatsapp-float,
    .hero-slide.is-active,
    .hero-slide.is-leaving-next,
    .hero-slide.is-leaving-prev,
    .hero-slide.is-active .hero-slide-content [data-hero-line],
    .hero-slide.is-active .hero-slide-media img,
    .hero-slide.is-active .hero-slide-veil::after,
    .home-marquee-track {
        animation: none;
    }
    .workshop-home-track {
        transition: none;
    }
    .home-scroll-progress span {
        transition: none;
    }
    .workshop-home-slide,
    .workshop-home-slide.is-center {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .hero-slide,
    .hero-slide.is-active {
        clip-path: none;
        transform: none;
        transition: none;
    }
    .hero-slide-media img,
    .hero-slide.is-active .hero-slide-media img {
        transform: none;
        filter: none;
    }
    .page-home .royal-story-media {
        transform: none;
    }
    .page-home .royal-story-copy [data-stagger],
    .page-home .collections-head [data-stagger],
    .page-home .section-head [data-stagger],
    .hero-slide-content [data-hero-line] {
        opacity: 1;
        transform: none;
    }
    .royal-story-tags span,
    .card-cta {
        opacity: 1;
        transform: none;
    }
    .royal-story-rule { width: 52px; }
    .royal-story-lead .lead-line {
        background-position: 0% 0;
        color: var(--ink);
        -webkit-text-fill-color: var(--ink);
    }
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-grid.four { grid-template-columns: repeat(4, 1fr); }

.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 0.75rem 0.75rem 1.1rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    height: 100%;
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-8px);
}

.product-media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    overflow: hidden;
    background: var(--ivory-soft);
    box-sizing: border-box;
    display: block;
}

.product-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28) 48%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
    pointer-events: none;
    z-index: 1;
}

.product-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-media img { transform: scale(1.05); }
.product-card:hover .product-media::after { transform: translateX(120%); }

.badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.3rem 0.55rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--gold-deep);
    border: 1px solid var(--gold-line);
    font-weight: 600;
    z-index: 2;
}

.product-meta {
    padding: 0.15rem 0.15rem 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    gap: 0.35rem;
    min-height: 0;
}

.product-meta h3 {
    font-size: 1.2rem;
    color: var(--ink);
    margin: 0;
}

.product-meta h3 a {
    color: inherit;
    transition: color 0.25s ease;
}

.product-meta h3 a:hover {
    color: var(--gold-deep);
}

.product-meta .gold-tag {
    margin-top: 0.15rem;
    margin-bottom: 0.35rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gold-deep);
}

.price .old {
    font-weight: 400;
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.88rem;
}

.gold-tag {
    display: inline-block;
    margin-top: 0.3rem;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

/* Royal story — video + text (Clayart-inspired) */
.royal-story-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(216, 188, 116, 0.16), transparent 36%),
        radial-gradient(circle at 88% 80%, rgba(243, 235, 224, 0.9), transparent 40%),
        linear-gradient(180deg, #fffdf9 0%, var(--ivory-soft) 100%);
    border-block: 1px solid var(--gold-line);
}

.royal-story {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
}

.royal-story-media { min-width: 0; }

.royal-video-frame {
    position: relative;
    padding: 0.85rem;
    background:
        linear-gradient(145deg, #fffdf9, #f4ebe0);
    border: 1px solid var(--gold-line);
    box-shadow: var(--shadow-gold);
}

.royal-video-frame::before {
    content: "";
    position: absolute;
    inset: 0.35rem;
    border: 1px solid rgba(196, 163, 90, 0.35);
    pointer-events: none;
    z-index: 2;
}

.royal-video-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    z-index: 3;
    border: 1.5px solid var(--gold);
}

.royal-video-corner.tl { top: 0.45rem; left: 0.45rem; border-right: 0; border-bottom: 0; }
.royal-video-corner.tr { top: 0.45rem; right: 0.45rem; border-left: 0; border-bottom: 0; }
.royal-video-corner.bl { bottom: 0.45rem; left: 0.45rem; border-right: 0; border-top: 0; }
.royal-video-corner.br { bottom: 0.45rem; right: 0.45rem; border-left: 0; border-top: 0; }

.royal-video,
.royal-video-embed,
.royal-video-stage {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #1c1714;
    object-fit: cover;
    overflow: hidden;
}

.royal-video-stage {
    background:
        linear-gradient(145deg, rgba(42, 38, 34, 0.35), rgba(42, 38, 34, 0.72)),
        radial-gradient(circle at 30% 30%, rgba(216, 188, 116, 0.35), transparent 42%),
        linear-gradient(160deg, #3a3229, #1c1714 55%, #2a2218);
    display: grid;
    place-items: center;
}

.royal-video-stage-glow {
    position: absolute;
    inset: 18% 22%;
    border: 1px solid rgba(216, 188, 116, 0.35);
    box-shadow: inset 0 0 40px rgba(216, 188, 116, 0.12);
    pointer-events: none;
}

.royal-video-play {
    position: relative;
    z-index: 2;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    animation: play-pulse 2.4s ease-in-out infinite;
}

.royal-video-play:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 36px rgba(154, 122, 53, 0.35);
    animation: none;
}

@keyframes play-pulse {
    0%, 100% { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(216, 188, 116, 0.45); }
    50% { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28), 0 0 0 14px rgba(216, 188, 116, 0); }
}

.royal-video-play span {
    display: block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
}

.royal-video-caption {
    position: absolute;
    left: 1rem;
    bottom: 0.9rem;
    z-index: 2;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 252, 247, 0.85);
}

.royal-video-stage.is-playing .royal-video-stage-glow,
.royal-video-stage.is-playing .royal-video-caption {
    display: none;
}

.royal-video-stage .royal-video-embed {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    height: 100%;
}

.royal-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.royal-story-copy {
    max-width: 34rem;
}

.royal-story-copy .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    margin-bottom: 0.75rem;
}

.royal-story-copy h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    line-height: 1.15;
    margin: 0 0 0.9rem;
    letter-spacing: 0.01em;
}

.royal-story-copy h2 em {
    font-style: normal;
    font-family: var(--font-script);
    font-size: 1.15em;
    color: var(--gold-deep);
    letter-spacing: 0.02em;
}

.royal-story-rule {
    width: 0;
    height: 1px;
    margin: 0 0 1rem;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), transparent);
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.royal-story-copy.is-visible .royal-story-rule {
    width: 52px;
}

.royal-story-lead {
    margin: 0 0 0.7rem;
    max-width: 32rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

.royal-story-lead .lead-line {
    display: block;
    background-image: linear-gradient(
        90deg,
        #2a2622 0%,
        #2a2622 46%,
        rgba(143, 133, 120, 0.42) 54%,
        rgba(143, 133, 120, 0.42) 100%
    );
    background-size: 220% 100%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: background-position 2.1s linear var(--line-delay, 0.2s);
}

.royal-story-copy.is-visible .royal-story-lead .lead-line {
    background-position: 0% 0;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .royal-story-lead .lead-line {
        color: var(--ink);
        -webkit-text-fill-color: currentColor;
        background: none;
    }
}

.royal-story-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.65;
    max-width: 30rem;
}

.royal-story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.15rem;
}

.royal-story-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--gold-line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--gold-deep);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.25s ease, background 0.25s ease;
    transition-delay: var(--delay, 0s);
}

.royal-story-copy.is-visible .royal-story-tags span {
    opacity: 1;
    transform: translateY(0);
}

.royal-story-tags span:hover {
    border-color: var(--gold);
    background: #fff;
}

.royal-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.royal-story-actions .btn {
    padding: 0.7rem 1.1rem;
    font-size: 0.68rem;
}

/* Editorial band */
.editorial {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    border: 1px solid var(--gold-line);
    background: var(--white);
    overflow: hidden;
}

.editorial-visual {
    position: relative;
    min-height: 420px;
    background:
        linear-gradient(160deg, rgba(255, 252, 247, 0.12), rgba(196, 163, 90, 0.18)),
        url("../images/our-story-artisan.png?v=2") center/cover no-repeat;
}

.editorial-brand-mark {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: min(13rem, calc(100% - 2.5rem));
    padding: 0.7rem 0.85rem 0.55rem;
    border: 1px solid rgba(181, 139, 55, 0.72);
    background: rgba(255, 252, 247, 0.88);
    box-shadow: 0 12px 28px rgba(61, 43, 18, 0.18);
    backdrop-filter: blur(5px);
}

.editorial-brand-kicker {
    margin-bottom: 0.25rem;
    color: var(--gold-deep);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
}

.editorial-brand-mark img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 4.4rem;
    object-fit: contain;
    object-position: left center;
}

.editorial-visual.story-gallery {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem;
    min-height: 420px;
    padding: 0.85rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.88), transparent 38%),
        linear-gradient(145deg, #f5ead7, #e6d3ae);
}

.story-gallery-item {
    position: relative;
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(164, 120, 40, 0.42);
    background: #fffdf8;
    box-shadow: 0 8px 20px rgba(81, 56, 19, 0.12);
}

.story-gallery-pot {
    grid-row: 1 / -1;
}

.story-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-gallery-item:hover img {
    transform: scale(1.06);
}

.story-gallery-item figcaption {
    position: absolute;
    right: 0.55rem;
    bottom: 0.55rem;
    left: 0.55rem;
    padding: 0.42rem 0.55rem;
    background: rgba(42, 31, 18, 0.72);
    color: #fffdf8;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.editorial-story-mark {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 0.55rem;
}

.editorial-story-mark img {
    display: block;
    width: min(12rem, 62%);
    height: auto;
    mix-blend-mode: multiply;
    object-fit: contain;
    object-position: left center;
    filter: contrast(1.08);
}

.editorial-visual.story-title-visual {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 2rem;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.92), transparent 54%),
        linear-gradient(145deg, #f7eddb, #e7d3aa);
}

.story-title-visual img {
    display: block;
    width: min(76%, 21rem);
    height: auto;
    mix-blend-mode: multiply;
    object-fit: contain;
    filter: contrast(1.08);
}

.editorial-copy {
    padding: clamp(2rem, 5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editorial-copy h2 {
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    margin-bottom: 1rem;
}

.editorial-copy p { color: var(--ink-soft); }

.quote-band {
    text-align: center;
    padding: 3.5rem 1.5rem;
    background: linear-gradient(180deg, #fffaf0, var(--ivory-soft));
    border-block: 1px solid var(--gold-line);
}

.quote-band p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--ink);
    max-width: 36rem;
    margin: 0 auto 0.75rem;
    line-height: 1.35;
}

.quote-band span {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

/* Detail / forms / cart */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 1.75rem 0 1.5rem;
}

.product-detail-media {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: auto;
    overflow: visible;
    background: transparent;
    border: none;
    box-sizing: border-box;
}

.product-detail-media-main {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--ivory-soft);
    border: 1px solid var(--line);
    box-sizing: border-box;
}

.product-zoom-trigger {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-detail-media-main img,
.product-detail-media > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.product-zoom-trigger:hover img {
    transform: scale(1.04);
}

.product-inline-zoom-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
    cursor: zoom-in;
    touch-action: none;
    user-select: none;
}

.product-inline-zoom-viewport.is-zoomed {
    cursor: grab;
}

.product-inline-zoom-viewport.is-dragging {
    cursor: grabbing;
}

.product-inline-zoom-viewport img {
    transform-origin: center center;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.product-inline-zoom-controls {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem;
    border: 1px solid rgba(196, 163, 90, 0.45);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.9);
    box-shadow: var(--shadow-gold);
}

.product-inline-zoom-btn,
.product-inline-zoom-reset {
    display: inline-grid;
    place-items: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.45rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--gold-deep);
    font: inherit;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.product-inline-zoom-btn {
    font-size: 1.25rem;
}

.product-inline-zoom-reset {
    padding-inline: 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-inline-zoom-btn:hover,
.product-inline-zoom-reset:hover {
    background: var(--ivory-deep);
}

#productInlineZoomLevel {
    min-width: 2.75rem;
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
}

.product-zoom-hint {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    background: rgba(42, 38, 34, 0.72);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.product-zoom-hint svg {
    width: 0.95rem;
    height: 0.95rem;
}

.product-zoom-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
}

.product-zoom-lightbox[hidden] {
    display: none !important;
}

.product-zoom-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 14, 10, 0.88);
    backdrop-filter: blur(4px);
}

.product-zoom-dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    height: 100%;
    max-height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 0;
    box-shadow: none;
    overflow: hidden;
}

.product-zoom-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.product-zoom-title {
    margin: 0;
    font-family: var(--font-display, inherit);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-zoom-close {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.product-zoom-close:hover {
    border-color: var(--gold);
    color: var(--gold-deep);
}

.product-zoom-viewport {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(45deg, #f3eee6 25%, transparent 25%),
        linear-gradient(-45deg, #f3eee6 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f3eee6 75%),
        linear-gradient(-45deg, transparent 75%, #f3eee6 75%);
    background-size: 24px 24px;
    background-position: 0 0, 0 12px, 12px -12px, -12px 0;
    background-color: #faf7f2;
    cursor: zoom-in;
    touch-action: none;
    user-select: none;
}

.product-zoom-viewport.is-zoomed {
    cursor: grab;
}

.product-zoom-viewport.is-dragging {
    cursor: grabbing;
}

.product-zoom-viewport img {
    position: relative;
    inset: auto;
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transform-origin: center center;
    will-change: transform;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.product-zoom-footer {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line);
    background: #fff;
}

.product-zoom-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.product-zoom-level {
    min-width: 3.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.product-zoom-btn {
    min-width: 2.5rem;
    height: 2.35rem;
    padding: 0 0.8rem;
    border: 1px solid var(--gold);
    border-radius: 0.35rem;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
}

.product-zoom-btn.is-text {
    min-width: auto;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-zoom-btn:hover {
    filter: brightness(1.05);
}

.product-zoom-tip {
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
}

body.product-zoom-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .product-zoom-dialog {
        width: 100%;
    }

    .product-zoom-header,
    .product-zoom-footer {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .product-zoom-title {
        font-size: 0.95rem;
    }
}

.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.product-gallery-thumb {
    width: 68px;
    height: 68px;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--ivory-soft);
    cursor: pointer;
    overflow: hidden;
    flex: 0 0 auto;
}

.product-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
    border-color: var(--gold);
}

.product-detail-info h1 {
    font-size: clamp(2rem, 3.8vw, 2.9rem);
}

.qty-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin: 1.5rem 0;
}

input, select, textarea {
    font: inherit;
    color: var(--ink);
    border: 1px solid var(--line);
    background: var(--white);
    padding: 0.8rem 0.95rem;
    width: 100%;
}

input:focus, select:focus, textarea:focus {
    outline: 2px solid rgba(196, 163, 90, 0.25);
    border-color: var(--gold);
}

label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.form-group { margin-bottom: 1rem; }

.field-error {
    display: block;
    margin-top: 0.35rem;
    color: #8c3228;
    font-size: 0.78rem;
    line-height: 1.35;
}

.field-error[hidden] {
    display: none !important;
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
    border-color: rgba(140, 50, 40, 0.55);
    outline: none;
    box-shadow: 0 0 0 2px rgba(140, 50, 40, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.table { width: 100%; border-collapse: collapse; }
.table th, .table td {
    text-align: left;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 2rem;
    padding: 3rem 0;
}

.cart-qty-form {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.cart-qty-form input[type="number"] {
    width: 3.5rem;
    height: 2.25rem;
    margin: 0;
    padding: 0 0.35rem;
    border: 1px solid var(--gold);
    border-radius: 0.35rem;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-gold);
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    appearance: textfield;
    -moz-appearance: textfield;
}

.cart-qty-form input[type="number"]::-webkit-outer-spin-button,
.cart-qty-form input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-qty-form input[type="number"]:focus {
    outline: none;
    border-color: var(--gold-deep);
}

.cart-update-btn,
.cart-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid transparent;
    cursor: pointer;
    border-radius: 0.35rem;
    color: #fff;
    transition: filter 0.15s ease, box-shadow 0.15s ease;
}

.cart-update-btn {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.cart-remove-btn {
    background: linear-gradient(135deg, #e53935, #c62828);
    border-color: #b71c1c;
    box-shadow: 0 6px 16px rgba(198, 40, 40, 0.28);
}

.cart-update-btn:hover,
.cart-remove-btn:hover {
    filter: brightness(1.05);
}

.cart-update-btn svg,
.cart-remove-btn svg {
    width: 1.15rem;
    height: 1.15rem;
}

.cart-confirm {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cart-confirm[hidden] {
    display: none !important;
}

.cart-confirm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 14, 10, 0.62);
    backdrop-filter: blur(3px);
}

.cart-confirm-dialog {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    padding: 1.35rem 1.35rem 1.25rem;
    background: #fff;
    border: 1px solid var(--gold-line);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.cart-confirm-dialog h2 {
    margin: 0 0 0.45rem;
    font-size: 1.45rem;
}

.cart-confirm-dialog p {
    margin: 0 0 1.15rem;
    line-height: 1.5;
}

.cart-confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.cart-confirm-yes {
    background: linear-gradient(135deg, #e53935, #c62828);
    color: #fff;
    border-color: #b71c1c;
}

.cart-confirm-yes:hover {
    color: #fff;
    filter: brightness(1.05);
}

body.cart-confirm-open {
    overflow: hidden;
}

.summary-box {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gold-line);
    position: sticky;
    top: 7rem;
    box-shadow: var(--shadow);
}

.summary-box .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.alert {
    padding: 0.9rem 1rem;
    margin: 1rem 0;
    border: 1px solid var(--line);
    background: var(--white);
}

.alert-success {
    border-color: var(--gold-line);
    background: #fff8eb;
}

.alert-error {
    border-color: rgba(140, 50, 40, 0.25);
    background: rgba(140, 50, 40, 0.06);
    color: #6b2d24;
}

.page-banner {
    padding: 3rem 0 1.25rem;
    text-align: center;
}

.container:has(.site-breadcrumb) + .page-banner {
    padding-top: 1.35rem;
}

.container:has(.site-breadcrumb) + .page-hero-band,
.container:has(.site-breadcrumb) + .page-hero-band.shop-hero {
    margin-top: 0.35rem;
}

.page-banner h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.filters a,
.filters .chip {
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--line);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--white);
}

.filters a.active {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    color: #fff;
    border-color: var(--gold);
}

.products-infinite-status {
    margin: 1.5rem auto 0.5rem;
    text-align: center;
    color: var(--muted, #6b635c);
    font-size: 0.92rem;
    min-height: 1.5rem;
}

.products-infinite-status.is-loading::before {
    content: '';
    display: inline-block;
    width: 0.85rem;
    height: 0.85rem;
    margin-right: 0.55rem;
    border: 2px solid rgba(184, 149, 74, 0.28);
    border-top-color: var(--gold, #b8954a);
    border-radius: 50%;
    vertical-align: -0.1rem;
    animation: products-spin 0.7s linear infinite;
}

.products-infinite-sentinel {
    width: 100%;
    height: 1px;
    margin-top: 1.5rem;
    pointer-events: none;
}

@keyframes products-spin {
    to { transform: rotate(360deg); }
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.pagination-nav {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.4rem;
    border: 1px solid var(--gold-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 246, 239, 0.95));
    box-shadow: var(--shadow-gold);
}

.pagination-btn {
    min-width: 2.35rem;
    height: 2.35rem;
    padding: 0 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pagination-arrow {
    color: var(--gold-deep);
}

.pagination-arrow svg {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
    transition: transform 0.25s ease, color 0.25s ease;
}

a.pagination-btn:hover {
    color: var(--gold-deep);
    border-color: var(--gold-line);
    background: rgba(216, 188, 116, 0.14);
    transform: translateY(-1px);
}

a.pagination-arrow:hover {
    color: var(--gold-bright);
    border-color: transparent;
    background: transparent;
    transform: none;
    box-shadow: none;
}

a.pagination-arrow[rel="prev"]:hover svg {
    transform: translateX(-2px);
}

a.pagination-arrow[rel="next"]:hover svg {
    transform: translateX(2px);
}

.pagination-btn.is-current {
    color: #fffdf8;
    border-color: transparent;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    box-shadow: 0 8px 18px rgba(154, 122, 53, 0.28);
}

.pagination-btn.is-disabled {
    opacity: 0.35;
    cursor: default;
}

.pagination-arrow.is-disabled {
    color: var(--gold);
}

.categories-pagination .pagination-nav,
.page-shop .pagination-nav,
.page-categories .pagination-nav {
    margin-inline: auto;
}

.empty-state { text-align: center; padding: 4rem 1rem; }

/* Footer — new structure */
.site-footer {
    margin-top: 3rem;
    position: relative;
    color: #f7f1e7;
    background:
        radial-gradient(circle at 12% 20%, rgba(216, 188, 116, 0.16), transparent 34%),
        radial-gradient(circle at 88% 80%, rgba(154, 122, 53, 0.14), transparent 40%),
        linear-gradient(165deg, #2a2622 0%, #1c1714 55%, #241f1a 100%);
    overflow: hidden;
}

.footer-top-rule {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), var(--gold), var(--gold-bright), transparent);
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 2.5rem 2rem;
    padding: 3.5rem 0 2.75rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: #fffdf8;
    margin-bottom: 1.1rem;
}

.footer-logo-img {
    display: block;
    width: min(17.5rem, 100%);
    height: auto;
    max-width: min(18rem, 80vw);
    aspect-ratio: 1024 / 576;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    border: 0;
    box-shadow: none;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.footer-logo-mark {
    display: inline-grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    border: 1px solid rgba(216, 188, 116, 0.55);
    background: linear-gradient(145deg, rgba(216, 188, 116, 0.22), rgba(154, 122, 53, 0.12));
    color: var(--gold-bright);
    font-family: "Playfair Display", var(--font-display), Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-family: "Playfair Display", var(--font-display), Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.footer-logo-text small {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(216, 188, 116, 0.85);
}

.footer-tagline {
    margin: 0 0 1.15rem;
    max-width: 26rem;
    color: rgba(247, 241, 231, 0.72);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.footer-pills span {
    display: inline-flex;
    padding: 0.32rem 0.65rem;
    border: 1px solid rgba(216, 188, 116, 0.35);
    color: var(--gold-bright);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.1rem;
}

.footer-social-btn {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216, 188, 116, 0.35);
    color: #fff !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.footer-social-btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.footer-social-btn.is-whatsapp {
    background: #25d366;
    border-color: #1ebe57;
}

.footer-social-btn.is-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
    border-color: transparent;
}

.footer-social-btn.is-facebook {
    background: #1877f2;
    border-color: #166fe5;
}

.footer-social-btn:hover {
    transform: translateY(-2px) scale(1.05);
    color: #fff !important;
    filter: brightness(1.06);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.footer-links-col h4 {
    margin: 0 0 1rem;
    color: var(--gold-bright);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: flex-start;
}

.site-footer a {
    color: rgba(247, 241, 231, 0.78);
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
    color: var(--gold-bright);
    transform: translateX(3px);
}

.footer-visit p {
    margin: 0 0 1rem;
    color: rgba(247, 241, 231, 0.72);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-visit a[href^="mailto"] {
    color: var(--gold-bright);
}

.footer-visit .footer-social {
    margin-top: 1rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(216, 188, 116, 0.55);
    background: linear-gradient(135deg, rgba(216, 188, 116, 0.2), rgba(154, 122, 53, 0.12));
    color: #fffdf8 !important;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-cta:hover {
    border-color: var(--gold-bright);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #fff !important;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(216, 188, 116, 0.18);
    background: rgba(0, 0, 0, 0.18);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0 1.2rem;
    font-size: 0.8rem;
    color: rgba(247, 241, 231, 0.55);
}

.footer-bottom-note {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.66rem;
    color: rgba(216, 188, 116, 0.7);
}

.footer-bottom-note a {
    color: var(--gold-bright);
    text-decoration: none;
    border-bottom: 1px solid rgba(216, 188, 116, 0.35);
}

.footer-bottom-note a:hover {
    color: #fff;
    border-bottom-color: var(--gold-bright);
}

/* Admin stays light */
.admin-body {
    background: #f4f1ec;
    color: #1c1714;
    min-height: 100vh;
}

.admin-body h1,
.admin-body h2,
.admin-body h3,
.admin-body h4 { color: #1c1714; }

.admin-shell {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
    position: relative;
}

.admin-backdrop {
    display: none;
}

.admin-sidebar {
    background: #2a2622;
    color: #faf6ef;
    padding: 1.5rem 1.1rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.admin-sidebar .brand {
    color: #fff;
    text-align: left;
    margin-bottom: 0;
    padding: 0 0.5rem;
    font-size: 1.2rem;
    display: block;
}

.admin-sidebar .brand span {
    display: block;
    color: var(--gold-bright);
    text-align: left;
    margin-top: 0.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #fff;
    box-shadow: 0 6px 16px rgba(154, 122, 53, 0.28);
    cursor: pointer;
    font-family: inherit;
    flex-shrink: 0;
}

.admin-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.admin-menu-toggle.is-open .menu-toggle-lines span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.admin-menu-toggle.is-open .menu-toggle-lines span:nth-child(3) {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
}

.admin-nav a {
    display: block;
    padding: 0.7rem 0.8rem;
    color: rgba(250, 246, 239, 0.75);
    margin-bottom: 0.25rem;
    border-left: 2px solid transparent;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.06);
    border-left-color: var(--gold);
}

.admin-main {
    padding: 1.5rem 2rem 3rem;
    min-width: 0;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.admin-top h1 {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    margin: 0;
}

.admin-top-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.admin-content { min-width: 0; }

.admin-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.admin-order-item {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid rgba(28, 23, 20, 0.08);
    background: #fffdf9;
}

.admin-order-item:last-child {
    margin-bottom: 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card,
.panel {
    background: #fff;
    border: 1px solid rgba(28,23,20,0.1);
    padding: 1.2rem;
    color: #1c1714;
}

.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-top: 0.35rem;
}

.panel {
    margin-bottom: 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(28,23,20,0.1);
    font-size: 0.92rem;
    color: #1c1714;
}

.status {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #eee6da;
    color: #1c1714;
}

.status.pending { background: #f3e7c8; }
.status.new { background: #f3e7c8; }
.status.confirmed, .status.processing, .status.contacted, .status.quoted { background: #dfead8; }
.status.shipped { background: #d7e3ef; }
.status.delivered { background: #d8eadc; }
.status.cancelled, .status.closed { background: #efd8d5; }

.login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: var(--ivory-soft);
}

.login-card {
    width: min(420px, 100%);
    background: #fff;
    border: 1px solid var(--gold-line);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    background: var(--ivory-soft);
}

.carousel-thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 78px;
    padding: 4px;
    border: 1px solid rgba(28, 23, 20, 0.12);
    background: #f4f1ec;
    overflow: hidden;
}

.carousel-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.carousel-thumb-lg {
    width: 240px;
    height: 130px;
}

/* ========== Responsive ========== */
@media (max-width: 1100px) {
    .nav { gap: 1rem; }
    .nav a {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 960px) {
    .container { width: min(1140px, calc(100% - 2rem)); }

    .menu-toggle { display: inline-grid; }
    .header-top { flex-wrap: wrap; gap: 0.75rem; }
    .nav {
        display: none;
        order: 3;
        flex: 1 0 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid var(--line);
        padding: 0.4rem 0 0.15rem;
    }
    .nav.open { display: flex; }
    .nav a {
        padding: 0.75rem 0.15rem;
        font-size: 0.8rem;
        border-bottom: 1px solid var(--line);
    }
    .nav a.active::after,
    .nav a:hover::after { display: none; }

    .cart-meta { display: none; }
    .cart-link { padding: 0.35rem; border-radius: 0; }
    .cart-icon-wrap { width: 2.5rem; height: 2.5rem; }

    .announcement {
        font-size: 0.64rem;
        letter-spacing: 0.12em;
        padding: 0.45rem 0.75rem;
    }

    .category-layout,
    .contact-layout,
    .category-cards,
    .editorial,
    .royal-story,
    .product-detail,
    .cart-layout,
    .checkout-layout,
    .footer-shell,
    .category-grid,
    .collections-mosaic,
    .product-grid.four { grid-template-columns: 1fr 1fr; }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .collections-mosaic {
        grid-template-rows: auto;
        min-height: 0;
    }
    .collection-card.is-feature {
        grid-row: auto;
        min-height: 240px;
    }
    .collections-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .collection-cta,
    .card-cta {
        opacity: 1;
        transform: none;
    }

    .royal-story-copy h2 { font-size: clamp(1.55rem, 6vw, 2rem); }
    .royal-story-lead { font-size: 0.9rem; }
    .royal-story-note { font-size: 0.8rem; }
    .royal-video-frame { padding: 0.65rem; }
    .royal-video-play {
        width: 62px;
        height: 62px;
    }

    .category-sidebar { position: static; }
    .promise-row,
    .product-grid,
    .stats { grid-template-columns: repeat(2, 1fr); }

    .category-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }
    .category-mosaic a:first-child {
        grid-row: auto;
        grid-column: 1 / -1;
        min-height: 240px;
    }

    .section { padding: 3.25rem 0; }
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .summary-box { position: static; }

    .admin-shell { grid-template-columns: 1fr; }
    .admin-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(28, 23, 20, 0.45);
        z-index: 90;
    }
    .admin-backdrop[hidden] { display: none !important; }
    .admin-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(280px, 86vw);
        height: 100vh;
        z-index: 100;
        transform: translateX(-105%);
        transition: transform 0.25s ease;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }
    .admin-shell.sidebar-open .admin-sidebar { transform: translateX(0); }
    .admin-menu-toggle,
    .admin-close { display: inline-grid; }
    .admin-main { padding: 1rem 1rem 2.5rem; }
    .admin-table { min-width: 680px; }
    .admin-split { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .container { width: min(1140px, calc(100% - 1.5rem)); }

    .brand-logo {
        width: 9.25rem;
        height: auto;
        max-width: none;
        font-size: inherit;
    }

    .promise-row,
    .product-grid,
    .stats,
    .form-row,
    .category-mosaic,
    .category-cards,
    .collections-mosaic { grid-template-columns: 1fr; }

    .hero-carousel {
        height: min(78vh, 680px);
        min-height: 440px;
    }
    .hero-slide-veil {
        background:
            linear-gradient(180deg, rgba(255, 252, 247, 0.04) 0%, rgba(255, 252, 247, 0.26) 48%, rgba(255, 252, 247, 0.84) 100%);
    }
    .hero-slide-content {
        justify-content: flex-end;
        padding: 1.5rem 0 4.25rem;
    }
    .hero-content-panel {
        width: min(100%, 38rem);
        padding: 0;
    }
    .hero-kicker-row {
        margin-bottom: 0.7rem;
    }
    .hero-content-panel .hero-kicker {
        max-width: 22ch;
        font-size: 0.56rem;
    }
    .hero-slide-content h1 {
        max-width: 14ch;
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .hero-slide-media img {
        object-position: 64% center;
    }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-nav {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 1.2rem;
        transform: none;
    }
    .hero-nav:hover {
        transform: scale(1.05);
    }
    .hero-prev { left: 1rem; }
    .hero-next { right: 1rem; }
    .hero-controls { bottom: 1.1rem; }

    .page-hero-band { padding: 2rem 0 1.5rem; }
    .filters {
        justify-content: flex-start;
    }
    .filters input[type="search"] {
        max-width: none !important;
        width: 100%;
        flex: 1 1 100%;
    }
    .qty-row,
    .product-actions { flex-wrap: wrap; }
    .specs-table th { width: 120px; }
    .table { min-width: 620px; }
    .footer-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.75rem 0 2.25rem;
    }
    .footer-brand-col { grid-column: auto; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .btn { width: auto; }
    .btn-block { width: 100%; }

    .stats { grid-template-columns: 1fr 1fr; }
    .login-card { padding: 1.5rem; }
    .admin-top h1 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .announcement-location { display: none; }
    .stats { grid-template-columns: 1fr; }
    .stat-card strong { font-size: 1.5rem; }
    .hero-carousel {
        height: 70vh;
        min-height: 400px;
    }
    .hero-slide-media img {
        object-position: 68% center;
    }
    .hero-nav { display: none; }
    .cart-count {
        min-width: 1.05rem;
        height: 1.05rem;
        font-size: 0.58rem;
    }
}

/* Royal collection cards */
.page-shop .shop-product-grid {
    counter-reset: royal-card;
    gap: 1.75rem;
}

.page-shop .shop-product-grid > .shop-product-enter {
    counter-increment: royal-card;
}

.page-shop .shop-product-grid .product-card {
    --royal-accent: var(--gold);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 0.65rem 0.65rem 1.2rem;
    border: 1px solid rgba(170, 132, 55, 0.42);
    border-radius: 0.2rem;
    background: linear-gradient(145deg, #fffdf8 0%, #f5ecda 100%);
    box-shadow: 0 12px 30px rgba(83, 62, 29, 0.1);
}

.page-shop .shop-product-grid .product-card::before {
    inset: 0.42rem;
    border: 1px solid rgba(192, 151, 70, 0.38);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.page-shop .shop-product-grid .product-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 5.5rem;
    height: 5.5rem;
    background: radial-gradient(circle at top right, rgba(215, 177, 95, 0.28), transparent 68%);
    pointer-events: none;
}

.page-shop .shop-product-grid .product-card:nth-child(3n + 2) {
    --royal-accent: var(--gold-bright);
    background: linear-gradient(145deg, #fffefa 0%, #f1e6ce 100%);
}

.page-shop .shop-product-grid .product-card:nth-child(3n + 3) {
    --royal-accent: var(--gold-deep);
    background: linear-gradient(145deg, #fcfaf4 0%, #eadfc7 100%);
}

.page-shop .shop-product-grid .product-card:hover {
    border-color: var(--royal-accent);
    box-shadow: 0 22px 48px rgba(119, 87, 30, 0.2), 0 0 0 1px rgba(202, 162, 79, 0.14);
    transform: translateY(-11px);
}

.page-shop .shop-product-grid .product-media {
    border: 1px solid rgba(160, 121, 48, 0.24);
    box-shadow: inset 0 0 0 0.3rem rgba(255, 252, 245, 0.45);
}

.page-shop .shop-product-grid .product-meta {
    position: relative;
    padding: 0.82rem 0.45rem 0;
    gap: 0.42rem;
}

.page-shop .shop-product-grid .product-meta::before {
    content: "NO. " counter(royal-card);
    display: block;
    margin-bottom: 0.08rem;
    color: var(--royal-accent);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.page-shop .shop-product-grid .product-meta h3 {
    font-family: var(--font-display, inherit);
    font-size: 1.18rem;
    letter-spacing: 0.01em;
}

.page-shop .shop-product-grid .product-meta .price {
    color: var(--royal-accent);
}

.page-shop .shop-product-grid .product-meta .gold-tag {
    align-self: flex-start;
    padding: 0.25rem 0.55rem;
    border: 1px solid rgba(174, 132, 50, 0.38);
    border-radius: 999px;
    background: rgba(255, 252, 245, 0.62);
    color: var(--gold-deep);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-shop .shop-product-grid .card-cta {
    margin-top: 0.35rem;
    border-color: var(--royal-accent);
    background: linear-gradient(135deg, var(--royal-accent), var(--gold-deep));
    box-shadow: 0 9px 20px rgba(137, 99, 29, 0.2);
}

@media (max-width: 640px) {
    .page-shop .shop-product-grid {
        gap: 1rem;
    }

    .page-shop .shop-product-grid .product-card {
        padding: 0.48rem 0.48rem 0.9rem;
    }

    .page-shop .shop-product-grid .product-meta {
        padding-inline: 0.25rem;
    }

    .page-shop .shop-product-grid .product-meta h3 {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-shop .shop-product-grid .product-card,
    .page-shop .shop-product-grid .product-card:hover,
    .page-shop .shop-product-grid .product-card .product-media img {
        transform: none;
        transition: none;
    }
}

/* Refined royal card finish */
.page-shop .shop-product-grid {
    gap: 1.4rem;
}

.page-shop .shop-product-grid .product-card {
    overflow: hidden;
    padding: 0.5rem 0.5rem 0.85rem;
    border: 1px solid rgba(176, 136, 59, 0.28);
    border-radius: 1rem;
    background: #fffdf8;
    box-shadow: 0 10px 28px rgba(73, 54, 25, 0.09);
}

.page-shop .shop-product-grid .product-card::before {
    inset: 0.32rem;
    border: 1px solid rgba(183, 143, 65, 0.3);
    border-radius: 0.76rem;
    box-shadow: none;
}

.page-shop .shop-product-grid .product-card::after {
    top: -2.5rem;
    right: -2.5rem;
    width: 8rem;
    height: 8rem;
    background: radial-gradient(circle, rgba(218, 181, 100, 0.18), transparent 68%);
    z-index: 0;
}

.page-shop .shop-product-grid .product-media {
    z-index: 1;
    aspect-ratio: 1 / 1;
    border: 0;
    border-radius: 0.7rem;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), transparent 48%),
        linear-gradient(145deg, #f8f0e1, #eee1c9);
    box-shadow: inset 0 0 0 1px rgba(173, 130, 49, 0.16);
}

.page-shop .shop-product-grid > .shop-product-enter:nth-child(3n + 2) .product-card .product-media {
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), transparent 48%),
        linear-gradient(145deg, #f4efe5, #e8e2d5);
}

.page-shop .shop-product-grid > .shop-product-enter:nth-child(3n + 3) .product-card .product-media {
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), transparent 48%),
        linear-gradient(145deg, #f8eee6, #ebdccd);
}

.page-shop .shop-product-grid .product-media img {
    z-index: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.page-shop .shop-product-grid .product-card:hover .product-media img {
    filter: drop-shadow(0 14px 12px rgba(81, 57, 20, 0.16));
    transform: scale(1.1) translateY(-0.2rem);
}

.page-shop .shop-product-grid .product-meta {
    z-index: 1;
    padding: 0.9rem 0.55rem 0;
    gap: 0.5rem;
}

.page-shop .shop-product-grid .product-meta::before {
    content: none;
    display: none;
}

.page-shop .shop-product-grid .product-meta h3 {
    min-height: 2.8em;
    font-size: 1.12rem;
    line-height: 1.35;
}

.page-shop .shop-product-grid .product-meta .price {
    min-height: 1.6rem;
    font-size: 1.02rem;
}

.page-shop .shop-product-grid .product-meta .gold-tag {
    margin: 0.05rem 0 0.25rem;
    background: transparent;
}

.page-shop .shop-product-grid .card-cta {
    justify-content: space-between;
    margin-top: 0.2rem;
    padding: 0.72rem 0.85rem;
    border: 1px solid rgba(167, 125, 43, 0.52);
    border-radius: 0.55rem;
    background: transparent;
    color: var(--gold-deep);
    box-shadow: none;
}

.page-shop .shop-product-grid .card-cta::after {
    content: "↗";
    font-size: 1rem;
    line-height: 0.8;
    transition: transform 0.25s ease;
}

.page-shop .shop-product-grid .product-card:hover .card-cta {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #fffdf8;
    box-shadow: 0 8px 18px rgba(137, 99, 29, 0.2);
}

.page-shop .shop-product-grid .product-card:hover .card-cta::after {
    transform: translate(0.15rem, -0.15rem);
}

@media (max-width: 640px) {
    .page-shop .shop-product-grid {
        gap: 0.85rem;
    }

    .page-shop .shop-product-grid .product-card {
        padding: 0.4rem 0.4rem 0.7rem;
        border-radius: 0.75rem;
    }

    .page-shop .shop-product-grid .product-media img {
        padding: 0;
    }

    .page-shop .shop-product-grid .product-meta {
        padding: 0.7rem 0.3rem 0;
    }

    .page-shop .shop-product-grid .product-meta h3 {
        font-size: 0.95rem;
    }

    .page-shop .shop-product-grid .card-cta {
        padding: 0.62rem 0.65rem;
        font-size: 0.62rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-shop .shop-product-grid .product-card,
    .page-shop .shop-product-grid .product-card:hover,
    .page-shop .shop-product-grid .product-card .product-media img,
    .page-shop .shop-product-grid .card-cta::after {
        transform: none;
        transition: none;
    }
}

/* Keep the shop filters available while browsing */
@media (min-width: 961px) {
    .page-shop .category-filter-sidebar {
        position: sticky;
        top: 6.5rem;
        align-self: start;
        max-height: calc(100vh - 7.5rem);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--gold-line) transparent;
    }

    .page-shop .category-filter-sidebar::-webkit-scrollbar {
        width: 6px;
    }

    .page-shop .category-filter-sidebar::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: var(--gold-line);
    }

    .page-shop .category-filter-sidebar::-webkit-scrollbar-track {
        background: transparent;
    }
}

@media (max-width: 960px) {
    .page-shop .category-layout {
        grid-template-columns: 1fr;
    }

    .page-shop .category-filter-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
    }
}

.page-shop .category-filter-sidebar {
    max-height: none;
    overflow: visible;
}

.page-shop .category-sidebar-filter {
    overflow: visible;
}

.page-shop .category-sidebar-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.page-shop .category-sidebar-chips .category-chip {
    min-width: 0;
    justify-content: center;
    text-align: center;
}

.page-shop .category-filter-sort {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.7rem 2.5rem 0.7rem 0.85rem;
    border: 1px solid rgba(176, 136, 59, 0.42);
    border-radius: 0.55rem;
    background-color: #fffaf1;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%),
        linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%);
    background-position:
        calc(100% - 1rem) 50%,
        calc(100% - 0.7rem) 50%;
    background-repeat: no-repeat;
    background-size: 0.32rem 0.32rem, 0.32rem 0.32rem;
    color: var(--ink);
    font-size: 0.82rem;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.page-shop .category-filter-sort:hover {
    border-color: var(--gold);
    background-color: #fffdf8;
}

.page-shop .category-filter-sort:focus {
    outline: none;
    border-color: var(--gold-deep);
    background-color: #fffdf8;
    box-shadow: 0 0 0 3px rgba(216, 188, 116, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page-shop .category-filter-sort option {
    background: #fffaf1;
    color: var(--ink);
}

@media (max-width: 480px) {
    .page-shop .category-sidebar-chips {
        grid-template-columns: 1fr;
    }
}

.product-media.is-out-of-stock img,
.page-shop .shop-product-grid .product-media.is-out-of-stock img,
.page-shop .shop-product-grid .product-card:hover .product-media.is-out-of-stock img {
    opacity: 0.42;
    filter: grayscale(0.85) brightness(1.08);
    transform: none;
}

.product-media.is-out-of-stock::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(255, 252, 247, 0.2);
    pointer-events: none;
}

.page-shop .shop-product-grid > .shop-product-enter .product-media.is-out-of-stock::before {
    transform: none;
    background: rgba(255, 252, 247, 0.2);
}

.stock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(171, 128, 44, 0.7);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.94);
    color: var(--gold-deep);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 24px rgba(83, 61, 26, 0.18);
    pointer-events: none;
}

/* Keep the wide Elephant Diya Pair fully visible */
.page-shop .product-media[data-product-slug="elephant-diya-pair-tea-light-holders"] img {
    padding: 0;
    object-fit: contain;
    transform: scale(1.16);
}

.page-shop .product-card:hover .product-media[data-product-slug="elephant-diya-pair-tea-light-holders"] img {
    transform: scale(1.23);
}

.page-product[data-product-slug="elephant-diya-pair-tea-light-holders"] .product-inline-zoom-viewport img {
    padding: 0.15rem;
    object-fit: contain;
}
