:root {
    --site-ink: #2f2d2d;
    --site-ink-soft: #5f5a57;
    --site-bg: #ffffff;
    --site-panel: rgba(255, 255, 255, 0.84);
    --site-panel-strong: rgba(255, 255, 255, 0.94);
    --site-line: rgba(47, 45, 45, 0.1);
    --site-accent: #f57f11;
    --site-accent-deep: #dd6d09;
    --site-sea: #2f2d2d;
    --site-sea-soft: #f6e1cd;
    --site-shadow: 0 22px 60px rgba(47, 45, 45, 0.14);
}

html {
    font-size: 15px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--site-ink);
    background: #faf8f5;
}

.site-fluid {
    padding-left: clamp(16px, 2.8vw, 40px);
    padding-right: clamp(16px, 2.8vw, 40px);
}

main {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    gap: 22px;
    padding-bottom: 28px;
}

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--site-accent-deep);
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: currentColor;
}

.top-strip {
    background: #2f2d2d;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.top-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
}

.top-strip-copy,
.top-strip-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-strip-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.top-strip-actions a {
    color: inherit;
    border: 0;
    background: transparent;
    padding: 0;
}

.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    backdrop-filter: blur(22px);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(47, 45, 45, 0.05);
}

.site-navbar-desktop {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    min-height: 94px;
}

.site-navbar-left {
    display: flex;
    justify-content: flex-start;
    min-width: 0;
}

.site-navbar-right {
    display: flex;
    justify-content: flex-end;
}

.site-navbar-menu {
    gap: 2px;
}

.site-navbar-menu .nav-link {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
}

.site-brand-centered {
    justify-self: center;
}

.site-navbar-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-width: 0;
}

