@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
    --bg: #f8f2e3;
    --surface: rgba(255, 250, 243, 0.95);
    --surface-soft: #f1e5cc;
    --text: #241a0d;
    --muted: #7b6842;
    --line: rgba(173, 135, 64, 0.18);
    --plum: #8f7135;
    --plum-deep: #181109;
    --plum-muted: #8a7651;
    --rose: #f5c33b;
    --champagne: #ac8742;
    --lavender: #efe4ca;
    --shadow: 0 24px 60px rgba(37, 25, 9, 0.12);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
}

/* Product details requested fixes */
.product-details-page.section-space {
    padding-top: 1rem;
}

.product-details-page .product-mode-switcher {
    margin-top: 1rem;
}

.product-details-page .product-size-pill,
.product-details-page .product-details-tags a {
    min-height: 42px;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(173, 135, 64, 0.28);
    color: var(--plum-deep);
    font-weight: 700;
}

.product-details-page .product-details-tags a:hover {
    background: rgba(241, 229, 204, 0.98);
    color: var(--plum-deep);
}

.required-marker {
    color: #b42318;
    font-weight: 900;
}

.admin-form-grid .form-control:disabled,
.admin-form-grid .form-select:disabled {
    background: rgba(233, 227, 214, 0.72);
    color: rgba(35, 28, 20, 0.62);
    cursor: not-allowed;
}

.product-details-page .product-size-pill,
.product-details-page .product-details-tags a {
    background: rgba(255, 255, 255, 0.9);
}

/* About page final polish */
.about-story-page .about-story-hero__shell {
    align-items: center;
}

.about-story-page .about-story-hero__content {
    max-width: 980px;
    padding: clamp(1.35rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
        rgba(22, 14, 8, 0.28);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.about-story-page .about-story-hero__content h1 {
    max-width: 24ch;
    font-size: clamp(2.4rem, 4.2vw, 4.6rem);
    line-height: 1.02;
}

.about-story-page .about-story-hero__subtitle {
    max-width: 68ch;
    font-size: clamp(1.05rem, 1.7vw, 1.5rem);
}

.about-story-page .about-story-hero__description {
    max-width: 70ch;
}

.about-story-page .about-story-journey {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.25rem, 3vw, 3rem);
    align-items: start;
    padding-block: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
    border-top: 1px solid rgba(173, 135, 64, 0.18);
    border-bottom: 1px solid rgba(173, 135, 64, 0.18);
}

.about-story-page .about-story-journey__intro {
    position: sticky;
    top: 140px;
}

.about-story-page .about-story-journey__intro h2 {
    max-width: 10em;
}

.about-story-page .about-story-journey__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.25rem);
    border: 0;
}

.about-story-page .about-story-journey__list article {
    display: block;
    min-height: 310px;
    padding: clamp(1.35rem, 2.2vw, 2rem);
    border: 1px solid rgba(173, 135, 64, 0.18);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 241, 0.54)),
        rgba(255, 252, 246, 0.84);
    box-shadow: 0 18px 48px rgba(71, 47, 15, 0.08);
}

.about-story-page .about-story-journey__list article strong {
    display: block;
    margin-bottom: 1.2rem;
    color: var(--champagne);
    font-size: 0.82rem;
    font-weight: 900;
}

.about-story-page .about-story-journey__list article span {
    display: block;
    margin-bottom: 1rem;
    color: #927235;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-story-page .about-story-journey__list article h3 {
    max-width: 9ch;
    margin: 0 0 1rem;
    color: var(--plum-deep);
    font-size: clamp(1.75rem, 2.5vw, 2.55rem);
    line-height: 0.98;
}

.about-story-page .about-story-journey__list article p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.about-story-page .about-story-cta {
    display: none;
}

@media (max-width: 991.98px) {
    .about-story-page .about-story-journey {
        grid-template-columns: 1fr;
    }

    .about-story-page .about-story-journey__intro {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .about-story-page .about-story-hero__content {
        border-radius: 20px;
    }

    .about-story-page .about-story-journey__list {
        grid-template-columns: 1fr;
    }

    .about-story-page .about-story-journey__list article {
        min-height: auto;
    }
}

/* About journey block redesign */
.about-story-journey {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(1.4rem, 3.5vw, 3rem);
    align-items: start;
    padding-top: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
    border-top: 1px solid rgba(173, 135, 64, 0.18);
    border-bottom: 1px solid rgba(173, 135, 64, 0.18);
}

.about-story-journey__intro {
    position: sticky;
    top: 150px;
}

.about-story-journey__intro h2 {
    max-width: 10.5em;
    margin-bottom: 0.9rem;
    font-size: clamp(2rem, 3.2vw, 3.35rem);
    line-height: 1.02;
}

.about-story-journey__intro p {
    max-width: 34rem;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.about-story-journey__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    border-top: 0;
}

.about-story-journey__list article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    min-height: 280px;
    padding: clamp(1.15rem, 2vw, 1.65rem);
    border: 1px solid rgba(173, 135, 64, 0.16);
    border-radius: 24px;
    background: rgba(255, 250, 243, 0.78);
    box-shadow: 0 18px 34px rgba(70, 47, 12, 0.06);
}

.about-story-journey__list article strong {
    color: var(--champagne);
    font-size: 0.84rem;
}

.about-story-journey__list article span {
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.about-story-journey__list article h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.about-story-journey__list article p {
    margin: 0;
    line-height: 1.75;
}

@media (max-width: 1199.98px) {
    .about-story-journey {
        grid-template-columns: 1fr;
    }

    .about-story-journey__intro {
        position: static;
    }

    .about-story-journey__intro h2 {
        max-width: 16em;
    }
}

@media (max-width: 767.98px) {
    .about-story-journey__list {
        grid-template-columns: 1fr;
    }

    .about-story-journey__list article {
        min-height: auto;
    }
}

@media (min-width: 1200px) and (max-width: 1499.98px) {
    .nav-pill--services {
        width: 48px;
        min-width: 48px;
        height: 48px;
        padding: 0;
        gap: 0;
        overflow: hidden;
        font-size: 0;
        white-space: nowrap;
    }

    .nav-pill--services i {
        font-size: 1rem;
    }
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 22%, rgba(172, 135, 66, 0.07) 0 1.5px, transparent 1.5px 100%),
        radial-gradient(circle at 78% 28%, rgba(245, 195, 59, 0.06) 0 1.5px, transparent 1.5px 100%),
        radial-gradient(circle at 50% 50%, rgba(173, 135, 64, 0.022) 0 20%, transparent 20% 100%),
        radial-gradient(circle at 0 0, rgba(173, 135, 64, 0.045) 0 18%, transparent 18% 100%),
        radial-gradient(circle at 100% 100%, rgba(173, 135, 64, 0.04) 0 18%, transparent 18% 100%),
        linear-gradient(45deg, rgba(173, 135, 64, 0.014) 25%, transparent 25%, transparent 75%, rgba(173, 135, 64, 0.014) 75%, rgba(173, 135, 64, 0.014)),
        linear-gradient(-45deg, rgba(173, 135, 64, 0.011) 25%, transparent 25%, transparent 75%, rgba(173, 135, 64, 0.011) 75%, rgba(173, 135, 64, 0.011)),
        radial-gradient(circle at top left, rgba(245, 195, 59, 0.1), transparent 24%),
        radial-gradient(circle at top right, rgba(172, 135, 66, 0.085), transparent 20%),
        linear-gradient(180deg, #fffdfa 0%, var(--bg) 38%, #f4ecdb 100%);
    background-size: auto, auto, 120px 120px, 120px 120px, 120px 120px, 72px 72px, 72px 72px, auto, auto, auto;
    overflow-x: clip;
}

.site-breadcrumb {
    padding: 0.72rem 0;
    background: rgba(255, 250, 243, 0.74);
    border-bottom: 1px solid rgba(173, 135, 64, 0.12);
}

.site-breadcrumb .breadcrumb {
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.2rem;
    overflow-x: auto;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    scrollbar-width: none;
}

.site-breadcrumb .breadcrumb::-webkit-scrollbar {
    display: none;
}

.site-breadcrumb .breadcrumb-item,
.site-breadcrumb .breadcrumb-item a {
    color: var(--muted);
}

.site-breadcrumb .breadcrumb-item a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-breadcrumb .breadcrumb-item a:hover {
    color: var(--champagne);
}

.site-breadcrumb .breadcrumb-item.active {
    color: var(--plum-deep);
}

.site-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(123, 104, 66, 0.5);
    content: "/";
}

body.js-motion-ready [data-reveal].reveal-ready,
body.js-motion-ready [data-reveal].reveal-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

.admin-readonly-display:disabled,
.admin-readonly-display[readonly] {
    background: rgba(241, 229, 204, 0.58);
    border-color: rgba(173, 135, 64, 0.2);
    color: rgba(123, 104, 66, 0.72);
    cursor: not-allowed;
    opacity: 0.68;
    -webkit-text-fill-color: rgba(123, 104, 66, 0.72);
}

.media-loading {
    position: relative;
}

.media-skeleton {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.08) 18%, rgba(255, 255, 255, 0.46) 34%, rgba(255, 255, 255, 0.08) 50%),
        linear-gradient(135deg, rgba(236, 224, 195, 0.92), rgba(251, 247, 239, 0.98));
    background-size: 200% 100%, 100% 100%;
    animation: skeleton-shimmer 1.4s linear infinite;
    box-shadow: inset 0 0 0 1px rgba(172, 135, 66, 0.12);
}

.media-skeleton.is-hidden {
    opacity: 0;
    transition: opacity 0.35s ease;
}

@keyframes skeleton-shimmer {
    from {
        background-position: 180% 0, 0 0;
    }

    to {
        background-position: -20% 0, 0 0;
    }
}

h1,
h2,
.brand-copy strong {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 0;
}

h3,
h4 {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

h5,
h6 {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0;
}

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

a:hover,
a:focus,
a:visited {
    color: inherit;
}

.container-fluid {
    padding-left: clamp(16px, 3.4vw, 48px);
    padding-right: clamp(16px, 3.4vw, 48px);
}

.topbar {
    padding: 0.5rem 0;
    background: #fffaf1;
    color: var(--muted);
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(173, 135, 64, 0.1);
}

.topbar-marquee {
    flex: 1 1 420px;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.topbar-marquee__track {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
    gap: 2rem;
    animation: topbar-marquee 18s linear infinite;
}

.topbar-marquee__track span {
    display: inline-block;
    color: var(--plum-deep);
    font-size: 0.8rem;
    font-weight: 500;
}

.topbar-links a {
    color: var(--plum);
    font-weight: 600;
}

@keyframes topbar-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

.site-header {
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 0 !important;
    background: rgba(255, 251, 245, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 0;
    z-index: 1400;
}

.header-shell {
    padding: 1rem 0;
}

/* .header-row {
    padding-bottom: 0.9rem;
} */

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand-mark img {
    display: block;
    width: auto;
    height: 78px;
    max-width: 100%;
}

.header-search {
    position: relative;
    flex: 1 1 470px;
    max-width: 560px;
}

.header-search i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--champagne);
}

.header-search .form-control {
    min-height: 52px;
    border-radius: 999px;
    border: 2px solid rgba(173, 135, 64, 0.42);
    padding-left: 2.8rem;
    box-shadow: none;
    background: #fffdfa;
}

.header-search .form-control:focus {
    border-color: #c89e42;
    box-shadow: 0 0 0 4px rgba(200, 158, 66, 0.12);
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    z-index: 1805;
    overflow: hidden;
    border: 1px solid rgba(173, 135, 64, 0.24);
    border-radius: 8px;
    background: #fffdfa;
    box-shadow: 0 18px 38px rgba(36, 28, 16, 0.18);
}

.search-suggestions__item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    padding: 0.78rem 1rem;
    color: var(--ink);
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(173, 135, 64, 0.13);
    font-weight: 700;
}

.search-suggestions__item:last-child {
    border-bottom: 0;
}

.search-suggestions__item i {
    position: static;
    transform: none;
    color: #ad8740;
}

.search-suggestions__item:hover,
.search-suggestions__item:focus {
    background: rgba(200, 158, 66, 0.12);
    outline: 0;
}

.nav-trigger,
.icon-pill,
.slider-arrow,
.filter-chip,
.collection-tags span,
.footer-social a {
    transition: all 0.22s ease;
}

.nav-trigger {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
}

.icon-pill {
    min-width: 48px;
    height: 48px;
    padding: 0 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62));
    border: 2px solid rgba(173, 135, 64, 0.16);
    color: var(--plum-deep);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 10px 20px rgba(59, 41, 14, 0.08);
}

.icon-pill--icon-only {
    width: 48px;
    min-width: 48px;
    padding: 0;
    position: relative;
}

.icon-pill b {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5ead1;
    color: #8f7135;
    font-size: 0.72rem;
}

.icon-pill--icon-only b {
    position: absolute;
    top: -4px;
    right: -3px;
    width: 22px;
    height: 22px;
    box-shadow: 0 0 0 3px #fff;
}

.icon-pill--dark {
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 232, 203, 0.95));
    color: #513a17;
    border-color: rgba(173, 135, 64, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 10px 22px rgba(95, 68, 23, 0.12);
}

.icon-pill--dark b {
    background: linear-gradient(135deg, #73531d, #ac8742);
    color: #fff;
    box-shadow: none;
}

.nav-band {
    background: var(--plum-deep);
    position: relative;
    z-index: 1500;
}

.desktop-nav {
    padding: 0.95rem 0;
    border-radius: 0;
    background: var(--plum-deep);
}

.menu-root {
    gap: 1.05rem;
}

.menu-item {
    position: relative;
}

.menu-item>a {
    color: #ffffff;
    font-weight: 700;
    padding: 0.6rem 0;
    font-size: 0.94rem;
    white-space: nowrap;
}

.has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 1.5rem;
    background: rgba(255, 251, 245, 0.99);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all 0.22s ease;
    z-index: 2000;
}

.mega-menu--catalog {
    padding: 1.2rem 1.4rem;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.1fr;
    gap: 1.25rem;
    align-items: start;
}

.mega-grid--compact {
    grid-template-columns: 1fr 1fr 1.2fr;
}

.mega-catalog {
    display: grid;
    gap: 1rem;
}

.mega-catalog__main {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(260px, 0.95fr);
    gap: 1.35rem;
    align-items: start;
}

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

.mega-catalog__column h6 {
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 2px solid;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.mega-catalog__column a {
    display: flex;
    padding-top: 10px;
    text-transform: uppercase;
}

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

.mega-visual-card {
    position: relative;
    overflow: hidden;
    min-height: 232px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(244, 234, 210, 0.98), rgba(255, 251, 245, 0.94));
    box-shadow: 0 14px 28px rgba(41, 27, 10, 0.08);
}

.mega-visual-card img {
    width: 100%;
    height: 232px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.mega-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 17, 9, 0.02), rgba(24, 17, 9, 0.42));
}

.mega-visual-card span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.mega-visual-card:hover img {
    transform: scale(1.05);
}

.mega-catalog__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 15px;
    border-top: 1px solid rgba(173, 135, 64, 0.12);
    /* margin-top: 10px; */
}

.mega-catalog__footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(248, 240, 223, 0.96);
    border: 1px solid rgba(173, 135, 64, 0.16);
    color: var(--plum-deep);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
}

.mega-grid h6,
.mobile-nav-group h6,
.site-footer h6 {
    color: var(--plum);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.9rem;
}

.mega-grid a,
.mobile-nav-group a,
.site-footer a,
.nav-links a {
    color: var(--muted);
}

.mega-grid a,
.mobile-nav-group a {
    display: block;
    margin-bottom: 0.55rem;
    line-height: 1.45;
}

.mega-card {
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background: linear-gradient(135deg, #23190d 0%, #8f7135 100%);
    color: #fff8ec;
}

.mega-card--soft {
    background: linear-gradient(135deg, #fffaf1 0%, #efe1c4 100%);
    color: var(--text);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--champagne);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
}

.mega-card .eyebrow {
    color: #ffe8a8;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.nav-pill {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    color: #ffffff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.nav-pill:hover {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.44);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 12px 24px rgba(24, 17, 9, 0.18);
}

.mobile-drawer {
    background: #fffaf1;
    z-index: 1700;
    width: min(100vw, 430px);
    max-width: 100vw;
    height: 100dvh;
    overflow: hidden;
    border-right: 1px solid rgba(173, 135, 64, 0.14);
    box-shadow: 24px 0 48px rgba(43, 30, 11, 0.16);
}

.mobile-drawer .offcanvas-header {
    position: sticky;
    top: 0;
    z-index: 2;
    padding: max(1rem, env(safe-area-inset-top)) 1.25rem 1rem;
    background: #fffaf1;
    border-bottom: 1px solid rgba(173, 135, 64, 0.14);
}

.mobile-drawer .offcanvas-body {
    padding: 1rem 1.25rem max(1.5rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.mobile-drawer .offcanvas-body>*:last-child,
.mobile-drawer .mobile-nav-group:last-child {
    margin-bottom: 0;
}

.mobile-drawer .mobile-nav-group:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.mobile-drawer .btn-close {
    opacity: 0.75;
    box-shadow: none;
}

.offcanvas-backdrop.show {
    z-index: 1690;
}

.header-search--mobile {
    margin-top: 0.9rem;
    max-width: none;
}

.menu-root {
    gap: 1.05rem;
}

.desktop-nav .menu-item>a,
.desktop-nav .nav-links a {
    transition: opacity 0.2s ease, color 0.2s ease;
}

.desktop-nav .menu-item>a:hover,
.desktop-nav .nav-links a:hover {
    color: #f5c33b;
}

.mobile-nav-group {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.mobile-drawer__brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    max-width: 230px;
}

.mobile-drawer__brand img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

.mobile-drawer__search {
    width: 100%;
    max-width: none;
    margin-bottom: 1rem;
}

.mobile-mega-menu {
    display: grid;
    gap: 0.65rem;
}

.mobile-mega-item {
    overflow: hidden;
    border: 1px solid rgba(173, 135, 64, 0.18);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.82);
    box-shadow: 0 12px 24px rgba(59, 41, 14, 0.05);
}

.mobile-mega-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 54px;
    padding: 0.85rem 1rem;
    border: 0;
    background: transparent;
    color: var(--plum-deep);
    font-weight: 800;
    text-align: left;
}

.mobile-mega-toggle i {
    color: var(--plum);
    font-size: 0.82rem;
    transition: transform 0.2s ease;
}

.mobile-mega-toggle.is-open i {
    transform: rotate(180deg);
}

.mobile-mega-panel {
    padding: 0 1rem 1rem;
}

.mobile-mega-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: var(--plum-deep);
    color: #fffaf0;
    font-weight: 800;
}