.site-brand img {
    display: block;
    width: auto;
    height: 56px;
    max-width: min(100%, 320px);
    object-fit: contain;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-brand strong {
    font-size: 1.02rem;
}

.site-brand small {
    margin-top: 4px;
    color: var(--site-ink-soft);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.85rem 1rem;
    color: var(--site-ink);
    font-weight: 600;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.55rem;
    height: 2px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
    background: var(--site-accent);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
    transform: scaleX(1);
}

.product-nav-item {
    position: relative;
}

.product-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-nav-link i {
    font-size: 0.72rem;
    color: var(--site-ink-soft);
}

.product-nav-panel {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    width: min(920px, 82vw);
    padding: 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(47, 45, 45, 0.08);
    box-shadow: 0 26px 54px rgba(47, 45, 45, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
}

.product-nav-item:hover .product-nav-panel,
.product-nav-item:focus-within .product-nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-nav-shell {
    --product-nav-sidebar-width: 300px;
    --product-nav-column-gap: 24px;
    position: relative;
    isolation: isolate;
    min-height: 360px;
}

.product-nav-sidebar {
    width: var(--product-nav-sidebar-width);
    padding-right: var(--product-nav-column-gap);
    border-right: 1px solid rgba(47, 45, 45, 0.08);
}

.product-nav-overview {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(245, 141, 44, 0.14), rgba(221, 109, 9, 0.08));
    color: var(--site-accent-deep);
    font-size: 0.9rem;
    font-weight: 700;
}

.product-nav-category-meta {
    margin-bottom: 12px;
    color: var(--site-ink-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-nav-stack {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-nav-row {
    position: static;
}

.product-nav-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 18px;
    color: var(--site-ink);
    font-size: 0.95rem;
    font-weight: 700;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.product-nav-category-content {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.product-nav-category-link:hover,
.product-nav-row:focus-within .product-nav-category-link {
    background: rgba(245, 127, 17, 0.1);
    color: var(--site-accent-deep);
    transform: translateX(2px);
}

.product-nav-category-link i {
    font-size: 0.78rem;
    color: rgba(95, 90, 87, 0.82);
}

.product-nav-placeholder {
    position: absolute;
    top: 0;
    left: calc(var(--product-nav-sidebar-width) + var(--product-nav-column-gap) + 2px);
    right: 0;
    bottom: 0;
    border-radius: 24px;
}

.product-nav-placeholder {
    z-index: 1;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at top right, rgba(245, 127, 17, 0.12), transparent 28%),
        linear-gradient(135deg, #fbf8f4 0%, #f5f0e9 100%);
    color: var(--site-ink-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
}

.product-nav-subpanel {
    position: absolute;
    top: 0;
    left: calc(var(--product-nav-sidebar-width) - 14px);
    right: 0;
    bottom: 0;
    border-radius: 24px;
    z-index: 2;
    /* Overlap the hover gap, but keep the visible product list aligned with the original column. */
    padding: 18px 22px 18px calc(22px + var(--product-nav-column-gap) + 16px);
    background:
        radial-gradient(circle at top right, rgba(245, 127, 17, 0.12), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
    border: 1px solid rgba(47, 45, 45, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.product-nav-row:hover .product-nav-subpanel,
.product-nav-row:focus-within .product-nav-subpanel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.product-nav-subpanel-title {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--site-ink);
    font-size: 1.08rem;
    font-weight: 700;
}

.product-nav-subcategory-link {
    color: var(--site-ink-soft);
    font-size: 0.92rem;
    line-height: 1.45;
}

.product-nav-subcategory-link:hover {
    color: var(--site-accent-deep);
}

.product-nav-subcategory-all {
    color: var(--site-accent-deep);
    font-weight: 700;
}

.product-nav-product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 280px;
    padding-right: 6px;
    overflow-y: auto;
}

.product-nav-product-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    color: var(--site-ink);
    background: rgba(255, 255, 255, 0.68);
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.product-nav-product-link:hover {
    background: rgba(245, 127, 17, 0.1);
    color: var(--site-accent-deep);
    transform: translateX(2px);
}

.product-nav-product-name {
    display: block;
    min-width: 0;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}

.product-nav-thumb {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #f6eee3 0%, #eedfca 100%);
    color: var(--site-accent-deep);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

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

.product-nav-thumb-category {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.82rem;
}

.product-nav-thumb-product {
    width: 46px;
    height: 46px;
    font-size: 0.82rem;
}

.product-nav-thumb-fallback {
    border: 1px solid rgba(245, 127, 17, 0.14);
}

.site-mobile-product-menu,
.site-mobile-product-category {
    display: block;
}

.site-mobile-product-menu > summary,
.site-mobile-product-category > summary {
    list-style: none;
    cursor: pointer;
}

.site-mobile-product-menu > summary::-webkit-details-marker,
.site-mobile-product-category > summary::-webkit-details-marker {
    display: none;
}

.site-mobile-product-menu > summary.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: static;
}

.site-mobile-product-menu > summary.nav-link::before,
.site-mobile-product-menu > summary.nav-link::after {
    content: none;
}

.site-mobile-product-menu > summary.nav-link::marker,
.site-mobile-product-category > summary::marker {
    content: '';
}

.site-mobile-product-menu > summary.nav-link::after {
    content: '+';
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    font-size: 1rem;
    color: var(--site-ink-soft);
    transform: none;
    background: none;
}

.site-mobile-product-menu[open] > summary.nav-link::after {
    content: '-';
}

.site-mobile-product-menu > summary.nav-link:hover::after,
.site-mobile-product-menu > summary.nav-link:focus::after {
    transform: none;
}

.site-mobile-product-list {
    padding: 0 0 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-mobile-product-all {
    color: var(--site-accent-deep);
    font-weight: 700;
}

.site-mobile-product-category {
    border-radius: 20px;
    border: 1px solid rgba(47, 45, 45, 0.08);
    background: rgba(255, 255, 255, 0.82);
}

.site-mobile-product-category > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 14px;
    color: var(--site-ink);
    font-weight: 700;
}

.site-mobile-product-category > summary::after {
    content: '+';
    color: var(--site-ink-soft);
}

.site-mobile-product-category[open] > summary::after {
    content: '-';
}

.site-mobile-subcategory-list {
    padding: 0 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-mobile-subcategory-list a {
    color: var(--site-ink-soft);
}

.site-mobile-subcategory-list a:first-child {
    color: var(--site-accent-deep);
    font-weight: 700;
}

.site-nav-tools,
.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(47, 45, 45, 0.12);
    background: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.mini-action-accent {
    background: linear-gradient(135deg, #f58d2c 0%, #dd6d09 100%);
    color: #fff;
    border-color: transparent;
}

.icon-shell {
    position: relative;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(47, 45, 45, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    color: var(--site-ink);
}

.cart-count {
    position: absolute;
    top: -3px;
    right: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--site-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
}

.hero-section {
    position: relative;
    padding: 22px 0 16px;
}

.home-slider-section {
    width: 100%;
}

.home-cover-slider {
    position: relative;
    min-height: calc(100vh - 128px);
    padding: 30px 0 44px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
    overflow: hidden;
}

.home-cover-track {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 202px);
}

.home-cover-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.86);
    transition:
        transform 1.45s cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity 1.1s ease,
        width 1.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home-cover-slide.is-current {
    z-index: 3;
    opacity: 1;
    width: 60%;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.home-cover-slide.is-prev {
    z-index: 2;
    opacity: 0.88;
    width: 20%;
    transform: translate(calc(-50% - 40vw), -50%) scale(0.9);
}

.home-cover-slide.is-next {
    z-index: 2;
    opacity: 0.88;
    width: 20%;
    transform: translate(calc(-50% + 40vw), -50%) scale(0.9);
}

.home-cover-slide.is-hidden-left {
    z-index: 1;
    opacity: 0;
    width: 20%;
    transform: translate(calc(-50% - 52vw), -50%) scale(0.82);
}

.home-cover-slide.is-hidden-right {
    z-index: 1;
    opacity: 0;
    width: 20%;
    transform: translate(calc(-50% + 52vw), -50%) scale(0.82);
}

.home-cover-card {
    position: relative;
    min-height: min(78vh, 820px);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(47, 45, 45, 0.2);
}

.home-cover-slide:not(.is-current) .home-cover-card {
    min-height: min(72vh, 760px);
    box-shadow: 0 18px 40px rgba(47, 45, 45, 0.12);
}

.home-cover-image,
.home-cover-overlay,
.home-cover-content-wrap {
    position: absolute;
    inset: 0;
}

.home-cover-image {
    background:
        linear-gradient(90deg, rgba(47, 45, 45, 0.72) 0%, rgba(47, 45, 45, 0.34) 42%, rgba(47, 45, 45, 0.24) 100%),
        radial-gradient(circle at top right, rgba(245, 127, 17, 0.28), transparent 28%),
        linear-gradient(135deg, #3a3533 0%, #625651 100%);
    background-position: center;
    background-size: cover;
    transition: transform 1.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home-cover-slide.is-current .home-cover-image {
    transform: scale(1);
}

.home-cover-slide:not(.is-current) .home-cover-image {
    transform: scale(1.05);
}

.home-cover-overlay {
    background: linear-gradient(180deg, rgba(47, 45, 45, 0.08), rgba(47, 45, 45, 0.16));
}

.home-cover-content-wrap {
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 clamp(28px, 4vw, 56px);
}

.home-cover-content {
    max-width: 760px;
    color: #fff;
    padding: 72px 0 96px;
}

.home-cover-slide:not(.is-current) .home-cover-content {
    opacity: 0;
    visibility: hidden;
}

.home-slider-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-slider-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(245, 127, 17, 0.92);
}

.home-cover-content h1 {
    margin: 0 0 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.93;
    letter-spacing: -0.03em;
}

.home-cover-content p {
    max-width: 620px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    line-height: 1.85;
}

.home-slider-button {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #f58d2c 0%, #dd6d09 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 16px 34px rgba(221, 109, 9, 0.28);
}

.home-cover-control {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--site-ink);
    box-shadow: 0 16px 34px rgba(47, 45, 45, 0.12);
    transform: translateY(-50%);
}

.home-cover-control-prev {
    left: clamp(10px, 2vw, 24px);
}

.home-cover-control-next {
    right: clamp(10px, 2vw, 24px);
}

.home-cover-indicators {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 5;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

.home-cover-indicators button {
    width: 56px;
    height: 6px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(47, 45, 45, 0.18);
}

.home-cover-indicators .active {
    background: var(--site-accent);
}

.home-cover-slide.is-current .home-slider-eyebrow,
.home-cover-slide.is-current .home-cover-content h1,
.home-cover-slide.is-current .home-cover-content p,
.home-cover-slide.is-current .home-slider-button {
    animation: sliderContentIn 1.35s ease forwards;
    opacity: 0;
}

.home-cover-slide.is-current .home-cover-content h1 {
    animation-delay: 0.14s;
}

.home-cover-slide.is-current .home-cover-content p {
    animation-delay: 0.28s;
}

.home-cover-slide.is-current .home-slider-button {
    animation-delay: 0.42s;
}

.category-icon-section {
    padding: 52px 0 58px;
    background: #ffffff;
    border-top: 1px solid rgba(47, 45, 45, 0.05);
    border-bottom: 1px solid rgba(47, 45, 45, 0.06);
}

.home-feature-split {
    position: relative;
    padding: 54px 0 58px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.72), transparent 34%),
        radial-gradient(circle at 16% 32%, rgba(245, 127, 17, 0.08), transparent 16%),
        radial-gradient(circle at 84% 34%, rgba(16, 37, 49, 0.06), transparent 18%),
        linear-gradient(180deg, #faf5ef 0%, #f6efe7 52%, #faf7f2 100%);
    border-top: 1px solid rgba(47, 45, 45, 0.05);
    border-bottom: 1px solid rgba(47, 45, 45, 0.05);
}

.home-feature-split::before,
.home-feature-split::after {
    content: '';
    position: absolute;
    top: 50%;
    width: clamp(52px, 5.2vw, 88px);
    height: clamp(300px, 32vw, 430px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 18px 40px rgba(124, 100, 76, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    opacity: 0.9;
    pointer-events: none;
}

.home-feature-split::before {
    left: clamp(24px, 2.6vw, 54px);
    transform: translateY(-50%) rotate(-7deg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 239, 230, 0.42)),
        linear-gradient(90deg, rgba(245, 127, 17, 0.12), rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.38));
}

.home-feature-split::after {
    right: clamp(24px, 2.6vw, 54px);
    transform: translateY(-50%) rotate(7deg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 246, 0.44)),
        linear-gradient(90deg, rgba(16, 37, 49, 0.12), rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.36));
}

.home-hot-deals-section {
    padding: 48px 0 56px;
    background: #ffffff;
    border-top: 1px solid rgba(47, 45, 45, 0.05);
    border-bottom: 1px solid rgba(47, 45, 45, 0.05);
}

.home-top-category-products-section {
    padding: 48px 0 56px;
    background: #fdfcfb;
    border-top: 1px solid rgba(47, 45, 45, 0.05);
    border-bottom: 1px solid rgba(47, 45, 45, 0.05);
}

.home-top-category-heading {
    margin-bottom: 26px;
}

.home-top-category-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-top-category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 26px;
    align-items: stretch;
}

.home-top-category-feature {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    min-height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #faf6f1 100%);
    border: 1px solid rgba(47, 45, 45, 0.08);
    box-shadow: 0 16px 38px rgba(47, 45, 45, 0.07);
}

.home-top-category-feature-media {
    min-height: 100%;
    background:
        radial-gradient(circle at top right, rgba(245, 127, 17, 0.12), transparent 24%),
        linear-gradient(135deg, #faf7f2 0%, #f3ede6 100%);
}

.home-top-category-feature-media img,
.home-top-category-feature-placeholder {
    width: 100%;
    height: 100%;
}

.home-top-category-feature-media img {
    object-fit: cover;
}

.home-top-category-feature-placeholder {
    display: grid;
    place-items: center;
    color: var(--site-accent-deep);
    font-size: 2.6rem;
    font-weight: 800;
}

.home-top-category-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.home-top-category-feature-copy h3 {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.3rem, 3vw, 3.2rem);
    line-height: 0.98;
}

.home-top-category-feature-copy p {
    margin: 0 0 22px;
    color: var(--site-ink-soft);
    line-height: 1.85;
}

.home-top-category-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
    color: var(--site-ink);
    font-weight: 700;
}

.home-top-category-meta span {
    color: var(--site-ink-soft);
    font-weight: 600;
}

.home-top-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.home-top-category-mini-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(47, 45, 45, 0.08);
    box-shadow: 0 10px 24px rgba(47, 45, 45, 0.06);
}

.home-top-category-mini-media {
    border-radius: 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(245, 127, 17, 0.1), transparent 24%),
        linear-gradient(135deg, #faf8f4 0%, #f1ece5 100%);
}

.home-top-category-mini-media img,
.home-top-category-mini-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.home-top-category-mini-media img {
    object-fit: cover;
}

.home-top-category-mini-placeholder {
    display: grid;
    place-items: center;
    color: var(--site-accent-deep);
    font-size: 1.4rem;
    font-weight: 800;
}

.home-top-category-mini-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.home-top-category-mini-copy h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
}

.home-top-category-mini-copy strong {
    font-size: 0.96rem;
    color: var(--site-ink);
}

.home-top-category-mini-copy a {
    color: var(--site-accent-deep);
    font-size: 0.88rem;
    font-weight: 700;
}

.home-hot-deals-heading {
    margin-bottom: 24px;
}

.home-hot-deals-heading h2 {
    max-width: 720px;
}

.home-hot-deals-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-hot-deals-shell {
    position: relative;
}

.home-hot-deals-viewport {
    overflow: hidden;
}

.home-hot-deals-track {
    display: flex;
    gap: 18px;
    transition: transform 0.6s ease;
    will-change: transform;
}

.home-hot-deals-card {
    flex: 0 0 calc((100% - (18px * 3)) / 4);
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(16, 37, 49, 0.06);
}

.home-hot-deals-card .product-media {
    min-height: 220px;
    max-height: 220px;
}

.home-hot-deals-card .product-media img,
.home-hot-deals-card .product-placeholder {
    width: 100%;
    height: 220px;
}

.home-hot-deals-card .product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.home-hot-deals-card .product-body h3 {
    min-height: 2.7em;
    margin: 8px 0 8px;
    font-size: 1.02rem;
}

.home-hot-deals-card .product-body p {
    min-height: 4.8em;
    font-size: 0.92rem;
    line-height: 1.65;
}

.home-hot-deals-card .product-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
}

.home-hot-deals-card .product-price strong {
    font-size: 0.98rem;
}

.home-hot-deals-card .product-price span {
    font-size: 0.78rem;
}

.home-hot-deals-card .btn-site,
.home-hot-deals-card .btn-site-outline {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.84rem;
}

.home-hot-deals-card .product-actions {
    align-self: end;
    justify-content: flex-end;
}

.home-hot-deals-card .product-actions .btn-site-outline {
    min-width: 132px;
}

.home-feature-grid {
    position: relative;
    z-index: 1;
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(30px, 2.6vw, 44px);
    align-items: start;
    justify-items: center;
    padding: 0 24px;
}

.home-feature-panel {
    min-width: 0;
    height: 100%;
    width: 100%;
}

.home-best-seller-panel {
    padding-top: 6px;
}

.home-feature-product-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-height: 100%;
    padding: 12px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(250, 246, 240, 0.95));
    border: 1px solid rgba(104, 84, 63, 0.07);
    box-shadow: 0 18px 34px rgba(59, 44, 29, 0.08);
}