.mobile-mega-panel__group {
    padding: 0.8rem 0;
    border-top: 1px solid rgba(173, 135, 64, 0.14);
}

.mobile-mega-panel__group h6 {
    margin: 0 0 0.65rem;
    color: var(--plum);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mobile-mega-panel__group a,
.mobile-mega-panel__footer a,
.mobile-service-links a {
    display: block;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.35;
}

.mobile-mega-panel__group a {
    padding: 0.42rem 0;
}

.mobile-mega-panel__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(173, 135, 64, 0.14);
}

.mobile-mega-panel__footer a {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(179, 146, 83, 0.1);
}

.mobile-service-links {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(173, 135, 64, 0.18);
}

.mobile-service-links a {
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(173, 135, 64, 0.14);
}

.hero-section {
    padding: 2rem 0 0;
}

.hero-slider-shell,
.trust-card,
.category-card,
.collection-band,
.product-card,
.footer-shell {
    background: var(--surface);
    border: 1px solid rgba(133, 104, 46, 0.12);
    box-shadow: var(--shadow);
}

.hero-slider-shell {
    border-radius: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-slide {
    display: none;
    min-height: 640px;
    border-radius: 30px;
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(245, 195, 59, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(244, 235, 215, 0.94));
}

.hero-slide.is-active {
    display: block;
}

.hero-copy {
    padding: 1rem 0.5rem 1rem 0;
}

.hero-copy h1 {
    font-size: clamp(2.9rem, 6vw, 5.6rem);
    line-height: 0.95;
    margin-bottom: 1rem;
}

.hero-copy p {
    max-width: 34ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.hero-media {
    min-height: 540px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(244, 234, 210, 0.98), rgba(255, 251, 245, 0.92));
}

.hero-media img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease, filter 0.6s ease;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 17, 9, 0.06), rgba(24, 17, 9, 0.18));
}

.hero-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 1;
    border-radius: 20px;
    padding: 1rem 1.15rem;
    background: rgba(255, 250, 242, 0.92);
    border: 1px solid rgba(173, 135, 64, 0.18);
    box-shadow: 0 18px 35px rgba(43, 30, 11, 0.14);
}

.hero-badge span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.hero-badge strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.hero-controls {
    margin-top: 1rem;
    padding-inline: 0;
    opacity: 0.92;
}

.hero-dots {
    display: flex;
    gap: 0.55rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: rgba(143, 113, 53, 0.24);
}

.hero-dot.active {
    width: 34px;
    border-radius: 999px;
    background: var(--rose);
}

.slider-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--plum-deep);
}

.floating-social {
    position: fixed;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.floating-social--left {
    left: 18px;
}

.floating-social a {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(243, 231, 201, 0.92));
    border: 1px solid rgba(173, 135, 64, 0.2);
    color: #6d501f;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 14px 28px rgba(59, 41, 14, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.floating-social a i {
    font-size: 1.05rem;
}

.floating-social a:hover {
    transform: translateY(-4px) scale(1.02);
    color: #2b1f0e;
    border-color: rgba(173, 135, 64, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 235, 202, 0.95));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 20px 34px rgba(59, 41, 14, 0.16);
}

.trust-section {
    padding-top: 1.45rem;
}

.trust-shell {
    max-width: 1540px;
    margin: 0 auto;
    position: relative;
}

.trust-shell::before {
    content: "";
    position: absolute;
    inset: 10px 16px;
    border-radius: 36px;
    pointer-events: none;
    opacity: 0.42;
    background:
        radial-gradient(circle at 12% 30%, rgba(172, 135, 66, 0.16) 0 2px, transparent 2px 100%),
        radial-gradient(circle at 86% 32%, rgba(245, 195, 59, 0.14) 0 2px, transparent 2px 100%),
        linear-gradient(90deg, rgba(173, 135, 64, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(173, 135, 64, 0.06) 1px, transparent 1px);
    background-size: auto, auto, 68px 68px, 68px 68px;
}

.trust-card {
    position: relative;
    min-height: 112px;
    padding: 1.15rem 1.45rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(246, 237, 219, 0.92));
    border: 1px solid rgba(173, 135, 64, 0.2);
    box-shadow:
        0 18px 40px rgba(43, 30, 11, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.36;
    background:
        radial-gradient(circle at 18% 18%, rgba(245, 195, 59, 0.18) 0 2px, transparent 2px 100%),
        repeating-linear-gradient(135deg, rgba(173, 135, 64, 0.035) 0 1px, transparent 1px 18px);
}

.trust-card i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background:
        linear-gradient(180deg, #fff9ed, #f1dfba);
    color: var(--plum);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 10px 24px rgba(135, 104, 46, 0.14);
}

.trust-card span {
    font-size: 1.02rem;
    font-weight: 600;
    color: #332617;
    letter-spacing: -0.01em;
}

.trust-card:hover {
    transform: translateY(-3px);
    border-color: rgba(173, 135, 64, 0.28);
    box-shadow:
        0 24px 48px rgba(43, 30, 11, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-media:hover img,
.category-card:hover img,
.product-card:hover .product-image img,
.collection-item-card:hover img,
.mini-banner:hover img,
.editorial-promo:hover img,
.prefooter-cta__image:hover img {
    transform: scale(1.05);
}

.icon-pill:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
    border-color: rgba(173, 135, 64, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 14px 26px rgba(59, 41, 14, 0.12);
}

.icon-pill--dark:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 230, 198, 0.94));
    border-color: rgba(173, 135, 64, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 14px 28px rgba(59, 41, 14, 0.14);
}

.section-space {
    padding: 5rem 0 0;
}

.section-space--compact {
    padding-top: 7rem;
}

.section-band {
    position: relative;
    overflow: hidden;
    margin-top: 2.25rem;
}

.section-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.84;
}

.section-band--collections {
    padding-bottom: 1rem;
    background:
        linear-gradient(180deg, rgba(248, 241, 224, 0.9) 0%, rgba(250, 246, 238, 0.92) 100%);
}

.section-band--collections::before {
    background:
        radial-gradient(circle at 18% 28%, rgba(172, 135, 66, 0.18) 0 2px, transparent 2px 100%),
        radial-gradient(circle at 74% 62%, rgba(245, 195, 59, 0.16) 0 2px, transparent 2px 100%),
        linear-gradient(90deg, rgba(173, 135, 64, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(173, 135, 64, 0.08) 1px, transparent 1px),
        linear-gradient(45deg, rgba(173, 135, 64, 0.05) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(173, 135, 64, 0.05) 1px, transparent 1px);
    background-size: auto, auto, 72px 72px, 72px 72px, 144px 144px, 144px 144px;
}

#bestsellers,
#bestsellers .container-fluid,
.bestseller-swiper-wrap {
    background: transparent;
}

#bestsellers .product-card {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

#bestsellers .product-body {
    background: #fffdfa;
}

.section-band--services {
    padding-bottom: 1rem;
    background:
        radial-gradient(circle at top right, rgba(245, 195, 59, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 236, 220, 0.72) 100%);
}

.section-band--services::before {
    background: none;
}

.section-band--expressions {
    padding-bottom: 0;
    background:
        radial-gradient(circle at top center, rgba(245, 195, 59, 0.16), transparent 32%),
        linear-gradient(180deg, #100b05 0%, #161006 100%);
}

.section-band--expressions::before {
    opacity: 0.48;
    background:
        radial-gradient(circle at 15% 18%, rgba(245, 195, 59, 0.16) 0 1.5px, transparent 1.5px 100%),
        radial-gradient(circle at 80% 34%, rgba(172, 135, 66, 0.15) 0 1.5px, transparent 1.5px 100%),
        linear-gradient(90deg, rgba(245, 195, 59, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(245, 195, 59, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(245, 195, 59, 0.06) 0 24%, transparent 24% 100%);
    background-size: auto, auto, 110px 110px, 110px 110px, 220px 220px;
}

.prefooter-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 252, 246, 0.98) 0%, rgba(242, 231, 204, 0.98) 100%);
    border: 1px solid rgba(173, 135, 64, 0.16);
    box-shadow: 0 24px 50px rgba(39, 28, 11, 0.08);
}

.prefooter-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.72;
    background:
        radial-gradient(circle at 12% 18%, rgba(172, 135, 66, 0.16) 0 2px, transparent 2px 100%),
        radial-gradient(circle at 84% 22%, rgba(245, 195, 59, 0.15) 0 2px, transparent 2px 100%),
        linear-gradient(45deg, rgba(173, 135, 64, 0.06) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(173, 135, 64, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 0 0, rgba(173, 135, 64, 0.1) 0 18%, transparent 18% 100%),
        radial-gradient(circle at 100% 100%, rgba(173, 135, 64, 0.08) 0 18%, transparent 18% 100%);
    background-size: auto, auto, 68px 68px, 68px 68px, 240px 240px, 240px 240px;
}

.prefooter-cta h2 {
    margin: 0.45rem 0 0.85rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    color: var(--plum-deep);
}

.prefooter-cta p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.prefooter-cta__copy {
    max-width: 680px;
}

.prefooter-cta__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.prefooter-cta__highlights span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(173, 135, 64, 0.14);
    color: var(--plum-deep);
    font-size: 0.86rem;
    font-weight: 700;
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.prefooter-cta__panel {
    padding: 1.5rem;
    border-radius: 28px;
    background:
        linear-gradient(135deg, #181109 0%, #3a2b12 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 40px rgba(24, 17, 9, 0.18);
    margin-top: 1.35rem;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.prefooter-cta__panel h3 {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.1rem;
}

.prefooter-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: flex-start;
}

.prefooter-cta__actions .btn-dark {
    background: #ffffff;
    color: var(--plum-deep) !important;
    border-color: #ffffff;
}

.prefooter-cta__actions .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: transparent;
}

.blog-detail__hero h1 {
    max-width: 900px;
    margin: 0.45rem 0 0.85rem;
    color: var(--ink);
    font-size: clamp(2.35rem, 5vw, 4.6rem);
    line-height: 1;
}

.blog-detail__hero p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(173, 135, 64, 0.14);
    border-radius: 8px;
    background: #fffdfa;
    box-shadow: var(--shadow);
}

.blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.blog-card__body span {
    color: var(--champagne);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 0.45rem 0 0.65rem;
    color: var(--ink);
    line-height: 1.12;
}

.blog-card p {
    flex: 1;
    color: var(--muted);
    line-height: 1.7;
}

.blog-card__body div,
.blog-detail__meta {
    color: rgba(56, 43, 25, 0.72);
    font-size: 0.9rem;
    font-weight: 700;
}

.blog-card__image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.blog-catalog-page {
    padding-top: clamp(2rem, 5vw, 4rem);
}

.blog-card--catalog {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-card--catalog:hover {
    transform: translateY(-3px);
    border-color: rgba(173, 135, 64, 0.26);
    box-shadow: 0 28px 58px rgba(59, 41, 14, 0.12);
}

.blog-filter-submit {
    width: 100%;
    border: 0;
    background: linear-gradient(180deg, rgba(51, 36, 14, 0.94), rgba(34, 24, 9, 0.94));
    color: #fff8eb;
}

.blog-detail {
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.blog-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.blog-detail-hero .blog-detail__meta {
    color: #fff8eb;
}

.blog-detail-hero .blog-detail__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.blog-detail__shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: start;
}

.blog-detail__article {
    min-width: 0;
}

.blog-detail__main-image {
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.blog-detail__main-image img {
    width: 100%;
    aspect-ratio: 16 / 8;
    display: block;
    object-fit: cover;
}

.blog-detail__body {
    width: 100%;
    padding: clamp(1.35rem, 3vw, 2.25rem);
    border: 1px solid rgba(173, 135, 64, 0.14);
    border-radius: 8px;
    background: rgba(255, 253, 250, 0.9);
    box-shadow: var(--shadow);
}

.blog-detail__body h2 {
    margin: 1.45rem 0 0.65rem;
    color: var(--ink);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.18;
}

.blog-detail__body h2:first-child {
    margin-top: 0;
}

.blog-detail__body p {
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.9;
}

.blog-detail__body blockquote {
    margin: 1.6rem 0;
    padding: 1.2rem 1.35rem;
    border-left: 4px solid var(--champagne);
    border-radius: 0 8px 8px 0;
    background: rgba(181, 143, 74, 0.1);
    color: var(--ink);
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    font-weight: 800;
    line-height: 1.55;
}

.blog-detail__aside {
    position: sticky;
    position: -webkit-sticky;
    top: 140px;
    align-self: start;
    max-height: calc(100vh - 160px);
    overflow: auto;
    padding: 1.35rem;
    border: 1px solid rgba(173, 135, 64, 0.14);
    border-radius: 8px;
    background: #fffdfa;
    box-shadow: 0 24px 48px rgba(59, 41, 14, 0.07);
}

.blog-detail__aside::-webkit-scrollbar {
    width: 6px;
}

.blog-detail__aside::-webkit-scrollbar-track {
    background: rgba(181, 143, 74, 0.08);
    border-radius: 999px;
}

.blog-detail__aside::-webkit-scrollbar-thumb {
    background: rgba(181, 143, 74, 0.34);
    border-radius: 999px;
}

.blog-detail__aside h2 {
    margin: 0.45rem 0 0.7rem;
    color: var(--ink);
    font-size: 1.45rem;
    line-height: 1.15;
}

.blog-detail__aside p {
    color: var(--muted);
    line-height: 1.7;
}

.blog-similar-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.blog-similar-card {
    display: grid;
    gap: 0.45rem;
    padding: 0.8rem;
    border: 1px solid rgba(173, 135, 64, 0.14);
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.82);
    color: inherit;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.blog-similar-card:hover {
    transform: translateY(-2px);
    border-color: rgba(173, 135, 64, 0.26);
    box-shadow: 0 18px 34px rgba(59, 41, 14, 0.1);
}

.blog-similar-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    object-fit: cover;
}

.blog-similar-card span {
    color: var(--champagne);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.blog-similar-card strong {
    color: var(--ink);
    line-height: 1.18;
}

.blog-similar-card small {
    color: rgba(56, 43, 25, 0.72);
    font-weight: 700;
}

.blog-detail__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 2rem;
}

@media (max-width: 991.98px) {
    .blog-detail__shell {
        grid-template-columns: 1fr;
    }

    .blog-detail__aside {
        position: static;
    }
}

.prefooter-cta__meta {
    margin-top: 1.15rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.prefooter-cta__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.prefooter-cta__highlights span:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(173, 135, 64, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 10px 18px rgba(73, 52, 18, 0.1);
}

.prefooter-cta__panel:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #251a0d 0%, #6c4e1f 100%);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 26px 46px rgba(40, 26, 8, 0.24);
}

.prefooter-cta__image {
    height: 100%;
    min-height: 360px;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.prefooter-cta__image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
}

.section-head {
    margin-bottom: 1.2rem;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 0;
}

.section-link {
    color: var(--plum);
    font-weight: 700;
}

.section-link:hover,
.section-link:focus {
    color: var(--champagne);
}

.category-card {
    min-height: 330px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(244, 234, 210, 0.98), rgba(255, 251, 245, 0.92));
}

.category-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.category-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent, rgba(24, 17, 9, 0.82));
    color: #fff8ed;
}

.category-overlay span {
    color: #ffe29b;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
}

.category-overlay h3 {
    font-size: 2rem;
    margin: 0.45rem 0 0.6rem;
}

.category-overlay p {
    margin: 0;
    color: rgba(255, 248, 236, 0.88);
}

.collection-band {
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.campaign-mosaic {
    position: relative;
}

.campaign-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 100%;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, rgba(244, 234, 210, 0.98), rgba(255, 251, 245, 0.92));
}

.campaign-card img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.7s ease, filter 0.45s ease;
}

.campaign-card--large {
    min-height: 660px;
}

.campaign-card--large img {
    height: 660px;
}

.campaign-card--small {
    min-height: 322px;
}

.campaign-card--small img {
    height: 322px;
}

.campaign-card--mobile {
    min-height: 340px;
}

.campaign-card--mobile img {
    height: 340px;
}

.campaign-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 17, 9, 0.05), rgba(24, 17, 9, 0.26));
}

.campaign-card:hover img {
    transform: scale(1.06);
}

.campaign-overlay {
    position: absolute;
    z-index: 1;
    color: #fff;
}

.campaign-overlay--bottom {
    left: 34px;
    bottom: 30px;
}

.campaign-overlay--right {
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}

.campaign-overlay--left {
    left: 34px;
    bottom: 30px;
}

.campaign-tag {
    display: inline-block;
    margin-bottom: 0.7rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff1c5;
}

.campaign-overlay h3 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    margin: 0 0 0.35rem;
    line-height: 0.95;
}

.campaign-overlay p {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
}

.campaign-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 1;
    padding: 0.8rem 1rem;
    border-radius: 0 20px 0 20px;
    background: rgba(143, 113, 53, 0.95);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.campaign-mobile {
    overflow: hidden;
}

.campaign-mobile .swiper-slide {
    height: auto;
}

.campaign-mobile-pagination {
    position: static;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.campaign-mobile-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    margin: 0 !important;
    background: rgba(143, 113, 53, 0.22);
    opacity: 1;
}

.campaign-mobile-pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 999px;
    background: var(--rose);
}

#campaigns {
    margin-top: 1rem;
}

.collections-carousel-section {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    position: relative;
}

.collections-carousel-section::before {
    content: "";
    position: absolute;
    inset: -8px 0 auto;
    height: calc(100% + 16px);
    pointer-events: none;
    opacity: 0.58;
    background:
        radial-gradient(circle at 22% 30%, rgba(172, 135, 66, 0.18) 0 2px, transparent 2px 100%),
        radial-gradient(circle at 78% 65%, rgba(245, 195, 59, 0.16) 0 2px, transparent 2px 100%),
        repeating-radial-gradient(circle at 50% 50%, rgba(173, 135, 64, 0.06) 0 2px, transparent 2px 28px);
}

.section-head--center {
    margin-bottom: 1.75rem;
}

.collections-swiper {
    overflow: hidden;
}

.collection-item-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 320px;
    background: linear-gradient(135deg, rgba(244, 234, 210, 0.98), rgba(255, 251, 245, 0.92));
}

.collection-item-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease, filter 0.45s ease;
}

.collection-item-card:hover img {
    transform: scale(1.05);
}

.collection-item-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 17, 9, 0.06), rgba(24, 17, 9, 0.42));
}

.collection-item-card__overlay {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 1;
    color: #fff;
}

.collection-item-card__overlay h3 {
    font-size: 2rem;
    margin: 0 0 0.2rem;
}

.collection-item-card__overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.collections-carousel-footer {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.collections-carousel-footer .btn {
    justify-self: center;
}

.collections-carousel-footer>div:last-child {
    justify-self: end;
}

.collections-pagination {
    position: static;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.collections-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    margin: 0 !important;
    background: rgba(143, 113, 53, 0.22);
    opacity: 1;
}

.collections-pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 999px;
    background: var(--rose);
}

.editorial-commerce {
    display: grid;
    gap: 1rem;
}

.editorial-promo,
.editorial-products,
.mini-banner {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #f7efdf;
    box-shadow: var(--shadow);
}

.editorial-promo {
    min-height: 360px;
}

.editorial-promo img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.editorial-promo::after,
.mini-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 17, 9, 0.04), rgba(55, 37, 13, 0.24));
}

.editorial-promo__overlay,
.mini-banner__overlay {
    position: absolute;
    z-index: 1;
}

.editorial-promo__overlay {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    max-width: 320px;
}

.editorial-promo__overlay h3 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 0 0 1rem;
}

.editorial-products {
    padding: 1.25rem;
    background: linear-gradient(180deg, #f7efdf 0%, #fffaf1 100%);
    min-height: 360px;
}

.mini-product-card {
    background: #fffdfa;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(173, 135, 64, 0.12);
}

.mini-product-card__image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mini-product-card__body {
    padding: 0.9rem;
}

.mini-product-card__body strong {
    display: block;
    font-size: 1.05rem;
    color: var(--plum-deep);
}

.mini-product-card__body p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.editorial-products__footer {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mini-banner {
    min-height: 220px;
    background: linear-gradient(135deg, rgba(246, 236, 212, 0.98), rgba(255, 253, 248, 0.94));
}

.mini-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.mini-banner--copy-left::after {
    background: linear-gradient(90deg, rgba(32, 17, 23, 0.62) 0%, rgba(32, 17, 23, 0.28) 42%, rgba(32, 17, 23, 0.06) 100%);
}

.mini-banner--tall,
.mini-banner--tall img {
    min-height: 220px;
    height: 220px;
}

.mini-banner__overlay h4 {
    font-size: clamp(1.15rem, 2vw, 2rem);
    line-height: 1.15;
    margin: 0 0 0.9rem;
    color: #fff;
}

.mini-banner__overlay--left {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 260px;
}

.mini-banner--copy-left .mini-banner__overlay--left {
    max-width: 210px;
}

.mini-banner--copy-left .mini-banner__overlay h4 {
    font-size: clamp(0.98rem, 1.45vw, 1.5rem);
    line-height: 1.05;
    text-wrap: balance;
}

.mini-banner--copy-left .mini-banner__overlay .btn {
    padding-inline: 1.2rem !important;
}

.mini-banner__overlay--right {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    max-width: 240px;
}

.mini-banner__overlay--center {
    left: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

@media (max-width: 991.98px) {
    .floating-social {
        top: 50%;
        right: 16px;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 0.6rem;
    }

    .floating-social--left {
        left: auto;
        right: 16px;
    }

    .floating-social a {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .media-skeleton {
        animation-duration: 2.1s;
    }

    .hero-media img,
    .campaign-card img,
    .collection-item-card img,
    .mini-banner img,
    .product-image img,
    .store-video-card__media,
    .expression-card video,
    .prefooter-cta__image img {
        transition-duration: 0.35s;
    }

    .expressions-column--down .expressions-track,
    .expressions-column--up .expressions-track {
        animation-duration: 28s;
    }

    .mega-catalog__main,
    .mega-catalog__columns,
    .mega-catalog__visuals {
        grid-template-columns: 1fr;
    }

    .collections-carousel-footer {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .collections-carousel-footer>div:last-child {
        justify-self: center;
    }

    .editorial-promo,
    .editorial-promo img {
        min-height: 300px;
        height: 300px;
    }

    .editorial-promo__overlay {
        right: 22px;
        max-width: 260px;
    }

    .editorial-products {
        min-height: auto;
    }

    .mini-banner,
    .mini-banner img,
    .mini-banner--tall,
    .mini-banner--tall img {
        min-height: 220px;
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .floating-social {
        top: 50%;
        right: 12px;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        flex-direction: column;
    }

    .floating-social--left {
        left: auto;
        right: 12px;
    }

    .floating-social a {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .floating-social a i {
        font-size: 0.95rem;
    }

    .hero-badge {
        box-shadow: 0 10px 20px rgba(82, 58, 19, 0.12);
    }

    .expressions-column--down .expressions-track,
    .expressions-column--up .expressions-track {
        animation-duration: 34s;
    }

    .collections-carousel-section {
        padding: 1.35rem;
    }

    .collection-item-card,
    .collection-item-card img {
        min-height: 280px;
        height: 280px;
    }

    .collection-item-card__overlay h3 {
        font-size: 1.8rem;
    }

    .editorial-promo,
    .editorial-promo img {
        min-height: 260px;
        height: 260px;
        width: 100%;
        max-width: 100%;
    }

    .editorial-commerce,
    .editorial-commerce .row,
    .editorial-commerce [class*="col-"] {
        min-width: 0;
        max-width: 100%;
    }

    .editorial-commerce {
        overflow: hidden;
    }

    .editorial-promo__overlay {
        left: 18px;
        right: 18px;
        top: auto;
        bottom: 18px;
        transform: none;
        max-width: none;
        text-align: left;
        overflow: hidden;
    }

    .editorial-promo__overlay h3 {
        font-size: 1.8rem;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .editorial-products {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .editorial-products__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .editorial-products__footer .btn {
        width: 100%;
    }

    .mini-banner,
    .mini-banner img,
    .mini-banner--tall,
    .mini-banner--tall img {
        min-height: 200px;
        height: 200px;
        width: 100%;
        max-width: 100%;
    }

    .mini-banner__overlay--left,
    .mini-banner__overlay--right,
    .mini-banner__overlay--center {
        left: 18px;
        right: 18px;
        top: auto;
        bottom: 18px;
        transform: none;
        text-align: left;
        max-width: none;
        overflow: hidden;
    }

    .mini-banner__overlay h4 {
        font-size: 1.35rem;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .mini-banner__overlay .btn {
        padding-inline: 1rem !important;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .mini-banner--copy-left .mini-banner__overlay--left {
        max-width: none;
    }

    .store-video-card,
    .store-locator-card,
    .store-video-card__media {
        min-height: 300px;
    }

    .store-video-card__overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .store-video-card__overlay h3 {
        font-size: 1.55rem;
    }

    .store-locator-card {
        padding: 1.5rem;
        min-height: auto;
    }

    .store-locator-card h2 {
        font-size: 2rem;
    }

    .store-locator-form__field {
        min-height: 56px;
        padding-right: 0.4rem;
    }

    .store-locator-highlights {
        font-size: 0.88rem;
    }
}

/* Product details requested fixes */
.product-details-page.section-space {
    padding-top: 1rem;
}

.product-details-page .product-mode-switcher {
    margin-top: 1rem;
}

.product-details-page .product-details-tags a {
    min-height: 42px;
    padding: 0.65rem 1rem;
    background: rgba(247, 239, 223, 0.94);
    border: 1px solid rgba(173, 135, 64, 0.28);
    color: var(--plum-deep);
    font-weight: 700;
}

.product-details-page .product-details-tags a:hover {
    background: rgba(241, 229, 204, 0.98);
    color: var(--plum-deep);
}

.store-nearby-section {
    display: grid;
}

.store-video-card,
.store-locator-card {
    position: relative;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.store-video-card {
    background: linear-gradient(135deg, rgba(247, 239, 223, 0.98), rgba(255, 253, 248, 0.94));
}

.store-video-card__media {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    border: 0;
    transition: transform 0.8s ease;
}

.store-video-card:hover .store-video-card__media {
    transform: scale(1.04);
}

.store-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(37, 24, 9, 0.06), rgba(52, 35, 12, 0.26));
}

.store-video-card__overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    color: #fff;
    max-width: 360px;
}

.store-video-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 0.95rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.store-video-card__overlay h3 {
    margin: 0;
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
    line-height: 1.08;
}

.store-locator-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.75rem, 3.2vw, 3rem);
    background: linear-gradient(135deg, #fff7eb 0%, #f5ead1 48%, #efe3c4 100%);
    border: 1px solid rgba(173, 135, 64, 0.14);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-locator-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.68;
    background:
        linear-gradient(90deg, rgba(173, 135, 64, 0.07) 1px, transparent 1px),
        linear-gradient(rgba(173, 135, 64, 0.07) 1px, transparent 1px),
        radial-gradient(circle at 18% 20%, rgba(245, 195, 59, 0.18) 0 2px, transparent 2px 100%),
        radial-gradient(circle at 50% 0, rgba(172, 135, 66, 0.08) 0 18%, transparent 18% 100%);
    background-size: 62px 62px, 62px 62px, auto, 180px 180px;
}

.store-locator-card h2 {
    margin: 0.4rem 0 0.9rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    color: var(--plum-deep);
    max-width: 560px;
}

.store-locator-card p {
    max-width: 520px;
    color: var(--muted);
    margin-bottom: 1.6rem;
    font-size: 1rem;
}

.store-locator-form {
    max-width: 640px;
}

.store-locator-form__field {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 62px;
    padding: 0.55rem 0.65rem 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(173, 135, 64, 0.18);
    box-shadow: 0 18px 36px rgba(85, 59, 20, 0.08);
}

.store-locator-form__field i {
    color: var(--champagne);
    font-size: 1rem;
}

.store-locator-form__field .form-control {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--plum-deep);
    font-weight: 600;
}

.store-locator-form__field .form-control::placeholder {
    color: rgba(88, 69, 31, 0.7);
}

.store-locator-form__action {
    border: 0;
    background: transparent;
    color: #8f7135;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 0.55rem;
}

.store-locator-highlights {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    color: var(--plum-deep);
    font-size: 0.92rem;
    font-weight: 600;
}

.store-locator-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.store-locator-highlights i {
    color: var(--champagne);
}

.expressions-section {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: transparent;
    box-shadow: none;
}

.expressions-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.48;
    background:
        radial-gradient(circle at 16% 24%, rgba(245, 195, 59, 0.28) 0 1.5px, transparent 1.5px 100%),
        radial-gradient(circle at 72% 68%, rgba(172, 135, 66, 0.24) 0 1.5px, transparent 1.5px 100%),
        linear-gradient(90deg, rgba(245, 195, 59, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(245, 195, 59, 0.045) 1px, transparent 1px);
    background-size: auto, auto, 120px 120px, 120px 120px;
}

.expressions-section__intro {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.expressions-section__intro .eyebrow {
    color: #f5c33b;
}

.expressions-section__intro h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.06;
    margin: 0.5rem 0 1rem;
}

.expressions-section__intro .btn {
    background: linear-gradient(135deg, #f5c33b, #ac8742);
    border: 0;
    color: #181109;
    font-weight: 700;
    box-shadow: 0 16px 32px rgba(104, 74, 24, 0.22);
}

.expressions-wall {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    height: 700px;
    overflow: hidden;
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.expressions-column {
    position: relative;
    overflow: hidden;
}

.expressions-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    will-change: transform;
}

.expressions-column--down .expressions-track {
    animation: expressions-scroll-down 18s linear infinite alternate;
}

.expressions-column--up .expressions-track {
    animation: expressions-scroll-up 18s linear infinite alternate;
}

.expression-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #1b140c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.expression-card--lg {
    height: 280px;
}

.expression-card--md {
    height: 200px;
}

.expression-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 7, 19, 0.02), rgba(16, 7, 19, 0.55));
}

.expression-card video,
.expression-card img,
.expression-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    object-fit: cover;
    transition: transform 0.75s ease, filter 0.45s ease;
}

.expression-card:hover video,
.expression-card:hover img,
.expression-card:hover iframe {
    transform: scale(1.04);
}

.cms-media-frame {
    background: #120c07;
}

@keyframes expressions-scroll-down {
    0% {
        transform: translateY(-12%);
    }

    100% {
        transform: translateY(6%);
    }
}

@keyframes expressions-scroll-up {
    0% {
        transform: translateY(6%);
    }

    100% {
        transform: translateY(-12%);
    }
}

.collection-band h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.collection-preview {
    min-height: 340px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.collection-preview img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.collection-tags {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.collection-tags span,
.filter-chip {
    padding: 0.78rem 1rem;
    border-radius: 999px;
    background: rgba(255, 252, 246, 0.92);
    border: 1px solid rgba(173, 135, 64, 0.16);
    font-weight: 700;
}

.filter-chip.active {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    color: #fff;
}

.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}

.product-card--interactive {
    display: flex;
    flex-direction: column;
}

.bestseller-swiper-wrap {
    overflow: hidden;
}

.bestseller-swiper {
    padding: 0.35rem 0 0.35rem;
}

.bestseller-swiper .swiper-slide {
    height: auto;
}

.bestseller-controls {
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.bestseller-pagination {
    position: static;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bestseller-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    margin: 0 !important;
    background: rgba(143, 113, 53, 0.18);
    opacity: 1;
}

.bestseller-pagination .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 999px;
    background: var(--rose);
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.product-card__media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 251, 242, 0.95), rgba(246, 237, 219, 0.92));
}

.product-card__track-wrap {
    overflow: hidden;
}

.product-card__track {
    display: flex;
    transition: transform 0.38s ease;
}

.product-card__slide {
    flex: 0 0 100%;
    display: block;
    text-decoration: none;
}

.product-card__nav {
    position: absolute;
    bottom: 0.9rem;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.94);
    color: var(--plum-deep);
    box-shadow: 0 8px 20px rgba(56, 39, 12, 0.12);
}

.product-card__nav--prev {
    left: 0.9rem;
}

.product-card__nav--next {
    left: 3.45rem;
}

.product-card__wishlist {
    position: absolute;
    top: 0.95rem;
    right: 0.95rem;
    z-index: 3;
}

.product-card__wishlist button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.95);
    color: var(--plum);
    box-shadow: 0 10px 22px rgba(56, 39, 12, 0.12);
}

.product-card__wishlist.is-wishlisted button {
    background: var(--plum-deep);
    color: #fff8eb;
}

.product-card__wishlist.is-wishlisted button i {
    color: #fff8eb;
}

.product-card__hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(28, 18, 6, 0.02), rgba(28, 18, 6, 0.2));
    transition: opacity 0.24s ease;
}

.product-card:hover .product-card__hover,
.product-card:focus-within .product-card__hover {
    opacity: 1;
    pointer-events: auto;
}

.product-card__similar {
    border: 0;
    border-radius: 999px;
    min-height: 38px;
    padding: 0.55rem 1rem;
    background: rgba(255, 250, 241, 0.96);
    color: var(--plum);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(56, 39, 12, 0.16);
}

.product-body {
    padding: 1.4rem;
}

.product-type {
    display: inline-block;
    color: var(--plum);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-size: 1.45rem;
    margin-bottom: 0.65rem;
    color: var(--plum-deep);
    transition: color 0.22s ease;
}

.product-card,
.product-card:visited,
.product-card:focus {
    color: inherit;
}

.product-card:hover h3,
.product-card:focus h3 {
    color: var(--champagne);
}

.product-card p,
.footer-copy {
    color: var(--muted);
}