.home-feature-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 68px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(245, 127, 17, 0), rgba(245, 127, 17, 0.24), rgba(245, 127, 17, 0));
}

.home-feature-product-card::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    pointer-events: none;
}

.home-feature-product-media {
    min-height: 286px;
    max-height: 286px;
    border-radius: 26px;
    border-bottom: none;
    box-shadow:
        inset 0 0 0 1px rgba(16, 37, 49, 0.06),
        0 10px 24px rgba(47, 45, 45, 0.05);
}

.home-feature-product-media img,
.home-feature-product-media .product-placeholder {
    width: 100%;
    height: 286px;
}

.home-feature-product-card .product-chip {
    top: 18px;
    left: 18px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--site-ink);
    box-shadow: 0 10px 20px rgba(47, 45, 45, 0.08);
    backdrop-filter: blur(14px);
}

.home-feature-product-body {
    padding: 22px 12px 10px;
}

.home-feature-product-body h3 {
    margin: 10px 0 10px;
    font-size: 1.34rem;
    line-height: 1.24;
}

.home-feature-product-body p {
    min-height: 4.9em;
    font-size: 0.95rem;
    line-height: 1.78;
}

.home-feature-product-card .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 20px;
}

.home-feature-product-card .product-price strong {
    font-size: 1.2rem;
}