.product-card__description {
    display: -webkit-box;
    min-height: 3.4em;
    margin-bottom: 0;
    overflow: hidden;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card__description.is-expanded {
    display: -webkit-box;
    min-height: 3.4em;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.product-card__description-toggle {
    display: none !important;
    margin-top: 0.35rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gold-strong);
    font-weight: 800;
}

.product-card__title-link {
    color: inherit;
    text-decoration: none;
}

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

.product-meta strong {
    font-size: 1.2rem;
}

.product-meta__pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-meta__pricing span {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-card__actions {
    margin-top: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-card__cta-form {
    flex: 1 1 auto;
}

.product-card__cta-form .btn {
    width: 100%;
}

.product-card__video-call {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(173, 135, 64, 0.22);
    background: rgba(255, 252, 246, 0.95);
    color: var(--gold-strong);
    box-shadow: 0 10px 22px rgba(56, 39, 12, 0.08);
    text-decoration: none;
}

.services-panel,
.story-panel,
.testimonial-band,
.footer-shell {
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.services-panel,
.story-panel {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding-inline: 0;
}

.services-panel h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.services-panel__intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.services-panel__intro>div:first-child {
    max-width: 760px;
}

.services-panel__intro p {
    margin: 0.8rem 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.services-panel__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.services-panel__chips span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(173, 135, 64, 0.16);
    color: var(--plum-deep);
    font-size: 0.84rem;
    font-weight: 700;
}

.story-panel h3,
.service-card h5,
.site-footer h6,
.mega-grid h6,
.mobile-nav-group h6 {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.story-panel h3 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.service-card {
    height: 100%;
    border-radius: 20px;
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease, background 0.28s ease;
}

.service-card i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f7ecd3, #f1e0b5);
    color: var(--champagne);
    margin-bottom: 1rem;
}

.service-card h5 {
    font-size: 1.15rem;
    margin-bottom: 0.55rem;
    color: var(--plum-deep);
}

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

.service-card:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(173, 135, 64, 0.24);
    box-shadow: 0 18px 34px rgba(83, 58, 19, 0.10);
}

.story-panel ul li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0.35rem;
}

.story-panel ul li:last-child {
    border-bottom: 0;
}

.story-panel span {
    color: var(--muted);
}

.quote-card {
    height: 100%;
    border-radius: 22px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
}

.quote-card p {
    color: var(--muted);
    line-height: 1.8;
}

.site-footer {
    margin-top: 5rem;
    padding: 5rem 0 2rem;
    background:
        linear-gradient(180deg, #181109 0%, #2f2211 58%, #3f2d13 100%);
    color: #f8efdc;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.46;
    background:
        linear-gradient(90deg, rgba(245, 195, 59, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(245, 195, 59, 0.055) 1px, transparent 1px),
        linear-gradient(45deg, rgba(245, 195, 59, 0.04) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(245, 195, 59, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 18% 20%, rgba(245, 195, 59, 0.20) 0 1.5px, transparent 1.5px 100%),
        radial-gradient(circle at 82% 70%, rgba(172, 135, 66, 0.20) 0 1.5px, transparent 1.5px 100%);
    background-size: 92px 92px, 92px 92px, 184px 184px, 184px 184px, auto, auto;
}

.site-footer a {
    display: block;
    margin-bottom: 0.55rem;
    color: rgba(248, 239, 220, 0.74);
}

.site-footer h6 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-shell {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.footer-topband {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-feature {
    height: 100%;
    padding: 1.3rem 1.35rem;
    border-radius: 24px;
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 18px 32px rgba(8, 3, 12, 0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.footer-feature i {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f5c33b;
    flex: 0 0 auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.footer-feature strong {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.98);
    font-size: 1rem;
}

.footer-feature p {
    margin: 0;
    color: rgba(248, 239, 220, 0.76);
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-feature:hover {
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 22px 38px rgba(8, 3, 12, 0.18);
}

.footer-links-grid {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-card {
    padding-left: 1.5rem;
}

.footer-address {
    color: rgba(248, 239, 220, 0.72);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-contact-list {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    color: rgba(248, 239, 220, 0.72);
}

.footer-help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-help-actions a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0;
    color: #f8efdc;
    font-size: 0.78rem;
    font-weight: 600;
}

.footer-help-actions i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.footer-help-actions a:hover i {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 12px 22px rgba(10, 4, 16, 0.16);
}

.footer-store-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 195, 59, 0.42);
    color: #ffffff !important;
    font-weight: 700;
    background: transparent;
}

.footer-utility-row {
    padding-top: 2rem;
}

.footer-social-wrap {
    margin-top: 1.75rem;
}

.footer-social-wrap>span {
    display: block;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-bottom {
    width: 100%;
    min-height: 100%;
    padding-top: 2rem;
    border-top: 0;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin-bottom: 0;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.footer-payments span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(248, 239, 220, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
}

.card-clickable {
    cursor: pointer;
}

.nav-trigger:hover,
.icon-pill:hover,
.slider-arrow:hover,
.filter-chip:hover,
.collection-tags span:hover,
.footer-social a:hover {
    transform: translateY(-2px);
}

@media (max-width: 1399.98px) {
    .mega-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .mega-card {
        grid-column: span 3;
    }

    .store-video-card,
    .store-locator-card,
    .store-video-card__media {
        min-height: 360px;
    }

    .expressions-wall {
        height: 640px;
    }
}

@media (max-width: 1199.98px) {
    .container-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }

    .header-row {
        padding-bottom: 0;
    }

    .brand-copy strong {
        font-size: 1.55rem;
    }

    .header-actions {
        flex-shrink: 0;
    }

    .hero-slide {
        min-height: auto;
        padding: 1.5rem;
    }

    .hero-copy h1 {
        font-size: 3.2rem;
    }

    .hero-media,
    .hero-media img {
        min-height: 460px;
        height: 460px;
    }

    .trust-card {
        min-height: 88px;
        padding: 1rem 1.1rem;
    }

    .trust-card span {
        font-size: 0.95rem;
    }

    .campaign-card--large,
    .campaign-card--large img {
        min-height: 520px;
        height: 520px;
    }

    .campaign-card--small,
    .campaign-card--small img {
        min-height: 250px;
        height: 250px;
    }

    .campaign-overlay h3 {
        font-size: 3rem;
    }

    .collection-preview,
    .collection-preview img {
        min-height: 300px;
        height: 300px;
    }

    .product-image img {
        height: 240px;
    }

    .expressions-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        height: 620px;
    }
}

@media (max-width: 991.98px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .topbar {
        padding: 0.55rem 0;
    }

    .topbar .container-fluid {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.35rem !important;
    }

    .topbar-links {
        width: 100%;
        gap: 0.85rem !important;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .topbar-links a {
        font-size: 0.78rem;
    }

    .topbar-marquee {
        width: 100%;
        flex-basis: 100%;
    }

    .header-shell {
        padding: 0.85rem 0 0.95rem;
    }

    .header-row {
        display: grid !important;
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 0.55rem !important;
        align-items: center;
    }

    .brand {
        min-width: 0;
        justify-content: center;
    }

    .brand-mark {
        padding: 0;
        max-width: 100%;
    }

    .brand-mark img {
        width: auto;
        height: auto;
        max-width: min(178px, 100%);
        max-height: 58px;
        object-fit: contain;
    }

    .nav-trigger {
        width: 42px;
        height: 42px;
        flex: 0 0 auto;
    }

    .header-actions {
        gap: 0.45rem !important;
        flex: 0 0 auto;
    }

    .mobile-account {
        display: none;
    }

    .icon-pill {
        width: 40px;
        min-width: 40px;
        height: 40px;
        padding: 0;
        border-width: 1px;
    }

    .icon-pill i,
    .nav-trigger i {
        font-size: 0.95rem;
    }

    .icon-pill b {
        width: 18px;
        height: 18px;
        font-size: 0.62rem;
    }

    .mobile-drawer {
        width: min(100vw, 420px);
    }

    .hero-section {
        padding-top: 1.2rem;
    }

    .hero-slide,
    .collection-band,
    .services-panel,
    .story-panel,
    .testimonial-band,
    .footer-shell {
        padding: 1.4rem;
    }

    .hero-copy {
        padding: 0;
        text-align: center;
    }

    .hero-copy p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-copy h1,
    .section-head h2,
    .collection-band h2,
    .services-panel h2 {
        font-size: 2.45rem;
    }

    .hero-media,
    .hero-media img {
        min-height: 420px;
        height: 420px;
    }

    .hero-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 0.85rem 1rem;
    }

    .hero-controls {
        flex-wrap: wrap;
        gap: 0.9rem;
    }

    .trust-card {
        border-radius: 24px;
        min-height: 82px;
        padding: 0.95rem 1rem;
    }

    .trust-card i {
        width: 48px;
        height: 48px;
    }

    .campaign-card--large,
    .campaign-card--large img {
        min-height: 440px;
        height: 440px;
    }

    .campaign-card--small,
    .campaign-card--small img {
        min-height: 240px;
        height: 240px;
    }

    .campaign-overlay h3 {
        font-size: 2.6rem;
    }

    .collection-tags {
        left: 14px;
        right: 14px;
        bottom: 14px;
        gap: 0.55rem;
    }

    .collection-tags span,
    .filter-chip {
        padding: 0.65rem 0.9rem;
        font-size: 0.85rem;
    }

    .bestseller-controls {
        flex-wrap: wrap;
        justify-content: center !important;
    }

    .services-panel,
    .story-panel,
    .testimonial-band {
        height: auto;
    }

    .footer-shell .row {
        row-gap: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch !important;
    }
}

@media (max-width: 767.98px) {
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-slide,
    .collection-band,
    .services-panel,
    .story-panel,
    .testimonial-band,
    .footer-shell {
        padding: 1.35rem;
    }

    .hero-copy h1,
    .section-head h2,
    .collection-band h2,
    .services-panel h2 {
        font-size: 2.05rem;
    }

    .hero-media,
    .hero-media img {
        min-height: 320px;
        height: 320px;
    }

    .category-card,
    .category-card img {
        min-height: 250px;
        height: 250px;
    }

    .campaign-card--large,
    .campaign-card--large img,
    .campaign-card--small,
    .campaign-card--small img {
        height: 260px;
        min-height: 260px;
    }

    .campaign-overlay--bottom,
    .campaign-overlay--left {
        left: 20px;
        bottom: 20px;
    }

    .campaign-overlay--right {
        right: 20px;
        left: 20px;
        text-align: left;
        top: auto;
        bottom: 20px;
        transform: none;
    }

    .campaign-overlay h3 {
        font-size: 2.2rem;
    }

    .campaign-overlay p {
        font-size: 0.95rem;
    }

    .campaign-badge {
        top: 16px;
        right: 16px;
        padding: 0.6rem 0.75rem;
        font-size: 0.68rem;
    }

    .section-head {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .filter-pills {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap !important;
        padding-bottom: 14px;
        margin-bottom: 6px;
        scrollbar-width: thin;
        scrollbar-color: rgba(83, 55, 109, 0.28) transparent;
    }

    .filter-chip {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .filter-pills::-webkit-scrollbar {
        height: 8px;
    }

    .filter-pills::-webkit-scrollbar-track {
        background: transparent;
    }

    .filter-pills::-webkit-scrollbar-thumb {
        background: rgba(83, 55, 109, 0.24);
        border-radius: 999px;
    }

    .product-image img {
        height: 220px;
    }

    .product-body,
    .service-card,
    .quote-card {
        padding: 1.1rem;
    }

    .bestseller-controls {
        margin-top: 1rem !important;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center !important;
    }

    .footer-social {
        justify-content: center;
        width: 100%;
    }

    .expressions-section {
        padding: 1.25rem;
    }

    .expressions-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        height: 520px;
    }

    .expression-card {
        border-radius: 18px;
    }

    .expression-card--lg {
        height: 220px;
    }

    .expression-card--md {
        height: 160px;
    }
}

@media (max-width: 575.98px) {
    .brand-mark {
        padding: 0;
    }

    .brand-mark img {
        width: auto;
        height: auto;
        max-width: min(150px, 100%);
        max-height: 46px;
        object-fit: contain;
    }

    .hero-copy h1,
    .section-head h2,
    .collection-band h2,
    .services-panel h2 {
        font-size: 1.8rem;
    }

    .hero-copy p {
        font-size: 0.92rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .editorial-promo,
    .mini-banner {
        border-radius: 20px;
    }

    .editorial-promo,
    .editorial-promo img {
        min-height: 240px;
        height: 240px;
    }

    .editorial-promo__overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .editorial-promo__overlay h3 {
        font-size: 1.55rem;
        line-height: 1.08;
    }

    .editorial-promo__overlay .btn {
        max-width: 100%;
        white-space: normal;
    }

    .mini-banner,
    .mini-banner img,
    .mini-banner--tall,
    .mini-banner--tall img {
        min-height: 190px;
        height: 190px;
    }

    .mini-banner__overlay--left,
    .mini-banner__overlay--right,
    .mini-banner__overlay--center {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .mini-banner__overlay h4,
    .mini-banner--copy-left .mini-banner__overlay h4 {
        font-size: 1.18rem;
        line-height: 1.12;
    }

    .hero-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        border-radius: 16px;
    }

    .hero-badge strong {
        font-size: 1rem;
    }

    .trust-card {
        gap: 0.8rem;
        padding: 0.9rem;
    }

    .trust-card span {
        font-size: 0.92rem;
    }

    .trust-card i {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }

    .collection-tags {
        gap: 0.45rem;
    }

    .collection-tags span {
        padding: 0.55rem 0.75rem;
        font-size: 0.78rem;
    }

    .store-video-card,
    .store-video-card__media {
        min-height: 260px;
    }

    .store-video-card__overlay h3 {
        font-size: 1.35rem;
    }

    .store-locator-card h2 {
        font-size: 1.75rem;
    }

    .store-locator-card p {
        font-size: 0.92rem;
    }

    .store-locator-form__field {
        gap: 0.6rem;
        min-height: 54px;
        padding: 0.55rem 0.4rem 0.55rem 0.8rem;
    }

    .store-locator-form__action {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        padding: 0 0.3rem;
    }

    .expressions-section__intro {
        margin-bottom: 1rem;
    }

    .expressions-section__intro h2 {
        font-size: 1.8rem;
    }

    .expressions-wall {
        height: 440px;
    }

    .expressions-column:nth-child(n+3) {
        display: none;
    }

    .expression-card--lg {
        height: 180px;
    }

    .expression-card--md {
        height: 132px;
    }

    .story-panel ul li {
        padding: 0.8rem 0;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}

.catalog-page,
.product-details-page,
.admin-page {
    position: relative;
}

.admin-layout-body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(245, 195, 59, 0.08), transparent 18%),
        linear-gradient(180deg, #fffdfa 0%, #f4ecdb 100%);
}

.auth-layout-body {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(201, 162, 74, 0.08) 25%, transparent 25%) 0 0/42px 42px,
        linear-gradient(315deg, rgba(201, 162, 74, 0.05) 25%, transparent 25%) 0 0/42px 42px,
        radial-gradient(circle at top left, rgba(245, 195, 59, 0.08), transparent 18%),
        radial-gradient(circle at top right, rgba(172, 135, 66, 0.08), transparent 20%),
        linear-gradient(180deg, #fffdfa 0%, #f4ecdb 100%);
    position: relative;
    overflow-x: hidden;
}

.auth-layout-body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.72) 0 16%, transparent 16%),
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.5) 0 14%, transparent 14%),
        radial-gradient(circle at 80% 82%, rgba(198, 161, 88, 0.1) 0 18%, transparent 18%),
        linear-gradient(45deg, rgba(146, 109, 46, 0.06) 25%, transparent 25%) 0 0/38px 38px,
        linear-gradient(-45deg, rgba(146, 109, 46, 0.04) 25%, transparent 25%) 0 0/38px 38px;
}

.auth-layout-shell {
    min-height: 100vh;
    padding: 1.2rem;
    display: grid;
    align-content: center;
    position: relative;
    z-index: 1;
}

.auth-layout-home {
    width: min(100%, 1180px);
    margin: 0 auto 1rem;
    display: flex;
    justify-content: flex-start;
}

.auth-layout-home .btn {
    border-color: rgba(122, 90, 38, 0.22);
    background: rgba(255, 252, 245, 0.84);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 24px rgba(71, 47, 14, 0.08);
}

.auth-page {
    width: 100%;
}

.auth-shell {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border-radius: 38px;
    overflow: hidden;
    background: rgba(255, 252, 245, 0.86);
    border: 1px solid rgba(173, 135, 64, 0.16);
    box-shadow: 0 28px 68px rgba(59, 41, 14, 0.12);
    backdrop-filter: blur(18px);
}

.auth-showcase {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.8rem);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(41, 27, 10, 0.94), rgba(83, 57, 22, 0.92)),
        linear-gradient(45deg, rgba(212, 172, 84, 0.1), transparent);
    color: #fff7e7;
    box-shadow: 0 28px 60px rgba(44, 27, 8, 0.22);
    min-height: 540px;
    height: 100%;
    display: grid;
    align-content: center;
}

.auth-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 227, 162, 0.2) 0 12%, transparent 12%),
        radial-gradient(circle at 80% 78%, rgba(255, 217, 122, 0.14) 0 15%, transparent 15%),
        linear-gradient(45deg, rgba(255, 223, 152, 0.08) 25%, transparent 25%) 0 0/34px 34px,
        linear-gradient(-45deg, rgba(255, 223, 152, 0.06) 25%, transparent 25%) 0 0/34px 34px;
}

.auth-showcase>* {
    position: relative;
    z-index: 1;
}

.auth-showcase .eyebrow {
    color: #f0cf85;
}

.auth-showcase h1 {
    margin: 0.4rem 0 0.9rem;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.04;
    color: #fff7e7;
    max-width: 13ch;
}

.auth-showcase p {
    margin: 0;
    max-width: 62ch;
    color: rgba(255, 247, 231, 0.82);
    font-size: 1rem;
}

.auth-showcase__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.auth-showcase__highlights span {
    display: inline-flex;
    align-items: center;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(240, 207, 133, 0.22);
    background: rgba(255, 250, 240, 0.08);
    backdrop-filter: blur(10px);
    color: #fff6df;
    font-weight: 600;
}

.auth-showcase__panel {
    margin-top: 1.5rem;
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    background: rgba(255, 248, 235, 0.08);
    border: 1px solid rgba(240, 207, 133, 0.2);
    backdrop-filter: blur(12px);
}

.auth-showcase__panel h3 {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
    color: #f0cf85;
}

.auth-showcase__panel p {
    margin: 0;
    font-size: 0.95rem;
}

.auth-showcase--register {
    align-content: space-between;
}

.auth-showcase--register h1 {
    font-size: clamp(1.85rem, 3.2vw, 3rem);
    line-height: 1.08;
    max-width: 11ch;
    margin-bottom: 0.8rem;
}

.auth-showcase--register p {
    max-width: 46ch;
    font-size: 0.98rem;
}

.auth-showcase--register .auth-showcase__highlights {
    gap: 0.7rem;
    margin-top: 1.35rem;
}

.auth-showcase--register .auth-showcase__highlights span {
    padding: 0.72rem 0.92rem;
    font-size: 0.94rem;
}

.auth-showcase--register .auth-showcase__panel {
    margin-top: 1.2rem;
    padding: 1rem 1.08rem;
    border-radius: 22px;
}

.auth-showcase--register .auth-showcase__panel h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.auth-showcase--register .auth-showcase__panel p {
    font-size: 0.92rem;
}

.auth-card {
    width: 100%;
    min-height: 540px;
    margin: 0;
    padding: clamp(1.7rem, 3vw, 2.5rem);
    /* background: #f5ecdb; */
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: center;
}

.auth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background:
        radial-gradient(circle at 88% 9%, rgba(255, 255, 255, 0.55) 0 14%, transparent 14%),
        linear-gradient(45deg, rgba(194, 154, 74, 0.06) 25%, transparent 25%) 0 0/28px 28px,
        linear-gradient(-45deg, rgba(194, 154, 74, 0.04) 25%, transparent 25%) 0 0/28px 28px;
}

.auth-card>* {
    position: relative;
    z-index: 1;
}

.auth-card__brand {
    margin-bottom: 1.4rem;
}

.auth-card__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    margin-bottom: 1rem;
}

.auth-card__logo img {
    display: block;
    height: 76px;
    width: auto;
}

.auth-card__brand h1 {
    margin: 0.45rem 0 0.6rem;
}

.auth-card__brand p {
    margin: 0;
    color: var(--plum-muted);
    max-width: 34ch;
}

.auth-notice {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(195, 154, 74, 0.12);
    border: 1px solid rgba(195, 154, 74, 0.2);
    color: var(--gold-strong);
    font-weight: 600;
}

.auth-form {
    display: grid;
    gap: 1rem;
}

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

.auth-form .form-control {
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(173, 135, 64, 0.18);
    background: #fff;
    box-shadow: none;
    padding-inline: 1rem;
}

.auth-form .form-control:focus {
    border-color: #c89e42;
    box-shadow: 0 0 0 4px rgba(200, 158, 66, 0.12);
}

.auth-form__helper {
    display: flex;
    justify-content: flex-end;
    font-size: 0.92rem;
}

.auth-password-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.55rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.auth-password-toggle input {
    width: 16px;
    height: 16px;
    accent-color: var(--champagne);
}

.auth-password-alert {
    display: block;
    margin-top: 0.45rem;
    color: #b42318;
    font-size: 0.86rem;
    font-weight: 700;
}

.auth-form__helper a {
    color: var(--gold-strong);
    font-weight: 700;
    text-decoration: none;
}

.auth-card__meta {
    margin-top: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--plum-muted);
}

.auth-card__meta a {
    color: var(--plum);
    font-weight: 700;
}

.auth-resend-form {
    margin: 0;
}

.auth-resend-form button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--plum);
    font-weight: 700;
}

.auth-resend-form button:disabled {
    color: var(--muted);
    cursor: not-allowed;
    opacity: 0.65;
}