.home-feature-product-card .product-price span {
    display: block;
    margin-top: 4px;
    color: var(--site-ink-soft);
    font-size: 0.82rem;
    line-height: 1.55;
}

.home-feature-product-card .product-actions {
    width: 100%;
    justify-content: stretch;
}

.home-feature-product-card .product-actions .btn-site-outline {
    width: 100%;
    min-height: 46px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f1e8 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
    justify-content: center;
}

.section-showcase-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
    min-height: 100%;
    padding: 28px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 249, 245, 0.99));
    border: 1px solid rgba(47, 45, 45, 0.08);
    box-shadow: 0 16px 36px rgba(47, 45, 45, 0.07);
}

.section-showcase-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-showcase-copy h2 {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 3vw, 2.9rem);
    line-height: 0.98;
}

.section-showcase-copy p {
    margin: 0 0 22px;
    color: var(--site-ink-soft);
    line-height: 1.8;
}

.section-showcase-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    min-height: 280px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(245, 127, 17, 0.18), transparent 24%),
        linear-gradient(135deg, #f3f1eb 0%, #e8ecee 100%);
}

.section-showcase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-showcase-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--site-accent-deep);
    font-size: 2.2rem;
    font-weight: 800;
}

.category-icon-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.category-icon-copy {
    max-width: 620px;
}

.category-icon-title {
    margin: 0 0 12px;
}

.category-icon-count {
    margin: 0;
    color: var(--site-ink-soft);
    font-size: 0.98rem;
    line-height: 1.75;
}

.category-icon-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-arrow,
.category-view-all {
    min-height: 42px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(47, 45, 45, 0.12);
    background: #fff;
    color: var(--site-ink);
    font-weight: 700;
}

.category-arrow {
    width: 42px;
    padding: 0;
}

.category-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.category-slider-shell {
    position: relative;
}

.category-slider-viewport {
    overflow: hidden;
}

.category-icon-strip {
    display: flex;
    gap: 22px;
    align-items: start;
    transition: transform 0.6s ease;
    will-change: transform;
}

.category-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    flex: 0 0 calc((100% - (22px * 5)) / 6);
    padding: 0 2px;
    color: inherit;
}

.category-icon-media {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    display: grid;
    place-items: center;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(245, 127, 17, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(249, 245, 240, 0.99));
    border: 1px solid rgba(47, 45, 45, 0.08);
    box-shadow: 0 12px 24px rgba(47, 45, 45, 0.06);
    transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.34s ease;
}

.category-icon-card:hover .category-icon-media {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(47, 45, 45, 0.09);
}

.category-icon-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon-media span {
    color: var(--site-accent-deep);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.category-icon-card h3 {
    margin: 0;
    color: var(--site-ink);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.category-all-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.category-page-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.category-page-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 24px 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(47, 45, 45, 0.08);
    box-shadow: 0 14px 34px rgba(47, 45, 45, 0.08);
    color: inherit;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.category-page-card:hover {
    transform: translateY(-4px);
    border-color: rgba(221, 109, 9, 0.18);
    box-shadow: 0 18px 38px rgba(47, 45, 45, 0.1);
}

.category-page-card.is-active {
    border-color: rgba(221, 109, 9, 0.34);
    box-shadow: 0 18px 40px rgba(221, 109, 9, 0.12);
}

.category-page-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--site-ink);
}

.category-page-card p {
    margin: 0;
    color: var(--site-ink-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}

.category-page-description {
    max-width: 760px;
    margin: 0 0 24px;
    color: var(--site-ink-soft);
    line-height: 1.8;
}

.category-page-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.category-subheading {
    margin-top: 32px;
}

.category-page-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(245, 127, 17, 0.12), rgba(245, 127, 17, 0.04));
    color: var(--site-accent-deep);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.home-product-sections {
    padding: 18px 0 54px;
    background: #fff;
}

.home-product-block + .home-product-block {
    margin-top: 52px;
}

.home-product-heading {
    margin-bottom: 24px;
}

@keyframes sliderContentIn {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }

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

.hero-slider {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--site-shadow);
    background: #102531;
}