.auth-otp-timer {
    margin-top: 0.65rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

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

.auth-logout-form {
    margin-top: 0.9rem;
}

.account-page__toolbar {
    margin-bottom: 1.5rem;
}

.account-page__shell {
    display: grid;
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.account-page__sidebar,
.account-panel {
    border-radius: 32px;
    border: 1px solid rgba(181, 143, 74, 0.16);
    background: linear-gradient(180deg, rgba(251, 245, 232, 0.96), rgba(247, 239, 223, 0.92));
    box-shadow: 0 24px 48px rgba(59, 41, 14, 0.07);
}

.account-page__sidebar {
    position: sticky;
    top: 132px;
    padding: 1.45rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.account-page__sidebar-head h2 {
    margin: 0.3rem 0 0.25rem;
    font-size: 1.55rem;
}

.account-page__sidebar-head p {
    margin: 0;
    color: var(--plum-muted);
    word-break: break-word;
}

.account-page__nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.account-page__nav-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(181, 143, 74, 0.12);
    background: rgba(255, 252, 246, 0.76);
    color: var(--ink-soft);
    text-decoration: none;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.account-page__nav-link:hover,
.account-page__nav-link.is-active {
    border-color: rgba(51, 36, 14, 0.18);
    background: linear-gradient(180deg, rgba(51, 36, 14, 0.94), rgba(34, 24, 9, 0.94));
    color: #fff8eb;
    box-shadow: 0 14px 28px rgba(31, 21, 7, 0.14);
    transform: translateY(-1px);
}

.account-page__nav-link span {
    flex: 1 1 auto;
    font-weight: 700;
}

.account-page__nav-link b {
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    background: rgba(181, 143, 74, 0.14);
    color: inherit;
}

.account-page__logout {
    margin-top: auto;
}

.account-page__logout .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.account-panel {
    padding: 1.55rem;
}

.account-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.account-panel__header h2 {
    margin: 0.28rem 0 0.35rem;
}

.account-panel__header p {
    margin: 0;
    color: var(--plum-muted);
}

.account-panel__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.account-panel__stats span {
    display: inline-flex;
    align-items: center;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(181, 143, 74, 0.14);
    background: rgba(255, 252, 246, 0.78);
    font-weight: 700;
    color: var(--ink-soft);
}

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

.account-panel__form-full {
    grid-column: 1 / -1;
}

.account-panel__save {
    min-width: 200px;
    margin-top: 1rem;
}

.account-panel__table {
    padding: 0;
    background: rgba(255, 252, 246, 0.62);
}

.admin-layout {
    min-height: 100vh;
    display: block;
    background:
        radial-gradient(circle at top right, rgba(205, 165, 83, 0.08), transparent 24%),
        linear-gradient(180deg, #f8f1e4 0%, #f7efdf 100%);
}

.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 292px;
    height: 100vh;
    max-height: 100vh;
    padding: 1.5rem 1.15rem;
    background: linear-gradient(180deg, #181109 0%, #2f2211 100%);
    border-right: 1px solid rgba(172, 135, 66, 0.14);
    display: grid;
    align-content: start;
    gap: 1.15rem;
    overflow-y: auto;
    box-shadow: inset -1px 0 0 rgba(255, 243, 220, 0.04);
    scrollbar-width: thin;
    scrollbar-color: rgba(205, 165, 83, 0.28) transparent;
}

.admin-sidebar::-webkit-scrollbar {
    width: 8px;
}

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

.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(205, 165, 83, 0.24);
    border-radius: 999px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(205, 165, 83, 0.38);
}

.admin-brand {
    display: grid;
    gap: 0.6rem;
    padding: 0.4rem 0.15rem 0.8rem;
    border-bottom: 1px solid rgba(205, 165, 83, 0.14);
    text-decoration: none;
}

.admin-brand__mark {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    background: transparent;
}

.admin-brand__mark img {
    display: block;
    max-width: 212px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.admin-brand__copy {
    display: none;
}

.admin-sidebar__section {
    display: grid;
    gap: 0.8rem;
}

.admin-sidebar__label {
    color: rgba(248, 239, 220, 0.56);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding-inline: 0.4rem;
}

.admin-nav {
    display: grid;
    gap: 0.35rem;
}

.admin-nav a,
.admin-nav__dropdown summary {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 46px;
    padding: 0.8rem 0.9rem;
    border-radius: 14px;
    color: rgba(248, 239, 220, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, color 0.22s ease;
    width: 100%;
    min-width: 0;
    overflow: visible;
    text-decoration: none;
}

.admin-nav__dropdown summary {
    cursor: pointer;
    list-style: none;
}

.admin-nav__dropdown summary::-webkit-details-marker {
    display: none;
}

.admin-nav a i,
.admin-nav__dropdown summary i {
    width: 18px;
    flex: 0 0 18px;
    text-align: center;
    color: #f5c33b;
}

.admin-nav a span,
.admin-nav__dropdown summary span,
.admin-nav__button span {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-nav a:hover,
.admin-nav a.is-active,
.admin-nav__dropdown summary:hover,
.admin-nav__dropdown summary.is-active {
    background: linear-gradient(180deg, rgba(245, 195, 59, 0.12), rgba(172, 135, 66, 0.05));
    border-color: rgba(245, 195, 59, 0.14);
    color: #fff8ed;
    transform: translateX(0);
    box-shadow: inset 3px 0 0 rgba(245, 195, 59, 0.95);
}

.admin-nav__chevron {
    margin-left: auto;
    transform: rotate(0deg);
    transition: transform 0.22s ease;
}

.admin-nav__dropdown[open] .admin-nav__chevron {
    transform: rotate(180deg);
}

.admin-nav__submenu {
    display: grid;
    gap: 0.25rem;
    margin-top: 0.3rem;
    padding-left: 1.2rem;
}

.admin-nav__submenu a {
    min-height: 40px;
    font-size: 0.9rem;
}

.admin-nav--secondary a {
    color: rgba(248, 239, 220, 0.72);
}

.admin-main {
    min-width: 0;
    margin-left: 292px;
    min-height: 100vh;
    padding: 2.15rem 2.25rem;
    display: grid;
    align-content: start;
}

.admin-page--standalone {
    padding: 0;
}

.admin-page--standalone .admin-toolbar,
.admin-page--standalone .admin-stats,
.admin-page--standalone .admin-table-wrap,
.admin-page--standalone .admin-form-shell,
.admin-page--standalone .taxonomy-grid {
    margin-left: 0;
    margin-right: 0;
}

.admin-content-grid .taxonomy-card {
    min-height: 100%;
}

.admin-footer {
    margin-top: 1.85rem;
    padding: 1rem 0 0.2rem;
    color: rgba(91, 68, 35, 0.72);
    font-size: 0.84rem;
    border-top: 1px solid rgba(173, 135, 64, 0.16);
}

.catalog-toolbar,
.admin-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.catalog-toolbar h1,
.admin-toolbar h1,
.admin-form-shell h1,
.product-details-copy h1 {
    margin-bottom: 0.65rem;
}

.catalog-toolbar p {
    max-width: 42rem;
    margin-bottom: 0;
    color: var(--plum-muted);
}

.catalog-sort {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-radius: 22px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.catalog-sort label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-muted);
}

.catalog-sort__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.catalog-layout {
    display: grid;
    grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.catalog-filters,
.catalog-results,
.product-details-shell,
.admin-form-shell,
.admin-table-wrap,
.taxonomy-card {
    background: linear-gradient(180deg, rgba(251, 245, 232, 0.96), rgba(247, 239, 223, 0.92));
    border: 1px solid rgba(181, 143, 74, 0.16);
    border-radius: 32px;
    box-shadow: 0 24px 48px rgba(59, 41, 14, 0.07);
}

.catalog-filters {
    padding: 1.35rem;
    position: sticky;
    top: 140px;
    background: linear-gradient(180deg, rgba(251, 247, 238, 0.9), rgba(246, 237, 218, 0.82));
    border-color: rgba(181, 143, 74, 0.14);
    box-shadow: 0 22px 42px rgba(59, 41, 14, 0.06);
}

.catalog-mobile-backdrop,
.catalog-mobile-filter-head,
.catalog-mobile-actions {
    display: none;
}

.catalog-filter-form {
    display: grid;
    gap: 1.2rem;
}

.catalog-filter-group {
    display: grid;
    gap: 0.7rem;
}

.catalog-filter-group h4 {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--plum-muted);
}

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

.catalog-choice.is-hidden {
    display: none;
}

.catalog-filter-toggle {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 38px;
    padding: 0.35rem 0;
    border: 0;
    background: transparent;
    color: var(--gold-strong);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.catalog-filter-toggle:hover {
    color: var(--ink-strong);
}

.catalog-filter-toggle i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.catalog-results,
.product-details-shell,
.admin-form-shell,
.admin-table-wrap {
    padding: 1.6rem;
}

.catalog-results {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0.2rem 0 0;
}

.catalog-summary {
    margin-bottom: 1.1rem;
    color: var(--plum-muted);
}

.catalog-empty {
    padding: 3rem 1.2rem;
    text-align: center;
}

.catalog-empty p {
    max-width: 32rem;
    margin: 0.75rem auto 1.2rem;
    color: var(--plum-muted);
}

.order-confirmation-page {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
}

.order-confirmation-shell {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 58vh;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.order-confirmation-card {
    position: relative;
    z-index: 2;
    width: min(760px, 92vw);
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
    border-radius: 34px;
    background: rgba(255, 252, 246, 0.88);
    border: 1px solid rgba(181, 143, 74, 0.18);
    box-shadow: 0 26px 54px rgba(59, 41, 14, 0.09);
}

.order-confirmation-check {
    display: inline-grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    color: #24180b;
    background: linear-gradient(135deg, #f2ca62, #b58f37);
    box-shadow: 0 18px 36px rgba(181, 143, 55, 0.28);
    animation: order-check-pop 0.68s cubic-bezier(0.2, 1.35, 0.45, 1) both;
}

.order-confirmation-check i {
    font-size: 2.1rem;
}

.order-confirmation-card h1 {
    margin: 0.35rem 0 0.9rem;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.order-confirmation-card p {
    max-width: 36rem;
    margin: 0 auto 1.6rem;
    color: var(--plum-muted);
    line-height: 1.75;
}

.order-confirmation-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 1.7rem 0;
}

.order-confirmation-meta div {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(245, 236, 218, 0.72);
    border: 1px solid rgba(181, 143, 74, 0.14);
}

.order-confirmation-meta span {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--plum-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.order-confirmation-meta strong {
    color: var(--ink-strong);
    font-size: 1.05rem;
}

.order-confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.order-sparkles span {
    position: absolute;
    top: -32px;
    width: 12px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f4c95d, #9f7a2e);
    opacity: 0.85;
    animation: order-sparkle-fall 3.2s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.order-sparkles span:nth-child(1) { left: 12%; animation-delay: 0s; }
.order-sparkles span:nth-child(2) { left: 26%; animation-delay: 0.45s; }
.order-sparkles span:nth-child(3) { left: 43%; animation-delay: 0.9s; }
.order-sparkles span:nth-child(4) { left: 58%; animation-delay: 0.2s; }
.order-sparkles span:nth-child(5) { left: 74%; animation-delay: 0.7s; }
.order-sparkles span:nth-child(6) { left: 88%; animation-delay: 1.05s; }

@keyframes order-check-pop {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes order-sparkle-fall {
    0% {
        transform: translateY(-40px) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(68vh) rotate(300deg);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .order-confirmation-meta {
        grid-template-columns: 1fr;
    }
}

.product-card--catalog {
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(249, 243, 230, 0.92));
    border: 1px solid rgba(181, 143, 74, 0.12);
    box-shadow: 0 16px 34px rgba(59, 41, 14, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card--catalog:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(59, 41, 14, 0.1);
}

.product-card--catalog .product-image img {
    height: 290px;
}

.nav-pill--services {
    gap: 0.45rem;
}

.similar-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 13, 4, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1800;
}

.similar-drawer {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 1900;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.similar-drawer.is-visible {
    transform: translateY(0);
}

.similar-drawer-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.similar-drawer__sheet {
    background: rgba(255, 252, 246, 0.98);
    border-radius: 28px 28px 0 0;
    padding: 1.4rem 1.2rem 1.6rem;
    box-shadow: 0 -28px 60px rgba(18, 12, 5, 0.22);
}

.similar-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.similar-drawer__head strong {
    color: var(--plum-deep);
    font-size: 1.05rem;
}

.similar-drawer__close,
.similar-drawer__arrow {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(55, 38, 13, 0.96);
    color: #fff7e7;
}

.similar-drawer__body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
}

.similar-drawer__viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.similar-drawer__viewport::-webkit-scrollbar {
    display: none;
}

.similar-drawer__track {
    display: flex;
    gap: 1rem;
}

.similar-item {
    min-width: 220px;
    max-width: 220px;
}

.similar-item__image {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(247, 239, 223, 0.9);
    border: 1px solid rgba(173, 135, 64, 0.16);
}

.similar-item__image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.similar-item__body {
    padding-top: 0.8rem;
}

.similar-item__pricing {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
    margin-bottom: 0.3rem;
}

.similar-item__pricing strong {
    color: var(--plum);
    font-size: 1rem;
}

.similar-item__pricing span {
    color: var(--muted);
    font-size: 0.84rem;
    text-decoration: line-through;
}

.similar-item__title {
    color: var(--ink-strong);
    font-weight: 700;
    text-decoration: none;
    line-height: 1.45;
}

.catalog-choice {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.catalog-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog-choice span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(181, 143, 74, 0.16);
    background: rgba(255, 252, 246, 0.92);
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-choice input:checked+span {
    background: linear-gradient(180deg, rgba(51, 36, 14, 0.94), rgba(34, 24, 9, 0.94));
    border-color: rgba(51, 36, 14, 0.94);
    color: #fff8eb;
    box-shadow: 0 10px 20px rgba(31, 21, 7, 0.16);
}

.catalog-choice--radio span {
    min-height: 42px;
    background: rgba(255, 250, 240, 0.84);
}

.catalog-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(181, 143, 74, 0.16);
    background: rgba(255, 252, 246, 0.9);
    color: var(--gold-strong);
    font-weight: 700;
    text-decoration: none;
}

.product-details-media {
    overflow: visible;
    border-radius: 28px;
    background: transparent;
}

.product-details-copy {
    padding: 0.8rem 0.2rem;
}

.product-details-lead {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 44rem;
}

.product-details-copy p {
    color: var(--plum-muted);
}

.product-section-label {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: var(--plum-deep);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-mode-switcher {
    margin-top: 1.2rem;
}

.product-mode-switcher__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.product-mode-switcher__list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(173, 135, 64, 0.2);
    color: var(--plum-deep);
    font-weight: 700;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.product-mode-switcher__list a:hover,
.product-mode-switcher__list a.is-active {
    background: linear-gradient(135deg, #f5c33b, #ac8742);
    border-color: rgba(172, 135, 66, 0.42);
    color: #181109;
    transform: translateY(-1px);
}

.product-details-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.4rem 0 1rem;
}

.product-details-price strong {
    font-size: 2rem;
}

.product-details-price span {
    color: rgba(89, 67, 28, 0.45);
    text-decoration: line-through;
}

.product-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.product-details-meta span,
.product-details-tags a,
.admin-pill,
.admin-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
}

.product-details-meta span {
    gap: 0.32rem;
    background: rgba(247, 239, 223, 0.96);
    color: var(--plum-deep);
}

.product-details-meta span strong {
    font-weight: 800;
}

.product-details-meta span em {
    font-style: normal;
    font-weight: 500;
}

.product-size-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(173, 135, 64, 0.28);
    background: rgba(247, 239, 223, 0.94);
    color: var(--plum-deep);
    font-weight: 700;
}

.product-details-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.product-details-tags a,
.admin-pill {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(173, 135, 64, 0.28);
    color: var(--plum-deep);
    text-decoration: none;
}

.info-page-shell {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.info-page-list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.8rem;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-page__hero {
    margin-bottom: 0;
}

.contact-page__hero .about-story-hero__content h1 {
    max-width: 10ch;
}

.contact-page__content.section-space {
    padding-top: clamp(3rem, 5vw, 5rem);
}

.contact-page__form-card,
.contact-page__details {
    min-height: 100%;
}

.contact-page__details {
    display: block;
    padding: clamp(1.4rem, 2.4vw, 2rem);
}

.contact-page__details h3 {
    margin: 0.45rem 0 0.65rem;
    line-height: 1.08;
}

.contact-page__brand-logo {
    display: block;
    width: min(320px, 100%);
    height: auto;
    margin: 0.55rem 0 0.8rem;
}

.contact-page__details p {
    margin: 0;
    color: var(--plum-muted);
    line-height: 1.65;
}

.contact-page__quick-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.contact-page__quick-list a,
.contact-page__quick-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--ink-soft);
    font-weight: 700;
    text-decoration: none;
}

.contact-page__quick-list i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(181, 143, 74, 0.14);
    color: var(--gold-strong);
}

.contact-page__map {
    margin-top: 1.5rem;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(181, 143, 74, 0.16);
    box-shadow: 0 24px 48px rgba(59, 41, 14, 0.07);
    background: rgba(247, 239, 223, 0.9);
}

.contact-page__map iframe {
    display: block;
    width: 100%;
    height: min(58vh, 520px);
    min-height: 360px;
    border: 0;
}

.contact-toast {
    right: 1.25rem;
    bottom: 1.25rem;
}

.contact-toast.is-error .consultation-toast__surface {
    background: linear-gradient(180deg, rgba(145, 37, 37, 0.98), rgba(114, 30, 30, 0.98));
    box-shadow: 0 18px 44px rgba(86, 22, 22, 0.24);
}

.related-products-section {
    margin-top: 2rem;
}

.related-products-swiper {
    overflow: hidden;
}

.admin-page .btn,
.catalog-page .btn,
.product-details-page .btn {
    box-shadow: none;
}

.hero-actions .btn-dark {
    color: #fff;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-stat-card {
    display: grid;
    gap: 0.25rem;
    padding: 1.25rem 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(173, 135, 64, 0.18);
    box-shadow: 0 18px 36px rgba(59, 41, 14, 0.06);
}

.admin-stat-card strong {
    font-size: 1.7rem;
}

.admin-stat-card span,
.admin-subtext {
    color: var(--plum-muted);
}

.admin-table {
    margin-bottom: 0;
}

.admin-table thead th {
    border-bottom-width: 1px;
    color: var(--plum-muted);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-order-address {
    min-width: 220px;
    max-width: 320px;
    white-space: pre-line;
    line-height: 1.45;
}

.admin-order-address .admin-subtext {
    margin-top: 0.35rem;
    white-space: normal;
}

.cart-quantity-counter {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    overflow: hidden;
    border: 1px solid rgba(31, 24, 17, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
}

.checkout-payment-message {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(46, 104, 56, 0.1);
    color: #24542a;
    font-weight: 700;
}

.checkout-payment-message.is-error {
    background: rgba(145, 37, 37, 0.1);
    color: #912525;
}

.cart-quantity-counter button {
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 800;
}

.cart-quantity-counter input {
    width: 52px;
    min-height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
    box-shadow: none;
}

.admin-pill-list,
.admin-toggle-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.admin-pill,
.admin-toggle {
    min-height: 34px;
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.admin-pill--accent,
.admin-toggle.is-on {
    background: rgba(245, 195, 59, 0.16);
    border: 1px solid rgba(172, 135, 66, 0.3);
}

.admin-toggle {
    background: rgba(89, 67, 28, 0.08);
    color: var(--plum-deep);
}

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

.admin-form-grid label {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-weight: 600;
}

.admin-form-grid .ck-editor {
    color: var(--ink);
}

.admin-form-grid .ck-editor__editable {
    min-height: 150px;
    border-radius: 0 0 18px 18px !important;
}

.admin-form-grid .ck-toolbar {
    border-radius: 18px 18px 0 0 !important;
}

.product-rich-text> :last-child {
    margin-bottom: 0;
}

.product-rich-text ul,
.product-rich-text ol {
    padding-left: 1.25rem;
}

.admin-form-full {
    grid-column: 1 / -1;
}

.admin-form-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-form-toggles label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0;
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.admin-input-suffix {
    display: flex;
    align-items: stretch;
}

.admin-input-suffix .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.admin-input-suffix span {
    display: inline-flex;
    align-items: center;
    padding: 0 0.9rem;
    border: 1px solid #ced4da;
    border-left: 0;
    border-radius: 0 0.375rem 0.375rem 0;
    background: rgba(255, 255, 255, 0.72);
    font-weight: 600;
    color: var(--plum-muted);
}

.admin-gallery-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.85rem;
}

.admin-gallery-preview__item {
    position: relative;
    width: 96px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(179, 146, 83, 0.24);
    background: rgba(255, 255, 255, 0.7);
}

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

.admin-gallery-preview__remove {
    position: absolute;
    top: 0.35rem;
    right: 0.35rem;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 999px;
    background: rgba(23, 20, 17, 0.86);
    color: #fff;
    line-height: 1;
}

.admin-form-grid--compact {
    gap: 0.9rem;
}

.admin-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 600;
}

.admin-nav__button {
    width: 100%;
    border: 1px solid rgba(179, 146, 83, 0.22);
    background: rgba(255, 248, 232, 0.06);
    color: rgba(248, 239, 220, 0.82);
    border-radius: 14px;
    padding: 0.8rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: flex-start;
    font-weight: 600;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.admin-nav__button:hover {
    transform: translateX(0);
    border-color: rgba(222, 176, 72, 0.32);
    background: rgba(222, 176, 72, 0.12);
    color: #fff8ed;
    box-shadow: inset 3px 0 0 rgba(245, 195, 59, 0.95);
}

.admin-stats--compact {
    margin-bottom: 1.75rem;
}

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

.admin-modal {
    border: 1px solid rgba(173, 135, 64, 0.18);
    border-radius: 28px;
    background: rgba(255, 251, 244, 0.96);
    box-shadow: 0 28px 64px rgba(43, 27, 8, 0.16);
    max-height: calc(100vh - 4rem);
    overflow: hidden;
}

.admin-layout-body .modal {
    z-index: 2600;
}

.admin-layout-body .modal-dialog {
    position: relative;
    z-index: 2610;
    max-height: calc(100vh - 4rem);
}

.admin-modal>form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

.admin-modal .modal-header,
.admin-modal .modal-footer {
    border-color: transparent;
}

.admin-modal .modal-header {
    padding: 1.25rem 1.5rem 0.75rem;
    border-bottom: 0;
}

.admin-modal .modal-footer {
    padding: 1rem 1.5rem 1.6rem;
    border-top: 0;
}

.admin-modal .modal-body {
    padding: 0.75rem 1.5rem 1.2rem;
    min-height: 0;
    overflow-y: auto;
}

.admin-list-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.admin-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(179, 146, 83, 0.14);
}

.admin-list-row--stack {
    display: block;
}

.admin-list-row__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.admin-blog-sections {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.admin-blog-section-card h3 {
    margin-bottom: 1rem;
}

.admin-rate-shell {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 28px;
    border: 1px solid rgba(173, 135, 64, 0.16);
    background: rgba(255, 251, 244, 0.88);
    box-shadow: 0 18px 38px rgba(43, 27, 8, 0.08);
}

.admin-rate-shell__head {
    margin-bottom: 1rem;
}

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

.admin-rate-card {
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(179, 146, 83, 0.14);
    background: rgba(255, 255, 255, 0.58);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.admin-rate-card strong {
    font-size: 1.02rem;
}

.admin-rate-card span {
    color: var(--plum-muted);
    font-size: 0.88rem;
}

.admin-rate-card__field {
    display: grid;
    gap: 0.4rem;
}

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

.taxonomy-card {
    padding: 1.4rem;
}

.home-page-cms-section+.home-page-cms-section {
    margin-top: 1.5rem;
}

.consultation-settings-card {
    display: flex;
    flex-direction: column;
    min-height: 460px;
}

.consultation-settings-card--slots {
    min-height: 460px;
}

.consultation-settings-card__note {
    margin-top: auto;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(179, 146, 83, 0.08);
    border: 1px solid rgba(179, 146, 83, 0.12);
    color: var(--plum-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.consultation-settings-card__scroll-hint {
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: var(--gold-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.consultation-settings-card__scroll {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 0.35rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(179, 146, 83, 0.55) rgba(179, 146, 83, 0.12);
}

.consultation-settings-card__scroll::-webkit-scrollbar {
    width: 8px;
}

.consultation-settings-card__scroll::-webkit-scrollbar-track {
    background: rgba(179, 146, 83, 0.12);
    border-radius: 999px;
}

.consultation-settings-card__scroll::-webkit-scrollbar-thumb {
    background: rgba(179, 146, 83, 0.55);
    border-radius: 999px;
}

.consultation-bookings-table {
    table-layout: fixed;
    min-width: 1480px;
}

.admin-page--standalone,
.admin-page--standalone .admin-table-wrap,
.admin-page--standalone .admin-table-header,
.admin-page--standalone .admin-table-wrap>form {
    min-width: 0;
}

.admin-page--standalone .admin-table-wrap {
    max-width: 100%;
    overflow: hidden;
}

.admin-table-wrap .table-responsive {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.admin-table-wrap .table-responsive .consultation-bookings-table {
    width: max-content;
}

.consultation-bookings-scroll {
    border-radius: 18px;
    scrollbar-width: thin;
    scrollbar-color: rgba(179, 146, 83, 0.68) rgba(179, 146, 83, 0.14);
}

.consultation-bookings-scroll::-webkit-scrollbar {
    height: 10px;
}

.consultation-bookings-scroll::-webkit-scrollbar-track {
    background: rgba(179, 146, 83, 0.14);
    border-radius: 999px;
}

.consultation-bookings-scroll::-webkit-scrollbar-thumb {
    background: rgba(179, 146, 83, 0.68);
    border-radius: 999px;
}

.consultation-bookings-table th,
.consultation-bookings-table td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
}

.consultation-bookings-table__name {
    width: 160px;
}

.consultation-bookings-table__mobile {
    width: 145px;
}

.consultation-bookings-table__email {
    width: 300px;
}

.consultation-bookings-table__date {
    width: 105px;
}

.consultation-bookings-table__slot {
    width: 125px;
}

.consultation-bookings-table__reference,
.consultation-bookings-table__notes {
    width: 130px;
}

.consultation-bookings-table__status {
    width: 130px;
}

.consultation-bookings-table__actions {
    width: 230px;
}

.consultation-bookings-table__created {
    width: 155px;
}

.booking-cell {
    color: #28211a;
    line-height: 1.35;
}

.booking-cell--name,
.booking-cell--email,
.booking-cell--reference,
.booking-cell--notes {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.booking-cell--status .admin-pill {
    justify-content: center;
    width: 100%;
    max-width: 120px;
    text-align: center;
}

.booking-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    align-items: stretch;
    max-width: 185px;
}

.booking-actions form {
    min-width: 0;
}

.booking-actions .btn,
.booking-actions .form-select {
    width: 100%;
    min-width: 0;
}

.taxonomy-form {
    display: flex;
    gap: 0.7rem;
    margin: 1rem 0 1.2rem;
}

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

.taxonomy-list>span,
.taxonomy-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(247, 239, 223, 0.96);
    color: var(--plum-deep);
}

.taxonomy-chip form {
    display: inline-flex;
    margin: 0;
}

.taxonomy-chip__delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 999px;
    background: rgba(36, 26, 13, 0.08);
    color: var(--plum-muted);
    font-size: 0.78rem;
    line-height: 1;
}

.taxonomy-chip__delete:hover,
.taxonomy-chip__delete:focus-visible {
    background: var(--plum-deep);
    color: #fffaf0;
}

.product-details-gallery {
    display: grid;
    gap: 0.9rem;
    background: transparent;
    position: relative;
}

.product-details-gallery .splide__track {
    background: transparent;
}

.product-details-splide .splide__slide img {
    width: 100%;
    height: 430px;
    min-height: 0;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    cursor: zoom-in;
}

.product-zoom-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2200;
    display: none;
    width: min(46vw, 560px);
    height: 430px;
    border: 1px solid rgba(176, 136, 64, 0.22);
    border-radius: 24px;
    background-color: #fffaf0;
    background-repeat: no-repeat;
    background-size: 215%;
    box-shadow: 0 24px 60px rgba(37, 25, 9, 0.22);
    pointer-events: none;
}

.product-zoom-panel.is-visible {
    display: block;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(18, 11, 5, 0.92);
}

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

.product-lightbox img {
    max-width: min(94vw, 980px);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 18px;
    background: #fffaf0;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.product-lightbox__close,
.product-lightbox__nav {
    position: fixed;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.95);
    color: var(--plum-deep);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
}

.product-lightbox__close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
}

.product-lightbox__nav {
    top: 50%;
    width: 46px;
    height: 46px;
    transform: translateY(-50%);
}

.product-lightbox__nav--prev {
    left: 1rem;
}

.product-lightbox__nav--next {
    right: 1rem;
}

.product-lightbox-open {
    overflow: hidden;
}

.product-details-thumbs {
    padding: 0 3.1rem;
    background: transparent;
}

.product-details-thumbs .splide__slide {
    overflow: hidden;
    border-radius: 14px;
    border: 2px solid transparent;
    opacity: 0.62;
    cursor: pointer;
}

.product-details-thumbs .splide__slide.is-active {
    border-color: #0d6efd;
    opacity: 1;
}

.product-details-thumbs .splide__slide img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
}

.product-details-gallery .splide__arrow {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(43, 30, 11, 0.16);
    opacity: 1;
}

.product-details-gallery .splide__arrow svg {
    fill: var(--plum-deep);
}

#product-main-splide .splide__arrow {
    display: none;
}

.product-details-splide .splide__arrow {
    top: 50%;
    transform: translateY(-50%);
}

.product-details-thumbs .splide__arrow {
    top: 50%;
    transform: translateY(-50%);
}

.product-description-tabs {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(173, 135, 64, 0.16);
}

.product-description-tabs__title {
    margin: 0 0 1.15rem;
    color: var(--plum-deep);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 900;
    text-align: center;
}

.product-description-tabs__nav {
    display: flex;
    gap: 0.55rem;
    width: min(100%, 860px);
    margin: 0 auto 1.5rem;
    padding: 0.35rem;
    border: 1px solid rgba(173, 135, 64, 0.18);
    border-radius: 999px;
    background: rgba(255, 252, 246, 0.9);
    box-shadow: 0 18px 36px rgba(36, 26, 13, 0.08);
    justify-content: center;
}

.product-description-tabs__nav button {
    flex: 1 1 0;
    min-height: 58px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--plum-deep);
    font-weight: 800;
    font-size: 1.05rem;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.product-description-tabs__nav button.is-active {
    border-color: rgba(143, 113, 53, 0.35);
    background: linear-gradient(135deg, #2a2116, #8f7135);
    color: #fffaf0;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18), 0 10px 22px rgba(36, 26, 13, 0.16);
}

.product-description-tabs__panel {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.product-description-tabs__panel[hidden] {
    display: none;
}

.product-description-tabs__panel h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    line-height: 1.2;
}

#product-details-panel h2::after,
#product-details-panel h3::after {
    content: ":";
}

.product-description-tabs__panel h3 {
    margin-bottom: 0.85rem;
}

.product-rich-text {
    margin-bottom: 20px;
}

.product-description-tabs__panel p {
    max-width: 68rem;
    color: var(--plum-muted);
    line-height: 1.8;
}

.product-price-breakup {
    display: flex;
    justify-content: center;
}

.price-breakup-card {
    width: min(100%, 760px);
    overflow: hidden;
    border: 1px solid rgba(173, 135, 64, 0.18);
    border-radius: 24px;
    background: rgba(255, 252, 246, 0.96);
    box-shadow: 0 22px 48px rgba(36, 26, 13, 0.08);
}

.price-breakup-card__overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    padding: 1.35rem;
}

.price-breakup-card__orb {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff4b0 0 18%, #e7bd48 36%, #9b6f1d 72%, #f6df89 100%);
    box-shadow: 0 6px 14px rgba(36, 26, 13, 0.16);
}

.price-breakup-pill {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(173, 135, 64, 0.15);
    border-radius: 999px;
    background: rgba(247, 239, 223, 0.78);
}

.price-breakup-pill--metal {
    justify-content: flex-start;
}

.price-breakup-pill div {
    display: grid;
    gap: 0.1rem;
}

.price-breakup-pill small {
    color: var(--plum-muted);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.price-breakup-pill strong {
    color: var(--plum-deep);
    font-size: 1.08rem;
    line-height: 1.1;
}

.price-breakup-row strong {
    color: var(--plum-deep);
    font-size: 1.08rem;
}

.price-breakup-row span {
    color: var(--plum-muted);
}

.price-breakup-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.35rem;
    border-top: 1px solid rgba(173, 135, 64, 0.16);
}

.price-breakup-row span {
    display: grid;
    gap: 0.25rem;
    font-size: 1.05rem;
}

.price-breakup-row small {
    color: var(--plum-deep);
    font-weight: 800;
}

.price-breakup-row--grand {
    background: rgba(247, 239, 223, 0.72);
}

.price-breakup-row--grand span,
.price-breakup-row--grand strong {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 900;
}

.product-card__video-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(179, 146, 83, 0.28);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(246, 236, 217, 0.96));
    color: var(--gold-strong);
    box-shadow: 0 10px 20px rgba(59, 41, 14, 0.08);
}

.product-card__video-call:hover {
    color: #fffaf0;
    background: linear-gradient(180deg, rgba(88, 60, 22, 0.96), rgba(51, 36, 14, 0.96));
}

.product-card__actions .product-card__video-call {
    flex: 0 0 42px;
}

.video-consultation-page {
    padding-bottom: 5rem;
}

.section-gap {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
}

.video-consultation-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(1.5rem, 2.4vw, 2.5rem);
    padding: clamp(1.2rem, 2vw, 1.8rem);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(252, 246, 235, 0.96), rgba(245, 234, 213, 0.88));
    border: 1px solid rgba(179, 146, 83, 0.15);
    box-shadow: 0 28px 60px rgba(59, 41, 14, 0.08);
}

.video-consultation-hero__media img,
.video-consultation-benefit-card img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.video-consultation-hero__media img {
    height: clamp(320px, 31vw, 430px);
    border-radius: 1.75rem;
    object-position: center center;
}

.video-consultation-hero__content {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: clamp(1rem, 1.8vw, 1.5rem) clamp(0.2rem, 0.8vw, 0.45rem) clamp(1rem, 1.8vw, 1.5rem) 0;
}

.video-consultation-hero__content h1 {
    margin: 0;
    font-size: clamp(2.1rem, 3.2vw, 3.35rem);
    line-height: 1.04;
}

.video-consultation-hero__content p {
    margin: 0;
    max-width: 31rem;
    font-size: 1.02rem;
    color: var(--ink-soft);
}

.video-consultation-steps,
.video-consultation-benefits {
    padding-top: 3.2rem;
}

.video-consultation-steps .section-heading,
.video-consultation-benefits .section-heading {
    margin-bottom: 1.9rem;
}

.video-consultation-step-card,
.video-consultation-benefit-card {
    height: 100%;
    border-radius: 1.8rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 251, 243, 0.96), rgba(244, 235, 216, 0.9));
    border: 1px solid rgba(179, 146, 83, 0.14);
    box-shadow: 0 20px 40px rgba(59, 41, 14, 0.07);
}

.video-consultation-step-card {
    padding: 1.6rem;
    text-align: center;
}

.video-consultation-step-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(88, 60, 22, 0.12), rgba(181, 143, 74, 0.18));
    color: var(--gold-strong);
    font-size: 1.4rem;
}