.hero-slide {
    position: relative;
    min-height: 74vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-slide-media,
.hero-slide-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide-media {
    background:
        linear-gradient(120deg, rgba(16, 37, 49, 0.78) 0%, rgba(16, 37, 49, 0.3) 56%, rgba(16, 37, 49, 0.68) 100%),
        radial-gradient(circle at top right, rgba(203, 123, 42, 0.35), transparent 32%),
        linear-gradient(135deg, #133645 0%, #24596c 55%, #0e2029 100%);
    background-size: cover;
    background-position: center;
}

.hero-slide-overlay {
    background:
        linear-gradient(180deg, rgba(13, 26, 34, 0.05), rgba(13, 26, 34, 0.2)),
        linear-gradient(90deg, rgba(9, 21, 28, 0.55) 0%, rgba(9, 21, 28, 0.12) 45%, rgba(9, 21, 28, 0.68) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 28px;
    align-items: end;
    padding: 58px;
    color: #fff;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 0 0 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.1rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
}

.hero-copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-button,
.hero-button-alt {
    min-height: 54px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
}

.hero-button {
    background: linear-gradient(135deg, #d99141 0%, #bc691e 100%);
    color: #fff;
}

.hero-button-alt {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.hero-side-panel {
    padding: 26px;
    align-self: end;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.hero-side-panel h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.hero-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.hero-meta-card {
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-meta-card strong {
    display: block;
    font-size: 1.06rem;
}

.hero-meta-card span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}

.carousel-indicators.hero-indicators {
    margin-bottom: 20px;
    gap: 12px;
}

.carousel-indicators.hero-indicators button {
    width: 54px;
    height: 6px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
}

.carousel-indicators.hero-indicators .active {
    background: #fff;
}

.quick-grid {
    padding: 18px 4px 8px;
}

.quick-grid-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.quick-card {
    padding: 18px 20px;
    border-radius: 24px;
    background: var(--site-panel);
    border: 1px solid rgba(16, 37, 49, 0.08);
    box-shadow: 0 10px 30px rgba(16, 37, 49, 0.06);
}

.quick-card strong {
    display: block;
    font-size: 1.35rem;
}

.quick-card span {
    color: var(--site-ink-soft);
    font-size: 0.9rem;
}

.section-shell {
    padding: 68px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    line-height: 0.98;
}

.section-heading p {
    max-width: 560px;
    margin: 0;
    color: var(--site-ink-soft);
    line-height: 1.8;
}

.collection-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.collection-card {
    position: relative;
    min-height: 200px;
    padding: 20px;
    border-radius: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(16, 37, 49, 0.06), rgba(16, 37, 49, 0.28)),
        linear-gradient(135deg, #dbe8eb 0%, #f6f2e8 100%);
    border: 1px solid rgba(16, 37, 49, 0.06);
    box-shadow: 0 14px 40px rgba(16, 37, 49, 0.08);
}

.collection-card::after {
    content: '';
    position: absolute;
    inset: auto -24px -42px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(203, 123, 42, 0.16);
}

.collection-image {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.18;
}

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

.collection-badge {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    font-weight: 800;
    color: var(--site-sea);
}

.collection-content h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.collection-content p {
    margin: 0;
    color: var(--site-ink-soft);
    font-size: 0.95rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.section-product-grid {
    grid-auto-rows: 1fr;
    align-items: stretch;
}

.section-product-grid .product-card {
    height: 100%;
}

.section-product-grid .product-body {
    gap: 14px;
}

.section-product-grid .product-media {
    min-height: 320px;
    max-height: 320px;
}

.section-product-grid .product-media img,
.section-product-grid .product-placeholder {
    width: 100%;
    height: 320px;
}

.section-product-grid .product-body h3 {
    margin: 0;
    min-height: 2.8em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.section-product-grid .product-body p {
    margin: 0;
    min-height: 5.1em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.section-product-grid .product-tags {
    margin-top: 0;
    min-height: 44px;
    align-content: flex-start;
}

.section-product-grid .product-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
}

.section-product-grid .product-price {
    width: 100%;
}

.section-product-grid .product-actions {
    width: 100%;
    align-self: stretch;
    justify-content: flex-start;
}

.section-product-grid .product-actions .btn-site,
.section-product-grid .product-actions .btn-site-outline {
    min-width: 142px;
}

.related-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.related-product-card {
    border-radius: 24px;
}

.related-product-card .product-media {
    min-height: 220px;
    max-height: 220px;
}

.related-product-card .product-media img,
.related-product-card .product-placeholder {
    width: 100%;
    height: 220px;
}

.related-product-card .product-chip {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    font-size: 0.72rem;
}

.related-product-card .product-body {
    gap: 10px;
    padding: 18px;
}

.related-product-card .product-body h3 {
    margin: 6px 0 4px;
    font-size: 1.02rem;
    min-height: 2.7em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.related-product-card .product-body p {
    font-size: 0.92rem;
    min-height: 4.8em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.related-product-card .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 14px;
}

.related-product-card .product-price strong {
    font-size: 1rem;
}

.related-product-card .product-price span {
    font-size: 0.8rem;
}

.related-product-card .product-actions {
    width: 100%;
    justify-content: flex-start;
}

.related-product-card .product-actions .btn-site,
.related-product-card .product-actions .btn-site-outline {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: var(--site-panel-strong);
    border: 1px solid rgba(16, 37, 49, 0.08);
    box-shadow: 0 16px 45px rgba(16, 37, 49, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(16, 37, 49, 0.15);
}

.product-media {
    position: relative;
    min-height: 270px;
    background:
        radial-gradient(circle at top right, rgba(203, 123, 42, 0.2), transparent 24%),
        linear-gradient(135deg, #f1f5f6 0%, #e1ecef 100%);
    overflow: hidden;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--site-sea);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.product-chip {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--site-sea);
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.product-code {
    color: var(--site-accent-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-body h3 {
    margin: 10px 0 8px;
    font-size: 1.2rem;
}

.product-body p {
    margin: 0;
    color: var(--site-ink-soft);
    line-height: 1.7;
}

.product-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.product-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(25, 68, 84, 0.08);
    color: var(--site-sea);
    font-size: 0.8rem;
    font-weight: 700;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.product-price strong {
    font-size: 1.06rem;
}

.product-price span {
    color: var(--site-ink-soft);
    font-size: 0.85rem;
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-site,
.btn-site-outline,
.btn-site-subtle {
    min-height: 46px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
}

.btn-site {
    background: linear-gradient(135deg, #f58d2c 0%, #dd6d09 100%);
    color: #fff;
}

.btn-site-outline {
    border: 1px solid rgba(47, 45, 45, 0.16);
    background: rgba(255, 255, 255, 0.6);
    color: var(--site-ink);
}

.btn-site-subtle {
    border: 1px solid rgba(47, 45, 45, 0.08);
    background: rgba(245, 127, 17, 0.09);
    color: var(--site-sea);
}

.about-panel,
.contact-panel,
.detail-panel,
.detail-side-card,
.site-modal-card {
    border-radius: 32px;
    background: var(--site-panel-strong);
    border: 1px solid rgba(16, 37, 49, 0.08);
    box-shadow: 0 18px 45px rgba(16, 37, 49, 0.09);
}

.about-panel {
    padding: 34px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
}

.about-copy p {
    color: var(--site-ink-soft);
    line-height: 1.9;
}

.about-grid {
    display: grid;
    gap: 16px;
}

.about-stat {
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(219, 232, 235, 0.7), rgba(246, 242, 232, 0.76));
}

.about-stat strong {
    display: block;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
}

.about-stat span {
    color: var(--site-ink-soft);
}

.contact-panel {
    padding: 38px;
    background:
        radial-gradient(circle at top right, rgba(203, 123, 42, 0.14), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 245, 0.96));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.contact-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(16, 37, 49, 0.08);
}

.contact-card i {
    font-size: 1.35rem;
    color: var(--site-accent);
}

.contact-card h3 {
    margin: 14px 0 8px;
    font-size: 1.08rem;
}

.contact-card p {
    margin: 0;
    color: var(--site-ink-soft);
    line-height: 1.75;
}

.site-footer {
    margin-top: auto;
    padding: 0;
    background: linear-gradient(180deg, #383433 0%, #2f2d2d 100%);
}

.site-footer .site-fluid {
    padding-left: 0;
    padding-right: 0;
}

.starter-canvas {
    min-height: calc(100vh - 240px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0 56px;
}

.starter-panel {
    width: 100%;
    min-height: 420px;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
        radial-gradient(circle at top right, rgba(245, 127, 17, 0.08), transparent 24%);
    border-top: 1px solid rgba(47, 45, 45, 0.06);
    border-bottom: 1px solid rgba(47, 45, 45, 0.06);
    box-shadow: none;
}

.starter-panel-inner {
    max-width: 1440px;
    margin: 0 auto;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px clamp(16px, 2.8vw, 40px);
    color: var(--site-ink);
}

.starter-panel-inner h1 {
    margin: 0 0 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.95;
}

.starter-panel-inner p {
    max-width: 720px;
    margin: 0;
    color: var(--site-ink-soft);
    font-size: 1.05rem;
    line-height: 1.9;
}

.footer-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 34px;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.footer-panel h2 {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
}

.footer-panel p {
    margin: 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.footer-panel-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-meta {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 4px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.92rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-strip {
    background: transparent;
}

.footer-strip .top-strip-inner {
    min-height: 46px;
    padding: 0 34px;
}

.footer-strip .top-strip-pill {
    background: rgba(245, 127, 17, 0.18);
}

.empty-state {
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px dashed rgba(16, 37, 49, 0.16);
    text-align: center;
}

.site-cart,
.site-modal {
    background: #f8f4ec;
}

.cart-empty-state {
    display: grid;
    place-items: center;
    min-height: 260px;
    text-align: center;
}

.cart-empty-icon {
    width: 72px;
    height: 72px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgba(25, 68, 84, 0.09);
    color: var(--site-sea);
    font-size: 1.8rem;
}

.cart-items {
    display: grid;
    gap: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(16, 37, 49, 0.08);
}

.cart-item-media {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #e4eef0, #f8f3e9);
}

.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-media span {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--site-sea);
}

.cart-item-info strong {
    display: block;
}

.cart-item-info span,
.cart-item-info a {
    display: block;
    color: var(--site-ink-soft);
    font-size: 0.88rem;
}

.cart-item-remove {
    border: 0;
    background: transparent;
    color: #9b3131;
}

.offcanvas-footer {
    padding: 0 16px 16px;
}

.account-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.account-step-pill {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(47, 45, 45, 0.06);
    color: var(--site-ink-soft);
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
}

.account-step-pill.active {
    background: linear-gradient(135deg, rgba(245, 141, 44, 0.16), rgba(221, 109, 9, 0.16));
    color: var(--site-accent-deep);
}

.account-inline-alert,
.cart-order-feedback {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid rgba(16, 37, 49, 0.08);
    background: rgba(255, 255, 255, 0.84);
}

.account-inline-alert.is-success,
.cart-order-feedback.is-success {
    border-color: rgba(44, 128, 96, 0.18);
    background: rgba(44, 128, 96, 0.09);
    color: #195c45;
}

.account-inline-alert.is-warning,
.cart-order-feedback.is-warning {
    border-color: rgba(221, 109, 9, 0.18);
    background: rgba(245, 127, 17, 0.09);
    color: #8d4c12;
}

.account-step-panel + .account-step-panel {
    margin-top: 10px;
}

.account-recaptcha {
    margin-top: 16px;
    min-height: 80px;
}

.account-summary-card,
.account-mini-panel,
.cart-account-card,
.cart-address-card {
    padding: 22px;
}

.account-summary-head,
.cart-account-head,
.cart-delivery-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.account-code-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(245, 127, 17, 0.1);
    color: var(--site-accent-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.account-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.account-metric-box {
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(16, 37, 49, 0.06);
}

.account-metric-box strong {
    display: block;
    font-size: 1.05rem;
}

.account-metric-box span {
    color: var(--site-ink-soft);
    font-size: 0.84rem;
}

.account-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.account-mini-panel strong {
    display: block;
    margin-bottom: 8px;
}

.account-mini-list {
    margin: 0;
    padding-left: 18px;
    color: var(--site-ink-soft);
}

.account-panel-actions,
.cart-address-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.cart-account-card {
    margin-bottom: 16px;
}

.cart-address-card {
    margin-bottom: 16px;
}

.cart-selected-address {
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 37, 49, 0.08);
    color: var(--site-ink-soft);
}

.cart-selected-address strong {
    display: block;
    margin-bottom: 6px;
    color: var(--site-ink);
}

.cart-address-form {
    margin-top: 16px;
}

.detail-hero {
    padding: 28px 0 54px;
}

.detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: clamp(24px, 2.2vw, 36px);
    align-items: start;
}

.detail-related-section {
    margin-top: clamp(28px, 4vw, 56px);
    padding-top: clamp(32px, 4vw, 44px);
    border-top: 1px solid rgba(47, 45, 45, 0.12);
}

.detail-panel,
.detail-side-card {
    padding: 28px;
}

.detail-gallery-panel {
    padding: clamp(18px, 2vw, 28px);
}

.detail-gallery-layout {
    --detail-thumb-size: 88px;
    --detail-thumb-gap: 12px;
    display: grid;
    grid-template-columns: minmax(0, 88px) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.detail-thumb-rail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: var(--detail-thumb-size);
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
}

.detail-thumb-control {
    width: 100%;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 16px;
    border: 1px solid rgba(47, 45, 45, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: var(--site-ink);
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.detail-thumb-control span {
    display: inline-block;
}

.detail-thumb-control:hover:not(:disabled) {
    border-color: rgba(221, 109, 9, 0.45);
    color: var(--site-accent-deep);
    box-shadow: 0 10px 24px rgba(47, 45, 45, 0.08);
}

.detail-thumb-control:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

.detail-thumbs-viewport {
    width: 100%;
    max-height: calc((var(--detail-thumb-size) * 5) + (var(--detail-thumb-gap) * 4));
    overflow: hidden auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    overscroll-behavior: contain;
    border-radius: 18px;
}

.detail-thumbs-viewport::-webkit-scrollbar {
    display: none;
}

.detail-gallery {
    position: relative;
    min-height: clamp(420px, 48vw, 760px);
    display: grid;
    place-items: center;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(203, 123, 42, 0.18), transparent 24%),
        linear-gradient(135deg, #e1ecef 0%, #f7f3eb 100%);
}

.detail-gallery-image {
    width: 100%;
    height: 100%;
    min-height: clamp(420px, 48vw, 760px);
    object-fit: cover;
    cursor: crosshair;
    transform-origin: var(--detail-zoom-x, 50%) var(--detail-zoom-y, 50%);
    transition: transform 0.18s ease-out;
    will-change: transform, transform-origin;
}

.detail-gallery.is-zooming .detail-gallery-image {
    transform: scale(1.9);
}

.detail-placeholder {
    width: 100%;
    min-height: clamp(420px, 48vw, 760px);
    display: grid;
    place-items: center;
    color: var(--site-sea);
    font-size: 3rem;
    font-weight: 800;
}

.detail-thumbs {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--detail-thumb-gap);
    justify-items: center;
}

.detail-thumb-btn {
    width: 100%;
    padding: 0;
    cursor: pointer;
    border: 1px solid rgba(16, 37, 49, 0.1);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    scroll-snap-align: start;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.detail-thumb-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(221, 109, 9, 0.45);
}

.detail-thumb-btn.is-active {
    border-color: var(--site-accent);
    box-shadow: 0 0 0 2px rgba(245, 127, 17, 0.18);
}

.detail-thumb-btn img,
.detail-thumbs span {
    width: 100%;
    height: var(--detail-thumb-size);
    object-fit: cover;
}

.detail-thumbs span {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e1ecef, #f7f3eb);
    color: var(--site-sea);
    font-weight: 800;
}

.breadcrumb-shell {
    margin-bottom: 18px;
    color: var(--site-ink-soft);
    font-size: 0.92rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.detail-title {
    margin: 0 0 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 0.96;
}

.detail-copy {
    color: var(--site-ink-soft);
    line-height: 1.85;
}

.detail-tag-row,
.detail-section-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 18px 0 24px;
}

.detail-tag-row span,
.detail-section-tags span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(25, 68, 84, 0.08);
    color: var(--site-sea);
    font-size: 0.82rem;
    font-weight: 700;
}

.detail-price {
    margin: 18px 0 26px;
}

.detail-price strong {
    display: block;
    font-size: 1.75rem;
}

.detail-price span {
    color: var(--site-ink-soft);
    display: block;
    margin-top: 4px;
    line-height: 1.65;
}

.detail-attribute-panel {
    margin: 0 0 26px;
    padding: 18px;
    border: 1px solid rgba(25, 68, 84, 0.1);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(245, 127, 17, 0.12), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 237, 0.96));
}

.detail-attribute-header {
    margin-bottom: 16px;
}

.detail-attribute-header strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.detail-attribute-header p {
    margin: 0;
    color: var(--site-ink-soft);
    line-height: 1.7;
}

.detail-attribute-groups {
    display: grid;
    gap: 14px;
}

.detail-attribute-group h3 {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--site-sea);
}

.detail-attribute-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-attribute-option {
    flex: 1 1 180px;
    min-width: 0;
    cursor: pointer;
}

.detail-attribute-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.detail-attribute-option-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 13px 15px;
    border: 1px solid rgba(25, 68, 84, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-attribute-option-copy strong {
    display: block;
    font-size: 0.94rem;
}

.detail-attribute-option-copy small {
    color: var(--site-accent-deep);
    font-size: 0.88rem;
    font-weight: 700;
}

.detail-attribute-option:hover .detail-attribute-option-copy {
    border-color: rgba(245, 127, 17, 0.38);
    transform: translateY(-1px);
}

.detail-attribute-option input:checked + .detail-attribute-option-copy {
    border-color: rgba(245, 127, 17, 0.55);
    background: rgba(245, 127, 17, 0.1);
    box-shadow: 0 14px 28px rgba(245, 127, 17, 0.12);
}

.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-actions > * {
    min-width: 0;
}

.detail-grid {
    display: grid;
    gap: 16px;
}

.detail-side-card {
    grid-column: 1 / -1;
}

.detail-assurance-card {
    background:
        radial-gradient(circle at top right, rgba(245, 127, 17, 0.12), transparent 28%),
        linear-gradient(135deg, #fffdf9 0%, #f5efe6 100%);
}

.detail-assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.detail-assurance-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(25, 68, 84, 0.08);
}

.detail-assurance-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(245, 127, 17, 0.16), rgba(221, 109, 9, 0.08));
    color: var(--site-accent-deep);
    font-size: 1.35rem;
}

.detail-assurance-copy strong,
.detail-side-card strong {
    display: block;
    font-size: 1.15rem;
}

.detail-assurance-copy strong {
    margin-bottom: 2px;
}

.detail-side-card strong {
    margin-bottom: 8px;
}

.detail-assurance-copy span {
    display: block;
    color: var(--site-ink-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

.detail-side-card-body {
    position: relative;
    overflow: hidden;
    max-height: 15.5rem;
    transition: max-height 0.28s ease;
}

.detail-side-card:not(.is-expanded):not(.is-static) .detail-side-card-body::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 84px;
    background: linear-gradient(180deg, rgba(250, 248, 244, 0), rgba(250, 248, 244, 0.98) 78%);
    pointer-events: none;
}

.detail-side-card.is-expanded .detail-side-card-body {
    max-height: 1200px;
}

.detail-side-card.is-static .detail-side-card-body {
    max-height: none;
}

.detail-side-card-toggle {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--site-accent-deep);
    font-size: 0.95rem;
    font-weight: 700;
}

.detail-side-card-toggle:hover {
    color: #c9630f;
}

.detail-side-card p,
.detail-side-card li {
    color: var(--site-ink-soft);
    line-height: 1.8;
}

.detail-side-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.rich-text p:last-child {
    margin-bottom: 0;
}

.scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    filter: blur(6px);
    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(0.22, 0.61, 0.36, 1),
        filter 1s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.scroll-reveal.section-heading,
.scroll-reveal.category-icon-header {
    transform: translate3d(0, 20px, 0);
}

.scroll-reveal.home-top-category-feature,
.scroll-reveal.section-showcase-card {
    transform: translate3d(0, 28px, 0) scale(0.992);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal.is-visible {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

@media (max-width: 1199.98px) {
    .hero-inner,
    .about-layout,
    .detail-shell {
        grid-template-columns: 1fr;
    }

    .quick-grid-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 1199.98px) and (min-width: 992px) {
    .detail-shell {
        grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
        gap: 24px;
    }

    .detail-title {
        font-size: clamp(2.3rem, 4vw, 3.35rem);
    }

    .detail-gallery,
    .detail-gallery-image,
    .detail-placeholder {
        min-height: 500px;
    }

    .detail-assurance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .home-feature-split::before,
    .home-feature-split::after {
        display: none;
    }

    .home-top-category-layout,
    .home-top-category-feature {
        grid-template-columns: 1fr;
    }

    .site-navbar {
        min-height: 84px;
    }

    .home-top-category-feature-media {
        min-height: 320px;
    }

    .home-feature-grid {
        grid-template-columns: 1fr;
        width: min(100%, 760px);
        padding: 0 18px;
    }

    .home-hot-deals-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .home-best-seller-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-feature-product-media {
        min-height: 280px;
        max-height: 280px;
    }

    .home-feature-product-media img,
    .home-feature-product-media .product-placeholder {
        height: 280px;
    }

    .home-feature-product-card {
        max-width: 680px;
    }

    .home-cover-slider {
        min-height: 72vh;
    }

    .home-cover-track {
        min-height: 68vh;
    }

    .home-cover-slide.is-prev {
        width: 16%;
        transform: translate(calc(-50% - 40vw), -50%) scale(0.88);
    }

    .home-cover-slide.is-next {
        width: 16%;
        transform: translate(calc(-50% + 40vw), -50%) scale(0.88);
    }

    .home-cover-content {
        padding: 56px 0 92px;
    }

    .home-cover-content h1 {
        font-size: clamp(2.7rem, 10vw, 4.4rem);
    }

    .top-strip-inner,
    .footer-panel,
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-slide {
        min-height: 700px;
    }

    .hero-inner {
        padding: 34px 24px 76px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: clamp(2.6rem, 11vw, 4.2rem);
    }

    .hero-side-panel {
        width: 100%;
    }

    .about-panel,
    .contact-panel,
    .detail-panel,
    .detail-side-card {
        padding: 24px;
    }

    .detail-hero {
        padding: 22px 0 40px;
    }

    .breadcrumb-shell {
        margin-bottom: 14px;
        font-size: 0.88rem;
    }

    .detail-title {
        font-size: clamp(2.15rem, 6.8vw, 3rem);
        line-height: 1;
    }

    .detail-copy {
        font-size: 0.97rem;
        line-height: 1.75;
    }

    .detail-tag-row,
    .detail-section-tags {
        gap: 8px;
        margin: 16px 0 22px;
    }

    .detail-tag-row span,
    .detail-section-tags span {
        padding: 8px 12px;
        font-size: 0.78rem;
    }

    .detail-price {
        margin: 16px 0 22px;
    }

    .detail-price strong {
        font-size: 1.55rem;
    }

    .detail-attribute-panel {
        margin-bottom: 22px;
        padding: 16px;
    }

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

    .account-panel-grid {
        grid-template-columns: 1fr;
    }

    .detail-gallery-layout {
        --detail-thumb-size: 82px;
        grid-template-columns: minmax(0, 82px) minmax(0, 1fr);
    }

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

@media (max-width: 767.98px) {
    html {
        font-size: 14px;
    }

    .account-stepper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-metric-grid {
        grid-template-columns: 1fr;
    }

    .account-summary-head,
    .cart-account-head,
    .cart-delivery-head,
    .account-panel-actions,
    .cart-address-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-top-category-actions {
        width: 100%;
    }

    .home-top-category-actions .btn-site-outline {
        margin-left: auto;
    }

    .home-top-category-grid,
    .home-top-category-mini-card {
        grid-template-columns: 1fr;
    }

    .home-top-category-feature-copy {
        padding: 26px 22px;
    }

    .home-hot-deals-actions {
        width: 100%;
    }

    .home-hot-deals-actions .btn-site-outline {
        margin-left: auto;
    }

    .home-hot-deals-card {
        flex-basis: 100%;
    }

    .home-hot-deals-card .product-footer {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .home-hot-deals-card .product-actions {
        justify-content: stretch;
    }

    .home-best-seller-grid {
        grid-template-columns: 1fr;
    }

    .section-product-grid .product-media {
        min-height: 260px;
        max-height: 260px;
    }

    .section-product-grid .product-media img,
    .section-product-grid .product-placeholder {
        height: 260px;
    }

    .section-product-grid .product-footer {
        align-items: stretch;
    }

    .section-product-grid .product-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .related-product-grid {
        grid-template-columns: 1fr;
    }

    .category-icon-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-icon-actions {
        width: 100%;
    }

    .category-view-all {
        margin-left: auto;
    }

    .category-icon-strip {
        gap: 18px;
    }

    .category-icon-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .category-all-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .home-feature-product-media {
        min-height: 240px;
        max-height: 240px;
    }

    .home-feature-product-media img,
    .home-feature-product-media .product-placeholder {
        height: 240px;
    }

    .home-feature-product-body {
        padding: 18px 6px 4px;
    }

    .home-feature-product-body h3 {
        font-size: 1.14rem;
    }

    .home-feature-product-card {
        padding: 12px;
    }

    .detail-gallery-layout {
        --detail-thumb-size: 78px;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .detail-hero {
        padding: 16px 0 32px;
    }

    .detail-shell {
        gap: 18px;
    }

    .detail-panel,
    .detail-side-card {
        padding: 18px;
        border-radius: 24px;
    }

    .detail-gallery-panel {
        padding: 14px;
    }

    .detail-thumb-rail {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 10px;
        align-items: center;
        width: 100%;
    }

    .detail-thumbs-viewport {
        max-height: none;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
    }

    .detail-thumbs {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: var(--detail-thumb-size);
    }

    .detail-thumb-control {
        min-height: var(--detail-thumb-size);
    }

    .detail-thumb-control[data-detail-thumb-prev] span {
        transform: rotate(-90deg);
    }

    .detail-thumb-control[data-detail-thumb-next] span {
        transform: rotate(-90deg);
    }

    .detail-gallery,
    .detail-gallery-image,
    .detail-placeholder {
        min-height: clamp(240px, 72vw, 320px);
    }

    .detail-gallery-image {
        cursor: default;
    }

    .detail-gallery {
        border-radius: 22px;
    }

    .detail-placeholder {
        font-size: 2.15rem;
    }

    .breadcrumb-shell {
        margin-bottom: 12px;
        font-size: 0.84rem;
    }

    .detail-title {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .detail-price strong {
        font-size: 1.42rem;
    }

    .detail-attribute-panel {
        padding: 14px;
        border-radius: 20px;
    }

    .detail-attribute-options {
        gap: 8px;
    }

    .detail-attribute-option {
        flex-basis: 100%;
    }

    .detail-attribute-option-copy {
        padding: 12px 13px;
        border-radius: 16px;
    }

    .detail-assurance-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .detail-assurance-item {
        padding: 12px 14px;
        border-radius: 18px;
    }

    .detail-assurance-icon {
        width: 46px;
        height: 46px;
        border-radius: 15px;
        font-size: 1.12rem;
    }

    .detail-side-card-body {
        max-height: 13rem;
    }

    .detail-side-card-toggle {
        font-size: 0.9rem;
    }

    .detail-actions {
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .detail-actions > * {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .home-cover-slider {
        min-height: 62vh;
    }

    .home-cover-track {
        min-height: 62vh;
    }

    .home-cover-slide,
    .home-cover-slide.is-current,
    .home-cover-slide.is-prev,
    .home-cover-slide.is-next,
    .home-cover-slide.is-hidden-left,
    .home-cover-slide.is-hidden-right {
        width: 100%;
        transform: translate(-50%, -50%) scale(1);
    }

    .home-cover-slide:not(.is-current) {
        opacity: 0;
    }

    .home-cover-card {
        min-height: 62vh;
        border-radius: 0;
        box-shadow: none;
    }

    .home-cover-content {
        padding: 42px 0 86px;
    }

    .home-cover-content p {
        font-size: 0.98rem;
    }

    .home-cover-control {
        width: 46px;
        height: 46px;
    }

    .home-cover-indicators button {
        width: 38px;
    }

    .site-header .top-strip {
        display: none;
    }

    .site-brand img {
        height: 42px;
        max-width: min(100%, 220px);
    }

    .site-navbar-mobile .site-brand {
        max-width: calc(100% - 120px);
    }

    .hero-slider {
        border-radius: 28px;
    }

    .hero-slide {
        min-height: 620px;
    }

    .quick-grid-inner {
        grid-template-columns: 1fr;
    }

    .product-footer,
    .product-actions,
    .detail-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .footer-links {
        width: 100%;
    }
}

@media (max-width: 991.98px) and (min-width: 768px) {
    .category-icon-strip {
        gap: 18px;
    }

    .category-icon-card {
        flex-basis: calc((100% - (18px * 2)) / 3);
    }

    .category-all-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }
}