.video-consultation-step-card h3,
.video-consultation-benefit-card h3 {
    margin: 0 0 0.7rem;
}

.video-consultation-step-card p,
.video-consultation-benefit-card p {
    margin: 0;
    color: var(--ink-soft);
}

.video-consultation-benefit-card__body {
    padding: 1.25rem;
}

.video-consultation-benefit-card img {
    min-height: 280px;
    height: 280px;
}

.video-consultation-benefits__cta {
    margin-top: 2rem;
    text-align: center;
}

.consultation-modal .modal-dialog {
    max-width: 860px;
}

.consultation-modal {
    z-index: 2600;
}

.modal-backdrop.show {
    z-index: 2500;
}

.consultation-modal__content {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.consultation-modal__surface {
    padding: clamp(1.2rem, 2vw, 1.75rem);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(245, 236, 219, 0.96));
    border: 1px solid rgba(179, 146, 83, 0.16);
    box-shadow: 0 30px 90px rgba(25, 16, 6, 0.28);
}

.consultation-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.consultation-modal__header h2 {
    margin: 0.2rem 0 0.45rem;
}

.consultation-modal__header p {
    margin: 0;
    color: var(--ink-soft);
}

.consultation-modal__close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(179, 146, 83, 0.16);
    background: rgba(255, 251, 244, 0.95);
    color: var(--gold-strong);
}

.consultation-form .form-label span {
    color: var(--ink-muted);
    font-weight: 400;
}

.consultation-form__feedback {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    font-weight: 600;
}

.consultation-form__feedback.is-success {
    background: rgba(43, 111, 54, 0.08);
    color: #2b6f36;
    border: 1px solid rgba(43, 111, 54, 0.16);
}

.consultation-form__feedback.is-error {
    background: rgba(145, 37, 37, 0.08);
    color: #912525;
    border: 1px solid rgba(145, 37, 37, 0.14);
}

.consultation-form__actions {
    margin-top: 1.25rem;
}

.consultation-form__actions .btn {
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}

.consultation-toast {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1300;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.consultation-toast:not(.is-visible) {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.consultation-toast__surface {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.1rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(46, 104, 56, 0.98), rgba(34, 84, 42, 0.98));
    color: #f8fff3;
    box-shadow: 0 18px 44px rgba(18, 48, 22, 0.24);
}

.admin-pill--warning {
    background: rgba(187, 139, 52, 0.14);
    color: #8a5d10;
}

@media (max-width: 1399.98px) {
    .nav-band {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .nav-band::-webkit-scrollbar {
        display: none;
    }

    .desktop-nav {
        width: max-content;
        min-width: 100%;
        gap: 1rem;
    }

    .menu-root,
    .nav-links {
        flex-wrap: nowrap;
        flex: 0 0 auto;
    }

    .video-consultation-hero__shell {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .video-consultation-hero__content {
        padding: 0.35rem 0 0;
    }

    .video-consultation-hero__content p {
        max-width: none;
    }

    .video-consultation-hero__media img {
        height: clamp(300px, 42vw, 420px);
    }

    .floating-social {
        top: 50%;
        right: 16px;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 0.6rem;
    }

    .floating-social--left {
        left: auto;
        right: 16px;
    }

    .floating-social a {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }
}

@media (max-width: 1199.98px) {
    .admin-layout {
        display: block;
    }

    .admin-sidebar {
        position: static;
        left: auto;
        bottom: auto;
        width: auto;
        height: auto;
        max-height: none;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-filters {
        position: static;
    }

    .video-consultation-hero__shell {
        grid-template-columns: 1fr;
    }

    .admin-stats,
    .taxonomy-grid,
    .admin-cms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-rate-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .auth-layout-shell {
        padding: 1rem;
    }

    .auth-shell {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .auth-showcase {
        min-height: auto;
        padding: 1.35rem;
    }

    .auth-showcase h1 {
        max-width: none;
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .auth-showcase--register h1 {
        max-width: none;
        font-size: clamp(1.65rem, 7vw, 2.2rem);
    }

    .auth-card {
        min-height: auto;
    }

    .auth-form-grid {
        grid-template-columns: 1fr;
    }

    .profile-card__actions {
        grid-template-columns: 1fr;
    }

    .account-page__shell,
    .account-panel__form-grid {
        grid-template-columns: 1fr;
    }

    .account-page__sidebar {
        position: static;
        top: auto;
    }

    .account-panel__header {
        flex-direction: column;
    }

    .admin-main {
        margin-left: 0;
        padding: 1rem;
        max-width: 100%;
        overflow-x: clip;
    }

    .admin-sidebar {
        padding: 1rem;
    }

    .admin-brand {
        padding: 0.2rem 0.15rem 0.75rem;
    }

    .catalog-toolbar,
    .admin-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
        overflow: hidden;
    }

    .admin-toolbar>div,
    .admin-toolbar .admin-subtext {
        min-width: 0;
        max-width: 100%;
    }

    .admin-toolbar>.d-flex {
        width: 100%;
        flex-wrap: wrap;
    }

    .admin-toolbar .btn {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
        white-space: normal;
    }

    .admin-toolbar h1,
    .admin-form-shell h1 {
        max-width: 100%;
        font-size: clamp(1.8rem, 9vw, 2.35rem);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .admin-subtext {
        overflow-wrap: anywhere;
    }

    .catalog-sort {
        width: 100%;
        justify-content: space-between;
    }

    .catalog-sort .form-select {
        min-width: 0;
        flex: 1 1 auto;
    }

    .contact-page__grid {
        grid-template-columns: 1fr;
    }

    .catalog-page {
        padding-bottom: 5rem;
    }

    .catalog-mobile-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1700;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 64px;
        padding-bottom: env(safe-area-inset-bottom);
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(32, 25, 12, 0.16);
        box-shadow: 0 -12px 28px rgba(25, 18, 8, 0.12);
    }

    .catalog-mobile-actions button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        min-width: 0;
        min-height: 64px;
        border: 0;
        background: transparent;
        color: var(--ink-strong);
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: 0;
    }

    .catalog-mobile-actions button+button {
        border-left: 1px solid rgba(32, 25, 12, 0.16);
    }

    .catalog-mobile-actions i {
        font-size: 1.35rem;
        line-height: 1;
    }

    .catalog-mobile-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1710;
        display: block;
        background: rgba(22, 14, 5, 0.48);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.22s ease, visibility 0.22s ease;
    }

    .catalog-filter-open .catalog-mobile-backdrop {
        opacity: 1;
        visibility: visible;
    }

    .catalog-filters {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        z-index: 1720;
        max-height: min(78vh, 720px);
        overflow-y: auto;
        padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
        border-radius: 24px 24px 0 0;
        transform: translateY(105%);
        transition: transform 0.28s ease;
    }

    .catalog-filter-open .catalog-filters {
        transform: translateY(0);
    }

    .product-details-page .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .product-details-page .product-details-shell {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem;
        overflow: hidden;
        border-radius: 24px;
    }

    .product-details-page .row.g-4 {
        --bs-gutter-x: 0;
        --bs-gutter-y: 1.1rem;
        margin-left: 0;
        margin-right: 0;
    }

    .product-details-page .row.g-4>[class*="col-"] {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .product-details-gallery,
    .product-details-splide,
    .product-details-splide .splide__track,
    .product-details-splide .splide__list,
    .product-details-thumbs,
    .product-details-thumbs .splide__track {
        width: 100%;
        max-width: 100%;
    }

    .product-details-splide,
    .product-details-splide .splide__track,
    .product-details-thumbs,
    .product-details-thumbs .splide__track {
        overflow: hidden;
    }

    .catalog-mobile-filter-head {
        position: sticky;
        top: -1rem;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin: -1rem -1rem 1rem;
        padding: 1rem;
        background: rgba(255, 252, 246, 0.98);
        border-bottom: 1px solid rgba(181, 143, 74, 0.16);
    }

    .catalog-mobile-filter-head strong {
        color: var(--ink-strong);
        font-size: 1rem;
    }

    .catalog-mobile-filter-head button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 999px;
        background: rgba(32, 23, 10, 0.92);
        color: #fff8eb;
    }

    .product-card--catalog .product-image img,
    .product-details-splide .splide__slide img {
        min-height: 320px;
        height: 320px;
    }

    .product-details-splide .splide__slide img {
        cursor: zoom-in;
    }

    .product-zoom-panel {
        display: none !important;
    }

    .product-lightbox img {
        width: auto;
        height: auto;
        max-width: 94vw;
        max-height: 78vh;
        object-fit: contain;
        border-radius: 14px;
    }

    .product-lightbox__nav {
        width: 42px;
        height: 42px;
    }

    .product-details-thumbs {
        padding: 0 2.55rem;
    }

    .product-details-thumbs .splide__slide {
        border-radius: 12px;
    }

    .admin-stats,
    .taxonomy-grid,
    .admin-form-grid,
    .admin-cms-grid {
        grid-template-columns: 1fr;
    }

    .admin-table-wrap,
    .admin-rate-shell,
    .admin-form-shell,
    .taxonomy-card {
        max-width: 100%;
        border-radius: 24px;
        padding: 1rem;
        overflow-x: auto;
    }

    .admin-table {
        min-width: 720px;
    }

    .admin-modal {
        width: 100%;
        max-height: calc(100dvh - 1rem);
        border-radius: 22px;
    }

    .admin-layout-body .modal-dialog {
        width: auto;
        max-width: none;
        margin: 0.5rem;
        max-height: calc(100dvh - 1rem);
    }

    .admin-modal .modal-header,
    .admin-modal .modal-footer {
        padding-inline: 1rem;
    }

    .admin-modal .modal-body {
        padding: 0.75rem 1rem 1rem;
    }

    .taxonomy-form {
        flex-direction: column;
    }

    .video-consultation-hero__media img,
    .video-consultation-benefit-card img {
        min-height: 260px;
        height: 260px;
    }

    .consultation-modal .modal-dialog {
        margin: 0.75rem;
    }

    .consultation-toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .consultation-toast__surface {
        width: 100%;
        justify-content: center;
    }

    .consultation-settings-card,
    .consultation-settings-card--slots {
        min-height: auto;
    }

    .consultation-settings-card__scroll {
        max-height: 300px;
    }

    .catalog-toolbar {
        margin-bottom: 1.35rem;
    }

    .catalog-toolbar h1 {
        font-size: clamp(1.8rem, 7.4vw, 2.45rem);
        margin-bottom: 0.45rem;
    }

    .catalog-toolbar p {
        font-size: 0.95rem;
    }

    .video-consultation-page {
        overflow-x: clip;
    }

    .video-consultation-hero {
        padding-top: 1rem;
    }

    .video-consultation-hero__shell {
        gap: 1rem;
        padding: 1rem;
        border-radius: 1.5rem;
    }

    .video-consultation-hero__content {
        gap: 0.8rem;
        padding: 0;
    }

    .video-consultation-hero__content h1 {
        font-size: clamp(1.85rem, 8vw, 2.55rem);
        line-height: 1.05;
    }

    .video-consultation-hero__content p {
        font-size: 0.96rem;
    }

    .contact-page__map {
        border-radius: 22px;
    }

    .contact-page__map iframe {
        min-height: 300px;
        height: 380px;
    }

    .video-consultation-steps,
    .video-consultation-benefits {
        padding-top: 2.2rem;
    }

    .video-consultation-steps .section-heading,
    .video-consultation-benefits .section-heading {
        margin-bottom: 1.35rem;
    }

    .video-consultation-step-card {
        padding: 1.25rem;
    }

    .floating-social {
        top: auto;
        right: 12px;
        bottom: 12px;
        left: auto;
        transform: none;
        flex-direction: column;
        gap: 0.45rem;
    }

    .floating-social--left {
        left: auto;
        right: 12px;
    }

    .floating-social a {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .floating-social a i {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {

    .catalog-page,
    .video-consultation-page,
    .admin-layout-body,
    .admin-layout {
        overflow-x: clip;
    }

    .admin-main {
        padding: 0.75rem;
    }

    .admin-sidebar {
        padding: 0.75rem;
    }

    .admin-brand__mark img {
        max-width: 170px;
    }

    .admin-stats {
        gap: 0.75rem;
    }

    .admin-stat-card {
        border-radius: 20px;
        padding: 1rem;
    }

    .admin-stat-card strong {
        font-size: 1.45rem;
    }

    .catalog-toolbar h1 {
        font-size: clamp(1.65rem, 8vw, 2.1rem);
    }

    .video-consultation-hero__shell {
        padding: 0.9rem;
        border-radius: 1.25rem;
    }

    .video-consultation-hero__media img {
        min-height: 220px;
        height: 220px;
    }

    .video-consultation-benefit-card img {
        min-height: 220px;
        height: 220px;
    }

    .video-consultation-hero__content h1 {
        font-size: clamp(1.65rem, 8.6vw, 2.1rem);
    }

    .floating-social {
        top: 50%;
        right: 10px;
        bottom: auto;
        left: auto;
        display: flex;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 0.4rem;
    }

    .floating-social--left {
        left: auto;
        right: 10px;
    }

    .floating-social a {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .floating-social a i {
        font-size: 0.85rem;
    }

    .mobile-drawer {
        width: 100vw;
    }

    .mobile-drawer .offcanvas-header,
    .mobile-drawer .offcanvas-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.about-story-page {
    position: relative;
}

.about-story-hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(520px, 72vh, 780px);
    border-radius: 36px;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #f8efe0 0%, #f4e7d2 50%, #ead3a9 100%);
    box-shadow: 0 28px 64px rgba(72, 48, 15, 0.12);
}

.about-story-hero__backdrop,
.about-story-hero__backdrop img,
.about-story-hero__overlay {
    position: absolute;
    inset: 0;
}

.about-story-hero__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(0.92) contrast(0.96);
}

.about-story-hero__overlay {
    background:
        linear-gradient(90deg, rgba(20, 13, 7, 0.76) 0%, rgba(20, 13, 7, 0.58) 34%, rgba(20, 13, 7, 0.2) 66%, rgba(20, 13, 7, 0.08) 100%),
        radial-gradient(circle at top right, rgba(250, 215, 147, 0.22), transparent 28%);
}

.about-story-hero__shell {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.7fr);
    align-items: end;
    gap: 2rem;
    padding: clamp(2rem, 4vw, 4rem);
}

.about-story-hero__content {
    max-width: 760px;
    color: #fff8eb;
}

.about-story-hero__content .eyebrow,
.about-story-hero__card .eyebrow {
    color: rgba(255, 244, 222, 0.76);
}

.about-story-hero__content h1 {
    margin: 0.35rem 0 1rem;
    color: #fff8eb;
    font-size: clamp(2.7rem, 5.3vw, 5rem);
    line-height: 0.95;
    max-width: 11ch;
}

.about-story-hero__subtitle {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    line-height: 1.7;
    color: rgba(255, 248, 235, 0.92);
    max-width: 52ch;
}

.about-story-hero__description {
    margin: 1rem 0 0;
    max-width: 58ch;
    color: rgba(255, 244, 222, 0.8);
    line-height: 1.8;
}

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

.about-story-hero__stats article,
.about-story-hero__card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.about-story-hero__stats article {
    border-radius: 22px;
    padding: 1.05rem 1.15rem;
}

.about-story-hero__stats strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
    color: #ffffff;
}

.about-story-hero__stats span {
    display: block;
    color: rgba(255, 244, 222, 0.76);
    line-height: 1.6;
    font-size: 0.92rem;
}

.about-story-hero__card {
    border-radius: 30px;
    padding: 1.5rem;
    color: #fff8eb;
}

.about-story-hero__card h2 {
    margin: 0.35rem 0 0.8rem;
    font-size: clamp(1.5rem, 2.2vw, 2.05rem);
    line-height: 1.05;
    color: #ffffff;
}

.about-story-hero__card p {
    margin: 0;
    color: rgba(255, 244, 222, 0.8);
    line-height: 1.8;
}

.about-story-intro {
    margin-bottom: 1.75rem;
}

.about-story-intro__panel {
    max-width: 980px;
    margin: 0 auto;
    padding: 1.6rem 1.85rem;
    text-align: center;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(248, 241, 229, 0.88));
    border: 1px solid rgba(176, 136, 64, 0.14);
    box-shadow: 0 18px 34px rgba(70, 47, 12, 0.08);
}

.about-story-intro__panel h2 {
    margin: 0.35rem 0 0.75rem;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.about-story-intro__panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.about-story-sections {
    display: grid;
    gap: 2.25rem;
}

.about-story-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(1.25rem, 2vw, 2.4rem);
}

.about-story-section--reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.about-story-section--reverse .about-story-section__media {
    order: 2;
}

.about-story-section--reverse .about-story-section__content {
    order: 1;
}

.about-story-section__media-frame,
.about-story-section__card {
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.97), rgba(248, 240, 226, 0.92));
    border: 1px solid rgba(176, 136, 64, 0.14);
    box-shadow: 0 24px 44px rgba(70, 47, 12, 0.08);
}

.about-story-section__media-frame {
    padding: 0.75rem;
}

.about-story-section__media img {
    width: 100%;
    min-height: 420px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 24px;
}

.about-story-section__content {
    display: flex;
}

.about-story-section__card {
    width: 100%;
    padding: clamp(1.6rem, 2.6vw, 2.4rem);
}

.about-story-section__card h2 {
    margin: 0.35rem 0 1rem;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    line-height: 1.06;
}

.about-story-section__card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    font-size: 1rem;
}

.about-story-section__card p+p {
    margin-top: 0.95rem;
}

@media (max-width: 1199.98px) {
    .about-story-hero__shell {
        grid-template-columns: 1fr;
        align-items: end;
    }

    .about-story-hero__content h1 {
        max-width: none;
    }

    .about-story-hero__card {
        max-width: 560px;
    }
}

@media (max-width: 991.98px) {

    .about-story-section,
    .about-story-section--reverse {
        grid-template-columns: 1fr;
    }

    .about-story-section--reverse .about-story-section__media,
    .about-story-section--reverse .about-story-section__content {
        order: initial;
    }

    .about-story-section__media img {
        min-height: 320px;
        max-height: 420px;
    }
}

@media (max-width: 767.98px) {
    .about-story-hero {
        min-height: auto;
        border-radius: 28px;
    }

    .about-story-hero__overlay {
        background:
            linear-gradient(180deg, rgba(20, 13, 7, 0.7) 0%, rgba(20, 13, 7, 0.48) 52%, rgba(20, 13, 7, 0.2) 100%);
    }

    .about-story-hero__shell {
        padding: 1.4rem;
    }

    .about-story-hero__stats {
        grid-template-columns: 1fr;
    }

    .about-story-hero__card,
    .about-story-intro__panel,
    .about-story-section__card,
    .about-story-section__media-frame {
        border-radius: 24px;
    }

    .about-story-section__media img {
        min-height: 240px;
        max-height: 320px;
        border-radius: 18px;
    }
}

@media (max-width: 767.98px) {

    body.admin-layout-body,
    body.admin-layout-body .admin-layout,
    body.admin-layout-body .admin-main,
    body.admin-layout-body .admin-page,
    body.admin-layout-body .admin-toolbar,
    body.admin-layout-body .admin-stats,
    body.admin-layout-body .admin-rate-shell,
    body.admin-layout-body .admin-rate-grid,
    body.admin-layout-body .admin-rate-card,
    body.admin-layout-body .admin-table-wrap,
    body.admin-layout-body .taxonomy-grid,
    body.admin-layout-body .taxonomy-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    body.admin-layout-body,
    body.admin-layout-body .admin-layout,
    body.admin-layout-body .admin-main,
    body.admin-layout-body .admin-page {
        overflow-x: hidden;
    }

    body.admin-layout-body .admin-main {
        margin-left: 0;
        padding: 0.85rem;
    }

    body.admin-layout-body .admin-toolbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
        gap: 1rem;
    }

    body.admin-layout-body .admin-toolbar>* {
        min-width: 0;
    }

    body.admin-layout-body .admin-toolbar>.d-flex {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr);
        gap: 0.7rem !important;
        width: 100%;
    }

    body.admin-layout-body .admin-toolbar .btn {
        display: inline-flex;
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        min-width: 0;
        align-items: center;
        justify-content: center;
        padding-inline: 0.9rem;
        white-space: normal;
        text-align: center;
        overflow-wrap: anywhere;
    }

    body.admin-layout-body .admin-toolbar h1 {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
        line-height: 1.08;
    }

    body.admin-layout-body .admin-subtext {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    body.admin-layout-body .admin-stats,
    body.admin-layout-body .admin-rate-grid,
    body.admin-layout-body .taxonomy-grid,
    body.admin-layout-body .admin-form-grid,
    body.admin-layout-body .admin-cms-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    body.admin-layout-body .admin-rate-card,
    body.admin-layout-body .admin-stat-card {
        overflow: hidden;
    }

    body.admin-layout-body .admin-rate-card .form-control,
    body.admin-layout-body .admin-rate-card .btn,
    body.admin-layout-body .admin-form-grid .form-control,
    body.admin-layout-body .admin-form-grid .form-select {
        width: 100%;
        min-width: 0;
    }

    body.admin-layout-body .admin-table-wrap {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    body.admin-layout-body .admin-modal .modal-footer {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    body.admin-layout-body .admin-modal .modal-footer .btn {
        width: 100%;
    }

    body.admin-layout-body .admin-list-row {
        align-items: stretch;
        flex-direction: column;
    }

    body.admin-layout-body .admin-list-row__actions {
        justify-content: stretch;
    }

    body.admin-layout-body .admin-list-row__actions form,
    body.admin-layout-body .admin-list-row__actions .btn,
    body.admin-layout-body .admin-list-row__actions .admin-pill {
        width: 100%;
    }
}

/* Final about page redesign overrides */
.about-story-page {
    position: relative;
    padding-bottom: clamp(2.5rem, 5vw, 5rem);
}

.about-story-page .container-fluid {
    max-width: 1480px;
}

.about-story-page .section-head {
    max-width: 760px;
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.about-story-page .section-head h2 {
    margin: 0.35rem 0 0.75rem;
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    line-height: 1;
}

.about-story-page .section-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.about-story-hero {
    position: relative;
    min-height: clamp(500px, 66vh, 720px);
    margin: 0 0 clamp(1.3rem, 3vw, 2.5rem);
    overflow: hidden;
    border-radius: 0;
    background: #171008;
    box-shadow: none;
}

.about-story-hero__backdrop,
.about-story-hero__backdrop img,
.about-story-hero__overlay {
    position: absolute;
    inset: 0;
}

.about-story-hero__backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    filter: saturate(0.9) contrast(0.96);
}

.about-story-hero__overlay {
    background:
        linear-gradient(90deg, rgba(18, 11, 5, 0.88) 0%, rgba(18, 11, 5, 0.7) 42%, rgba(18, 11, 5, 0.25) 72%, rgba(18, 11, 5, 0.08) 100%),
        linear-gradient(180deg, rgba(18, 11, 5, 0.16) 0%, rgba(18, 11, 5, 0.42) 100%);
}

.about-story-hero__shell {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: flex;
    grid-template-columns: none;
    align-items: center;
    padding-block: clamp(3rem, 7vw, 7rem);
}

.about-story-hero__content {
    max-width: 780px;
    color: #fff8eb;
}

.about-story-hero__content .eyebrow {
    color: rgba(255, 244, 222, 0.76);
}

.about-story-hero__content h1 {
    max-width: 12ch;
    margin: 0.45rem 0 1rem;
    color: #fff8eb;
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    line-height: 0.96;
}

.about-story-hero__subtitle {
    max-width: 54ch;
    margin: 0;
    color: rgba(255, 248, 235, 0.94);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.7;
}

.about-story-hero__description {
    max-width: 62ch;
    margin: 1rem 0 0;
    color: rgba(255, 244, 222, 0.82);
    line-height: 1.85;
}

.about-story-trustbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: clamp(2rem, 4vw, 4.5rem);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--line);
}

.about-story-trustbar article {
    text-align: center;
    padding: 1.25rem;
    background: rgba(255, 250, 243, 0.9);
}

.about-story-trustbar strong {
    display: block;
    color: var(--plum-deep);
    font-size: clamp(1.45rem, 2.4vw, 2.2rem);
    line-height: 1;
}

.about-story-trustbar span {
    display: block;
    margin-top: 0.55rem;
    color: var(--muted);
    font-weight: 600;
}

.about-story-founder {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    margin-bottom: clamp(3rem, 5vw, 5.5rem);
}

.about-story-founder__content h2,
.about-story-journey__intro h2,
.about-story-cta h2 {
    margin: 0.35rem 0 1rem;
    color: var(--plum-deep);
    font-size: clamp(2rem, 3.6vw, 4rem);
    line-height: 1;
}

.about-story-founder__content p,
.about-story-journey__list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

.about-story-founder__content p+p {
    margin-top: 1rem;
}

.about-story-founder__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(176, 136, 64, 0.16);
    box-shadow: 0 24px 54px rgba(36, 26, 13, 0.1);
}

.about-story-founder__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.55s ease;
}

.about-story-founder__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.26) 48%, transparent 62% 100%);
    opacity: 0;
    transform: translateX(-45%);
    transition: opacity 0.45s ease, transform 0.7s ease;
    pointer-events: none;
}

.about-story-founder__media:hover img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.03);
}

.about-story-founder__media:hover::after {
    opacity: 1;
    transform: translateX(45%);
}

.about-story-values {
    padding: clamp(3rem, 6vw, 6rem) 0;
    margin-bottom: clamp(2.8rem, 5vw, 5rem);
    background: rgba(255, 250, 243, 0.58);
    border-block: 1px solid rgba(176, 136, 64, 0.12);
}

.about-story-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--line);
}

.about-story-value {
    min-height: 330px;
    padding: clamp(1.25rem, 2.5vw, 2rem);
    background: rgba(255, 252, 246, 0.94);
}

.about-story-value>span {
    display: inline-flex;
    color: var(--champagne);
    font-size: 0.86rem;
    font-weight: 800;
}

.about-story-value small {
    display: block;
    margin-top: 1.4rem;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-story-value h3,
.about-story-journey__list h3 {
    margin: 0.5rem 0 0.75rem;
    color: var(--plum-deep);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.1;
}

.about-story-value p {
    margin: 0;
    color: var(--muted);
    line-height: 1.85;
}

.about-story-journey {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.about-story-journey__list {
    display: grid;
    gap: 1px;
    border-top: 1px solid var(--line);
}

.about-story-journey__list article {
    display: grid;
    grid-template-columns: minmax(140px, 0.35fr) minmax(0, 1fr);
    gap: 1rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--line);
}

.about-story-journey__list span {
    color: var(--champagne);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-story-journey__list h3 {
    margin-top: 0;
}

.about-story-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.about-story-cta h2 {
    max-width: 720px;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {

    .about-story-founder,
    .about-story-journey {
        grid-template-columns: 1fr;
    }

    .about-story-values__grid {
        grid-template-columns: 1fr;
    }

    .about-story-value {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .about-story-hero {
        min-height: 540px;
        border-radius: 0;
    }

    .about-story-hero__overlay {
        background: linear-gradient(180deg, rgba(18, 11, 5, 0.84) 0%, rgba(18, 11, 5, 0.5) 100%);
    }

    .about-story-hero__shell {
        padding-block: 2.4rem;
    }

    .about-story-hero__content h1 {
        max-width: none;
    }

    .about-story-trustbar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story-trustbar article {
        min-height: 112px;
    }

    .about-story-journey__list article {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .about-story-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Product details requested fixes */
.product-details-page.section-space {
    padding-top: 1rem;
}

.product-details-page .product-mode-switcher {
    margin-top: 1rem;
}

.product-details-page .product-details-tags a {
    min-height: 42px;
    padding: 0.65rem 1rem;
    background: rgba(247, 239, 223, 0.94);
    border: 1px solid rgba(173, 135, 64, 0.28);
    color: var(--plum-deep);
    font-weight: 700;
}

.product-details-page .product-details-tags a:hover {
    background: rgba(241, 229, 204, 0.98);
    color: var(--plum-deep);
}

.product-rich-text ul li {
    margin-bottom: 10px;
}

.product-rich-text ul {
    margin-top: 15px;
}

a.btn.btn-dark.rounded-pill.px-4.mt-4.w-100 {
    color: white;
}

a.btn.btn-dark.rounded-pill.px-4 {
    color: white;
}

.video-consultation-page {
    padding-bottom: 0;
}

@media (max-width: 767.98px) {
    .catalog-results>.row,
    .account-panel .row {
        --bs-gutter-x: 0.75rem;
        --bs-gutter-y: 0.95rem;
    }

    .product-card--catalog {
        border-radius: 22px;
        box-shadow: 0 12px 26px rgba(48, 31, 10, 0.08);
    }

    .product-card--catalog .product-image img,
    .product-card--catalog .product-card__empty-media {
        min-height: 178px;
        height: 178px;
    }

    .product-card--catalog .product-card__wishlist {
        top: 0.55rem;
        right: 0.55rem;
    }

    .product-card--catalog .product-card__wishlist button {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .product-card--catalog .product-card__nav {
        bottom: 0.55rem;
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .product-card--catalog .product-card__nav--prev {
        left: 0.55rem;
    }

    .product-card--catalog .product-card__nav--next {
        left: 2.65rem;
    }

    .product-card--catalog .product-card__hover {
        display: none;
    }

    .product-card--catalog .product-body {
        padding: 0.8rem;
    }

    .product-card--catalog .product-type {
        margin-bottom: 0.35rem;
        font-size: 0.62rem;
        letter-spacing: 0.13em;
    }

    .product-card--catalog h3 {
        margin-bottom: 0.35rem;
        font-size: 1rem;
        line-height: 1.08;
    }

    .product-card--catalog .product-card__description {
        min-height: 2.7em;
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .product-card--catalog .product-meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 0.65rem;
        gap: 0.32rem;
    }

    .product-card--catalog .product-meta strong {
        font-size: 0.98rem;
    }

    .product-card--catalog .product-meta__pricing {
        min-width: 0;
        flex-wrap: wrap;
        gap: 0.2rem 0.35rem;
    }

    .product-card--catalog .product-rating {
        width: 100%;
        margin-top: 0.05rem;
        justify-content: flex-start;
    }

    .product-card--catalog .product-meta__pricing span,
    .product-card--catalog .product-meta small {
        font-size: 0.72rem;
    }

    .product-card--catalog .product-card__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.42rem;
        margin-top: 0.7rem;
        align-items: stretch;
    }

    .product-card--catalog .product-card__cta-form {
        min-width: 0;
        width: 100%;
    }

    .product-card--catalog .product-card__cta-form .btn {
        min-height: 34px;
        padding: 0.35rem 0.55rem !important;
        font-size: 0.76rem;
        white-space: nowrap;
    }

    .product-card--catalog .product-card__video-call {
        width: 100%;
        height: 34px;
        border-radius: 999px;
        font-size: 0.78rem;
    }
}

@media (max-width: 380px) {
    .product-card--catalog .product-image img,
    .product-card--catalog .product-card__empty-media {
        min-height: 156px;
        height: 156px;
    }

    .product-card--catalog .product-card__video-call {
        display: none;
    }
}

.product-reviews-section {
    margin-top: clamp(2rem, 4vw, 3.5rem);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    border: 1px solid rgba(176, 136, 64, 0.16);
    border-radius: 28px;
    background: rgba(255, 250, 243, 0.78);
}

.product-reviews-section--in-tab {
    margin-top: 0;
}

.product-reviews-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.product-reviews-section__head h2 {
    margin: 0.35rem 0 0;
    color: var(--plum-deep);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1;
}

.product-review-summary {
    min-width: 170px;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(247, 239, 223, 0.96);
    text-align: center;
}

.product-review-summary .rating-stars {
    margin-top: 0.45rem;
    font-size: 0.95rem;
}

.product-review-summary strong {
    display: block;
    color: var(--plum-deep);
    font-size: 2rem;
    line-height: 1;
}

.rating-stars {
    display: inline-flex;
    gap: 0.16rem;
    line-height: 1;
    color: rgba(176, 136, 64, 0.28);
}

.rating-stars__star {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
}

.rating-stars__empty {
    color: rgba(176, 136, 64, 0.28);
}

.rating-stars__fill {
    position: absolute;
    inset: 0 auto 0 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--champagne);
}

.rating-stars--compact {
    font-size: 0.78rem;
}

.rating-stars--review,
.rating-stars--admin {
    font-size: 0.95rem;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.product-review-summary small {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-weight: 700;
}

.product-reviews-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 1rem;
}

.product-review-list {
    display: grid;
    gap: 0.9rem;
}

.product-review-card,
.product-review-empty,
.product-review-form-card {
    padding: 1.2rem;
    border: 1px solid rgba(176, 136, 64, 0.14);
    border-radius: 22px;
    background: rgba(255, 252, 246, 0.94);
}

.product-review-form-card {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.product-review-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(176, 136, 64, 0.12);
}

.product-review-card__identity {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.product-review-card__avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(172, 135, 66, 0.95), rgba(36, 26, 13, 0.9));
    color: #fffaf0;
    font-weight: 900;
}

.product-review-card__identity strong,
.product-review-card h3,
.product-review-form-card h3,
.product-review-empty h3 {
    color: var(--plum-deep);
}

.product-review-card__identity small {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted);
    font-weight: 700;
}

.product-review-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex: 0 0 auto;
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    background: rgba(247, 239, 223, 0.86);
    color: var(--plum-deep);
    font-weight: 900;
}

.product-review-card__rating .rating-stars {
    font-size: 0.84rem;
}

.product-review-card h3,
.product-review-form-card h3,
.product-review-empty h3 {
    margin: 0;
    font-size: 1.25rem;
}

.product-review-card__title {
    margin-top: 1rem !important;
}

.product-review-card p,
.product-review-form-card p,
.product-review-empty p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.product-review-card__comment {
    margin-top: 0.35rem !important;
}

.product-review-form-card .btn {
    justify-self: start;
}

.product-review-form-card .form-control,
.product-review-form-card .form-select {
    border-radius: 14px;
    border-color: rgba(176, 136, 64, 0.28);
    background: rgba(255, 255, 255, 0.82);
}

.review-rating-field {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.review-rating-field .form-label {
    margin: 0;
    color: var(--plum-deep);
    font-weight: 800;
}

.review-star-picker {
    display: inline-flex;
    gap: 0.32rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(176, 136, 64, 0.18);
    border-radius: 999px;
    background: rgba(247, 239, 223, 0.86);
}

.review-star-picker button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(176, 136, 64, 0.26);
    transition: color 0.16s ease, transform 0.16s ease, background 0.16s ease;
}

.review-star-picker button:hover,
.review-star-picker button:focus-visible {
    background: rgba(255, 252, 246, 0.86);
    outline: 0;
    transform: translateY(-1px);
}

.review-star-picker button.is-active {
    color: var(--champagne);
}

.review-star-picker__label {
    display: block;
    margin-top: 0.45rem;
    color: var(--plum-muted);
    font-weight: 700;
}

.cart-coupon-form {
    display: none;
}

.cart-coupon-panel.is-open .cart-coupon-form {
    display: block;
}

@media (max-width: 991.98px) {
    .product-reviews-grid,
    .product-reviews-section__head {
        grid-template-columns: 1fr;
        align-items: stretch;
        flex-direction: column;
    }

    .product-review-summary {
        min-width: 0;
        text-align: left;
    }

    .product-description-tabs__nav {
        gap: 0.35rem;
        padding: 0.28rem;
    }

    .product-description-tabs__nav button {
        min-height: 48px;
        padding: 0 0.65rem;
        font-size: 0.82rem;
    }

    .price-breakup-card__overview {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding: 0.9rem;
    }

    .price-breakup-pill {
        min-height: 62px;
        border-radius: 18px;
    }

    .price-breakup-row {
        padding: 0.9rem 1rem;
    }
}
