:root {
    --primary: #9b7a66;
    --primary-dark: #6a4a3a;
    --dark: #1f1a17;
    --light: #f5f1eb;
    --text: #362822;
    --text-light: #856a5d;
    --white: #ffffff;
    --bg-accent: #ebe3d4;
    --surface: #faf7f2;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --section-y: 3rem;
    --section-y-lg: 4rem;
    --home-section-height: 100dvh;
    --home-hero-height: 100vh;
    --home-hero-height: 100lvh;
    --home-section-pad: 0;
    --home-media-height: clamp(220px, 38dvh, 400px);
    --home-banner-height: clamp(110px, 15dvh, 170px);
    --home-media-ratio: 4 / 3;
    --home-banner-ratio: 21 / 6;
    --container-x: clamp(1rem, 4vw, 2rem);
    --container-max: 1280px;
    --grid-gap: clamp(0.75rem, 2vw, 1.25rem);
    --nav-h: clamp(60px, 10vw, 72px);
    --nav-item-h: 2.5rem;
    --page-hero-pad-top: calc(var(--nav-h) + clamp(1.5rem, 5vh, 3.5rem));
    --page-hero-pad-bottom: clamp(1.25rem, 4vh, 2.5rem);
    --page-section-y: clamp(2rem, 6vh, 4rem);
    --page-gap: clamp(1rem, 3vw, 2rem);
    --page-card-radius: 0;
    --btn-radius: 0;
    --fluid-text-sm: clamp(0.78rem, 0.72rem + 0.2vw, 0.9rem);
    --fluid-text-base: clamp(0.88rem, 0.82rem + 0.3vw, 1.05rem);
    --fluid-text-lg: clamp(1rem, 0.92rem + 0.45vw, 1.2rem);
    --fluid-h3: clamp(1.2rem, 1rem + 1.2vw, 1.75rem);
    --fluid-h2: clamp(1.6rem, 1.2rem + 2.2vw, 3rem);
    --fluid-h1: clamp(2rem, 1.4rem + 3.5vw, 3.75rem);
    --section-viewport: 100dvh;
    --section-viewport: 100svh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
    scrollbar-gutter: stable;
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: var(--fluid-text-base);
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}

/* Premium Film Grain / Noise Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

main {
    flex: 1;
    padding-top: var(--nav-h);
}

body.page-login > main,
body.page-login main.login-page {
    padding-top: 0;
}

body:has(header#home) > main {
    padding-top: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Clip Path Image Reveal */
.image-reveal {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    transition: clip-path 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-reveal.visible {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.reveal.visible, .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-x);
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0 var(--container-x);
}

section {
    padding: var(--section-y) 0;
}

.page-home section.home-section {
    padding: var(--home-section-pad) 0;
}

/* ═══════════════════════════════════════════════════════════
   STOREFRONT LAYOUT SYSTEM (all non-admin pages)
   ═══════════════════════════════════════════════════════════ */
.site-main {
    flex: 1;
    width: 100%;
}

.page-inner .site-main {
    padding-top: 0;
}

.page-hero {
    padding: var(--page-hero-pad-top) 0 var(--page-hero-pad-bottom);
    background: var(--surface);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.page-hero-sub {
    margin-bottom: 0.15rem;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: var(--fluid-h1);
    line-height: 1.08;
    color: var(--dark);
    font-weight: 700;
}

.page-hero-lead {
    max-width: min(560px, 100%);
    font-size: var(--fluid-text-lg);
    line-height: 1.65;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.page-hero .breadcrumbs {
    margin-bottom: 0.35rem;
}

.page-body {
    background: var(--light);
}

.page-section {
    padding: var(--page-section-y) 0;
}

.page-section--surface {
    background: var(--surface);
}

.page-section--accent {
    background: var(--bg-accent);
}

.page-section--dark {
    background: var(--dark);
    color: var(--white);
}

.page-section--dark .sub-title {
    color: #d4a373;
}

.page-section--dark h2,
.page-section--dark h3 {
    color: var(--white);
}

.page-section-header {
    margin-bottom: clamp(1.25rem, 3vh, 2rem);
}

.page-section-header--center {
    text-align: center;
}

.page-section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.12;
}

.page-section-lead {
    max-width: 560px;
    margin: 0.65rem auto 0;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-section-header--center .page-section-lead {
    margin-left: auto;
    margin-right: auto;
}

.page-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--page-gap);
    align-items: center;
}

.page-split-sidebar {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: var(--page-gap);
    align-items: start;
}

.page-split-aside {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    gap: var(--page-gap);
    align-items: start;
}

.page-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--page-card-radius);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    box-shadow: 0 8px 24px rgba(31, 26, 23, 0.04);
}

.page-card--flat {
    box-shadow: none;
}

.breadcrumbs {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.breadcrumbs a {
    color: var(--text-light);
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumb-current {
    color: var(--dark);
    font-weight: 500;
}

.breadcrumb-sep {
    opacity: 0.45;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--page-gap);
}

.contact-info-card {
    text-align: center;
    padding: clamp(1.25rem, 3vw, 1.75rem);
}

.contact-info-card i {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--dark);
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.55;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shop-toolbar .results-count {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.shop-toolbar select {
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    color: var(--dark);
}

.product-panel {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--page-card-radius);
    padding: clamp(1.25rem, 3vw, 2rem);
}

@media (max-width: 1024px) {
    .page-grid-2,
    .page-split-aside,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-aside {
        order: -1;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-submit-btn--aside {
        display: none;
    }

    .checkout-mobile-actions {
        display: block;
    }

    .page-split-sidebar {
        grid-template-columns: 1fr;
    }

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

    .shop-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --page-hero-pad-top: calc(var(--nav-h) + 1.5rem);
        --page-section-y: clamp(2rem, 5vh, 3rem);
    }

    .page-hero-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }
}

.section-dark {
    background-color: var(--dark);
    color: var(--light);
}

.section-accent {
    background-color: var(--bg-accent);
}

.section-surface {
    background-color: var(--surface);
}

.sub-title {
    display: block;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-header {
    margin-bottom: 1.25rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
}

.flash-success {
    background: #4caf50;
    color: #fff;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-card {
    margin-bottom: 0;
    padding: 1.25rem;
    height: 100%;
}

.testimonial-card .quote-icon {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.testimonial-card cite {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-style: normal;
    opacity: 0.85;
}

/* Header & Nav */
body > header#home {
    position: relative;
    height: var(--home-hero-height);
    min-height: var(--home-hero-height);
    box-sizing: border-box;
}

body > header {
    position: relative;
    color: var(--white);
    background-color: var(--dark);
}

body > header:not(#home) {
    min-height: 0;
    height: 0;
    overflow: visible;
}

header > nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 1100;
    transition: var(--transition);
}

header > nav.sticky, header > nav.scrolled {
    padding: 0 2rem;
    height: var(--nav-h);
    background: rgba(31, 26, 23, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Inner pages: solid light nav with dark text (always visible) */
header > nav.nav-inner,
.page-inner header > nav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    color: var(--dark);
}

.page-inner .nav-links a {
    color: var(--text);
    opacity: 0.85;
}

.page-inner .nav-links a:hover,
.page-inner .nav-links a.active {
    color: var(--primary);
    opacity: 1;
}

.page-inner .icon-btn,
.page-inner .menu-toggle,
.page-inner .nav-lang-toggle {
    color: var(--dark);
}

.page-home nav.nav-home {
    color: var(--white);
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

.page-home nav.nav-home.scrolled {
    color: var(--dark);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.page-home nav.nav-home.scrolled .nav-links a {
    color: var(--text);
    opacity: 0.85;
}

.page-home nav.nav-home.scrolled .nav-links a:hover,
.page-home nav.nav-home.scrolled .nav-links a.active {
    color: var(--primary);
    opacity: 1;
}

.page-home nav.nav-home.scrolled .logo a,
.page-home nav.nav-home.scrolled .icon-btn,
.page-home nav.nav-home.scrolled .menu-toggle,
.page-home nav.nav-home.scrolled .nav-lang-toggle,
.page-home nav.nav-home.scrolled .nav-auth-link,
.page-home nav.nav-home.scrolled .nav-auth-sep {
    color: var(--dark);
}

.page-home nav.nav-home.scrolled .nav-user-greeting {
    color: var(--text);
    opacity: 0.85;
}

.page-home nav.nav-home.scrolled .nav-auth-link {
    color: var(--text);
    opacity: 0.85;
}

.page-home nav.nav-home.scrolled .nav-auth-link:hover {
    color: var(--primary);
    opacity: 1;
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.logo {
    justify-self: start;
    display: flex;
    align-items: center;
    height: var(--nav-item-h);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}
.logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-style: italic;
    line-height: 1;
}

.logo-img {
    height: clamp(1.75rem, 1.4rem + 1.2vw, 2.35rem);
    width: auto;
    display: block;
    flex-shrink: 0;
}

/* Black logo mark becomes white over the dark home hero (transparent nav) */
.page-home nav.nav-home:not(.scrolled) .logo-img {
    filter: invert(1);
}
.nav-links {
    justify-self: center;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    height: var(--nav-item-h);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    height: var(--nav-item-h);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    opacity: 0.7;
    text-transform: uppercase;
    position: relative;
    padding: 0;
    line-height: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
}

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: var(--primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-user-greeting {
    font-size: 0.8rem;
    opacity: 0.8;
}

.nav-icons {
    justify-self: end;
    display: flex;
    gap: 1rem;
    align-items: center;
    height: var(--nav-item-h);
}

.nav-search {
    display: flex;
    align-items: center;
    height: var(--nav-item-h);
}

.nav-search-form {
    display: none;
    align-items: center;
    overflow: hidden;
}

.nav-search.is-open .nav-search-form {
    display: flex;
    margin-left: 0.5rem;
    animation: navSearchExpand 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes navSearchExpand {
    from {
        max-width: 0;
        opacity: 0;
    }
    to {
        max-width: min(260px, 40vw);
        opacity: 1;
    }
}

.nav-search-form input {
    width: min(260px, 40vw);
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    background: rgba(0, 0, 0, 0.04);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-search-form input::placeholder {
    color: var(--text-light);
}

.nav-search-form input:focus {
    border-color: rgba(155, 122, 102, 0.45);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(155, 122, 102, 0.12);
}

.page-home nav.nav-home:not(.scrolled) .nav-search-form input {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.page-home nav.nav-home:not(.scrolled) .nav-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.page-home nav.nav-home:not(.scrolled) .nav-search-form input:focus {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--nav-item-h);
    height: var(--nav-item-h);
    padding: 0;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.15rem;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 4px;
    border-radius: 50%;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Hero */
.hero {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #1a1512;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: -24px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(14px) brightness(0.88);
    transform: scale(1.08);
    transform-origin: center;
    will-change: filter, transform;
    animation: heroUnblur 3.5s cubic-bezier(0.33, 0.1, 0.2, 1) forwards;
    pointer-events: none;
}

@keyframes heroUnblur {
    0%,
    71% {
        filter: blur(14px) brightness(0.88);
        transform: scale(1.08);
    }
    100% {
        filter: blur(0) brightness(1);
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg {
        animation: none;
        filter: none;
        transform: none;
        inset: 0;
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top, var(--dark) 0%, var(--dark) 12%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeIn 1.5s ease;
    padding: 0 1.25rem;
}

.hero-content span {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    margin-bottom: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #ffffff 0%, #d4a373 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--btn-radius);
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s, background-color 0.3s;
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:not(button[type="submit"])::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 200%; height: 100%;
    background: linear-gradient(60deg, transparent, rgba(255,255,255,0.15), transparent);
    z-index: -1;
    transform: translateX(-100%);
}

.btn:not(button[type="submit"]):hover::after {
    animation: shimmer 1.5s infinite;
}

button[type="submit"].btn,
button[type="submit"].btn-dark {
    transform: none !important;
}

.btn:hover {
    background: #000;
    color: var(--white);
    /* Transform handled by JS magnetic effect */
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.home-bg-light .btn-outline,
.page-about .home-bg-light .btn-outline,
.page-home .home-bg-light .btn-outline {
    color: var(--dark);
    border-color: rgba(31, 26, 23, 0.45);
    box-shadow: none;
}

.home-bg-light .btn-outline:hover,
.page-about .home-bg-light .btn-outline:hover,
.page-home .home-bg-light .btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-login {
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    border-radius: 0;
    border: none;
    cursor: pointer;
}

.btn-login:hover {
    background: var(--dark);
    color: var(--white);
}

.nav-auth-links {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    height: var(--nav-item-h);
    background: transparent;
    padding: 0;
    margin-left: 0.75rem;
    white-space: nowrap;
}

.nav-auth-icon-mobile {
    display: none;
}

.nav-links li.nav-auth-mobile {
    display: none;
}

.nav-auth-link {
    display: inline-flex;
    align-items: center;
    height: var(--nav-item-h);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0.7;
    color: inherit;
    padding: 0;
    line-height: 1;
    transition: opacity 0.2s, color 0.2s;
}

.nav-auth-link:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-auth-sep {
    display: inline-flex;
    align-items: center;
    height: var(--nav-item-h);
    line-height: 1;
    opacity: 0.45;
    font-weight: 300;
}

.page-inner .nav-auth-link,
.page-inner .nav-auth-sep { color: var(--text); }
.page-inner .nav-auth-link:hover { color: var(--primary); }

.btn-light {
    background: var(--white);
    color: var(--dark);
}

.btn-light:hover {
    background: var(--bg-accent);
    color: var(--dark);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: var(--btn-radius);
}

.btn-dark:hover {
    background: var(--primary);
    color: var(--white);
}

/* Solutions */
.solutions {
    background-color: var(--light);
}

.featured-products .section-header,
.best-seller .section-header,
.testimonials-section .section-header {
    text-align: center;
}

.solutions h2 {
    font-size: 2.25rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.solution-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 400px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: var(--white);
    z-index: 2;
    transform: translateY(20px);
    transition: var(--transition);
}

.solution-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay p {
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition);
}

.solution-card:hover .card-overlay p {
    opacity: 1;
}

/* Projects */
.projects {
    padding: 80px 0;
}

.projects-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.projects-text {
    flex: 1;
}

.projects-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.projects-image {
    flex: 1.5;
}

.projects-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.cta-section {
    background: var(--bg-accent);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    max-width: 480px;
    line-height: 1.55;
}

.cta-section .btn-outline {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 0.85rem 2rem;
    width: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-section .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.page-home .cta-section.home-bg-light .btn-outline {
    background: var(--dark);
    color: var(--white);
    border: none;
}

.page-home .cta-section.home-bg-light .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: transparent;
}

/* Contact */
.contact {
    background: linear-gradient(rgba(26, 36, 33, 0.9), rgba(26, 36, 33, 0.9)), url('media.php?p=uploads/assets/edited/07dc7d028b9243fe.jpg') center/cover no-repeat;
    color: var(--white);
    border-radius: 0;
    position: relative;
    z-index: 1;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 36, 33, 0.4);
    z-index: -1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

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

.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 1rem;
    background: var(--light);
    border: 1px solid #e0e0e0;
    border-radius: 0;
    color: var(--text);
    font-family: var(--font-sans);
    margin-bottom: 1rem;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

/* Footer */
footer.site-footer {
    position: relative;
    padding: 2.5rem 0 1.5rem;
    background:
        radial-gradient(circle at top left, rgba(141, 110, 99, 0.28), transparent 35%),
        linear-gradient(180deg, #3b2f27 0%, #2d241e 100%);
    color: rgba(255,255,255,0.72);
    border-top: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

footer.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent 35%, rgba(255,255,255,0.02));
    pointer-events: none;
}

.footer-intro {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin-bottom: 1.75rem;
}

.footer-intro .sub-title {
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.footer-intro h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 1.3em;
    width: auto;
    filter: invert(1);
}

.footer-brand p {
    margin-bottom: 1.75rem;
    max-width: 360px;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255,255,255,0.04);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-nav h4, .footer-newsletter h4 {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.72);
}

.footer-nav a:hover {
    color: #f0d8c4;
}

.footer-newsletter p {
    margin-bottom: 1.25rem;
    max-width: 360px;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0;
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.42);
}

.newsletter-form button {
    min-width: 54px;
    padding: 0 1.25rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #b08d4a;
    transform: translateY(-2px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.56);
}

/* Product Grid & Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.product-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    color: var(--text-light);
}

.wishlist-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.wishlist-btn.active {
    color: #ff5252;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1.2s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-info {
    padding: 1rem 1rem 1.15rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
}

.product-cat {
    display: block;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-price {
    font-weight: 600;
    color: var(--text);
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.9rem;
    width: 100%;
    min-width: 0;
}

.card-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0.7rem 1rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-sans);
    line-height: 1.25;
}

.card-btn i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.card-btn span {
    white-space: normal;
    text-align: center;
}

.card-btn--wishlist {
    background: var(--primary);
    color: #fff;
}

.card-btn--wishlist:hover {
    background: var(--primary-dark, #1a1512);
}

.card-btn--wishlist.is-saved,
.add-to-wishlist.is-saved {
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.card-btn--inquire {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border-strong, #d4c9bc);
}

.card-btn--inquire:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.card-wish-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, color 0.2s ease;
}

.card-wish-btn.is-saved,
.card-wish-btn.is-saved i {
    color: #c0392b;
}

.product-img {
    position: relative;
}

.wishlist-shake {
    animation: cartShake 0.6s cubic-bezier(.36,.07,.19,.97) both;
}

.wishlist-summary-lead {
    color: var(--muted, #666);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.wishlist-summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.55rem;
}

.wishlist-summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border, #e5ddd3);
    padding-bottom: 0.45rem;
}

.wishlist-inquire-btn i {
    margin-left: 0.35rem;
}

.page-shop-v2 .shop-featured-wish.is-saved,
.page-shop-v2 .shop-featured-wish.is-saved i {
    color: #c0392b;
}

body.page-wishlist .cart-page,
body.page-wishlist main.site-main {
    /* reuse cart layout styles */
}

.contact-flash-success {
    max-width: 960px;
    margin: 1rem auto 0;
    padding: 0 1rem;
}

.pdp-price-note {
    font-size: 0.9rem;
    color: var(--muted, #666);
    line-height: 1.5;
    margin: 0;
}

.pdp-btn-inquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pdp-btn-wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.card-btn.btn-added {
    background: #4caf50 !important;
    border-color: #4caf50 !important;
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3) !important;
}

.card-btn.btn-added span::after {
    content: ' ✓';
}

.card-btn:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

/* About Page Styles */
.about-mission {
    padding: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.about-image {
    min-height: 320px;
}

.about-image .about-img {
    min-height: clamp(280px, 40vh, 420px);
}

.about-text h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 1.12;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.about-stats {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    margin-top: 1.25rem;
}

.stat-box h4 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary);
    line-height: 1;
}

.stat-box p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.about-story-btns {
    justify-content: flex-start;
    margin-top: 1.25rem;
}

.about-btn-outline {
    color: var(--dark);
    border-color: var(--dark);
}

.about-mission .container {
    padding-top: 0;
    padding-bottom: 0;
}

.about-mission-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-mission .sub-title {
    color: #d4a373;
}

.about-mission h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0.5rem 0 1.25rem;
    color: var(--white);
}

.about-mission p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.75;
    opacity: 0.9;
}


.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.about-value-card {
    transition: var(--transition);
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(45, 36, 30, 0.08);
}

.about-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: rgba(155, 122, 102, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.about-value-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}


.about-process-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    max-width: 960px;
    margin: 0 auto;
}

.about-process-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-process-num {
    flex-shrink: 0;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    opacity: 0.85;
}

.about-process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--dark);
}

.about-process-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}


.about-materials-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.about-materials-image .about-img {
    min-height: clamp(280px, 38vh, 400px);
}

.about-materials-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.about-materials-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.about-materials-list {
    list-style: none;
    margin-top: 1.25rem;
}

.about-materials-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.about-materials-list i {
    color: var(--primary);
    font-size: 0.8rem;
}


.about-workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, 2vw, 1.25rem);
}

.about-workshop-card {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.about-workshop-card .about-img {
    height: 100%;
    min-height: 100%;
    border-radius: 0;
}

.page-section.about-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
}

.about-cta-inner {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.about-cta p {
    font-size: 1rem;
    line-height: 1.65;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.about-cta-btns {
    justify-content: center;
}

.btn-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* Internal Page Headers */
.shop-header-inside, .about-header-inside, .contact-header-inside, .page-title-section {
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.shop-header-inside span, .about-header-inside span, .contact-header-inside span, .page-title-section span {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: var(--primary);
    text-transform: uppercase;
}

.shop-header-inside h1, .about-header-inside h1, .contact-header-inside h1, .page-title-section h1 {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.1;
}

/* Shop Catalog Layout */
.shop-catalog {
    padding-top: 0;
    padding-bottom: 0;
}

.shop-container {
    /* uses page-split-sidebar from layout system */
}

.shop-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
}

.shop-empty-state i {
    font-size: 2.5rem;
    opacity: 0.25;
}

.shop-empty-state p {
    margin: 1rem 0 1.5rem;
    color: var(--text-light);
}

/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
}

.sidebar-widget {
    background: var(--white);
    padding: 1.25rem;
    border-radius: 0;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 2.5rem 0.8rem 1rem;
    background: var(--light);
    border: 1px solid #eee;
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text);
}

.search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.9rem;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.category-list li a {
    font-size: 0.95rem;
    color: var(--text-light);
    display: block;
    padding: 0.5rem 0;
}

.category-list li a:hover, .category-list li a.active {
    color: var(--primary);
    font-weight: 600;
}

.price-range-widget p {
    margin-bottom: 1rem;
}

.price-slider {
    width: 100%;
    height: 4px;
    background: #eee;
    position: relative;
    border-radius: 0;
    margin: 2rem 0 1rem;
}

.price-slider::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 30%;
    height: 100%;
    background: var(--primary);
}

.slider-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: -6px;
}

.thumb-left { left: 10%; }
.thumb-right { right: 30%; }

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    margin-left: -10px; /* Offset padding to align icon with edge */
}

/* Responsive Media Queries */
@media (max-width: 1400px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .container-fluid {
        padding: 0 2rem;
    }
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-container {
        grid-template-columns: 240px 1fr;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .about-grid, .contact-grid {
        gap: 2rem;
    }
}

.best-seller {
    background: var(--surface);
}

.best-seller > .container > h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1.25rem;
    text-align: center;
}

.craftsmanship-section p {
    opacity: 0.85;
    font-size: 0.95rem;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contact-details {
    margin-top: 1.25rem;
}

.contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-details i {
    color: var(--primary);
    margin-top: 0.2rem;
    width: 1rem;
    flex-shrink: 0;
}

.contact-btns {
    justify-content: flex-start;
    margin-top: 1.25rem;
}

.contact-btn-outline {
    color: var(--dark);
    border-color: var(--dark);
}

.contact-form-title {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    color: var(--dark);
}

.contact-form .form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text);
}

.form-feedback--success { color: #4caf50; }
.form-feedback--error { color: #f44336; }

.contact-form:not(.page-card) {
    padding: 1.5rem;
}

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

@media (max-width: 768px) {
    header > nav {
        display: flex;
        align-items: center;
        padding-left: var(--container-x);
        padding-right: var(--container-x);
        gap: 0.35rem;
    }

    .logo {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }

    .nav-icons {
        margin-left: 0;
        flex-shrink: 0;
        gap: 0.15rem;
    }

    .nav-auth-links--desktop {
        display: none !important;
    }

    .nav-auth-icon-mobile {
        display: inline-flex;
    }

    .nav-icons .nav-lang-current,
    .nav-icons .nav-lang-caret {
        display: none;
    }

    .nav-icons .nav-lang-toggle {
        width: 2.35rem;
        min-width: 2.35rem;
        justify-content: center;
        padding: 0;
        gap: 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: calc(var(--nav-h) + 1.5rem) 0 0;
        gap: 0;
        overflow-y: auto;
    }

    .nav-links li:not(.nav-auth-mobile) {
        margin: 0;
    }

    .nav-links li:not(.nav-auth-mobile) a {
        display: block;
        width: 100%;
        padding: 0.85rem 2rem;
        font-size: 1.05rem;
        height: auto;
    }

    .nav-links li.nav-auth-mobile {
        display: block;
        margin-top: auto;
        width: 100%;
        padding: 1.75rem 2rem calc(2rem + env(safe-area-inset-bottom, 0px));
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-auth-mobile-inner {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        max-width: 300px;
        margin: 0 auto;
    }

    .nav-auth-mobile-lead {
        margin: 0;
        font-size: 0.82rem;
        line-height: 1.45;
        text-align: center;
        color: rgba(255, 255, 255, 0.72);
        text-transform: none;
        letter-spacing: 0;
        font-weight: 400;
    }

    .nav-auth-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .nav-auth-btn-signup,
    .nav-auth-btn-login {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0.8rem 1.15rem;
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        border-radius: var(--btn-radius);
    }

    .nav-auth-btn-login {
        background: var(--primary);
        color: var(--white);
        border: none;
    }

    .nav-auth-btn-login:hover {
        background: var(--primary-dark);
        color: var(--white);
    }

    .nav-auth-btn-signup {
        background: transparent;
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.45);
    }

    .nav-auth-btn-signup:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.7);
    }

    section {
        padding: 2rem 0;
    }

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

    .menu-toggle {
        display: block;
        flex-shrink: 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--dark);
        transition: left 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: 10px 0 30px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        left: 0;
    }

    header > nav.scrolled {
        padding-left: var(--container-x);
        padding-right: var(--container-x);
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    .contact-grid, .about-grid, .shop-container, .projects-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .projects-layout {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-intro {
        margin-bottom: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        min-height: 52px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
    
    .shop-sidebar {
        position: static;
        width: 100%;
    }
    
    .shop-container {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }
    
    .cart-item button {
        grid-column: 2;
        justify-self: start;
    }

    .shop-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .nav-icons .btn-login {
        display: none;
    }

    /* Auth links stay in header; mobile menu has dedicated login/signup row */

    @keyframes navSearchExpand {
        from {
            max-width: 0;
            opacity: 0;
        }
        to {
            max-width: min(200px, 55vw);
            opacity: 1;
        }
    }

    .nav-search-form input {
        width: min(200px, 55vw);
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .cta-section h2 {
        font-size: 2.5rem;
    }
}

/* Cart Page Styles */
.cart-page {
    padding-top: 0;
    padding-bottom: 0;
}

.cart-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 2rem;
}

.cart-items-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0;
}

.cart-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cart-item-info p {
    color: var(--primary);
    font-weight: 600;
}

.remove-item {
    color: #ff5252;
    cursor: pointer;
    font-size: 0.9rem;
    background: none;
    border: none;
}

/* Redesigned Cart Page Styles - Premium UI */

.cart-page .container {
    max-width: 1080px;
}

.cart-container {
    align-items: start;
}

/* Cart Items List */
.cart-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item-card {
    padding: 0;
    border-radius: 0;
    gap: 1.25rem;
    transition: color 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
}

.cart-item-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px; height: 100%;
    background: linear-gradient(to bottom, var(--primary), #d4a373);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cart-item-card:hover {
    transform: none;
    box-shadow: none;
}

.cart-item-card:hover::before {
    opacity: 1;
}

.cart-item-main {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
}

.cart-item-img-wrapper {
    width: 150px;
    height: 150px;
    background: #f7f5f2;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cart-item-img-wrapper img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.cart-item-card:hover .cart-item-img-wrapper img {
    transform: scale(1.1);
}

.cart-item-details {
    flex: 1;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.cart-item-title h4 {
    font-size: 1.6rem;
    font-family: var(--font-serif);
    margin: 0 0 0.5rem 0;
    color: var(--dark);
}

.cart-item-title h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.cart-item-title h4 a:hover {
    color: var(--primary);
}

.cart-item-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 0;
    padding: 0.4rem;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}

.quantity-control button {
    background: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--dark);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.quantity-control button:hover {
    background: var(--dark);
    color: var(--white);
}

.quantity-control span {
    width: 45px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
}

.btn-delete-item {
    background: #fff5f5;
    border: none;
    font-size: 1.1rem;
    color: #ff5252;
    cursor: pointer;
    transition: all 0.3s;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.btn-delete-item:hover {
    background: #ff5252;
    color: #ffffff;
    transform: rotate(90deg);
}

/* Bulk Actions Bar */
.cart-bulk-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 1.25rem;
    box-shadow: none;
    border: none;
}

.bulk-select-all {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    color: var(--dark);
}

.btn-bulk-delete {
    background: #fff5f5;
    border: none;
    color: #ff5252;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0;
    cursor: pointer;
    display: none;
    transition: all 0.3s;
}

.btn-bulk-delete:hover {
    background: #ff5252;
    color: #fff;
}

.btn-bulk-delete.active {
    display: block;
}

/* Custom Checkbox Style */
.item-checkbox {
    width: 24px;
    height: 24px;
    accent-color: var(--dark);
    cursor: pointer;
    flex-shrink: 0;
}

/* Order Summary */
.cart-summary {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
}

.cart-summary h3 {
    font-size: 1.8rem;
    font-family: var(--font-serif);
    margin-bottom: 2.5rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 1rem;
}

.cart-summary h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.summary-row span:first-child {
    color: var(--text-light);
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--dark);
}

.summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 2rem 0;
}

.summary-row.total {
    font-size: 1.4rem;
    align-items: center;
    margin-bottom: 0;
}

.summary-row.total span:first-child {
    color: var(--dark);
    font-weight: 700;
}

.summary-row.total span:last-child {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 800;
}

.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    color: var(--white);
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 2.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cart-checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: var(--white);
}

.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
}

.continue-shopping i {
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.continue-shopping:hover {
    color: var(--primary);
}

.continue-shopping:hover i {
    transform: translateX(-5px);
}

.empty-cart-view {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.empty-cart-view.page-card {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.empty-cart-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: none;
}

.empty-cart-icon i {
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.8;
}

.empty-cart-view h2 {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
    color: var(--dark);
}

.empty-cart-view p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.empty-cart-view .btn {
    padding: 1rem 2.5rem;
    border-radius: var(--btn-radius);
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 1200px) {
    .cart-container {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
        gap: 1.75rem;
    }
}

@media (max-width: 992px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    .cart-summary {
        position: static;
    }
    .cart-item-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    body.page-cart .cart-item-card {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
    }
    .cart-item-main {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    body.page-cart .cart-item-main {
        display: grid;
        grid-template-columns: 96px minmax(0, 1fr);
        align-items: center;
    }
    .btn-delete-item {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    body.page-cart .btn-delete-item {
        position: static;
    }
}
/* Catalog Info */
.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-count {
    font-size: 0.9rem;
    color: var(--text-light);
}



/* Cart Drawer Styles */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    transition: 0.5s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.empty-msg {
    text-align: center;
    color: var(--text-light);
    margin-top: 5rem;
}

.cart-drawer-footer {
    padding: 2rem;
    border-top: 1px solid #eee;
    background: var(--light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

/* Deprecated old cart styles */

/* Redesigned Login Page */
.login-page {
    padding-top: 0;
    height: 100vh;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--light);
    overflow: hidden;
}

.wishlist-page {
    padding: 1.5rem 0 2.5rem;
    min-height: auto;
    background: var(--light);
}

.login-page ~ footer.site-footer {
    display: none;
}

.login-wrapper {
    display: flex;
    width: 100%;
    flex: 1;
    min-height: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.login-image {
    flex: 1.2;
    min-height: 100%;
    background: url('media.php?p=uploads/assets/edited/096a2077531c9902.jpg') center/cover no-repeat;
    background-size: cover;
    position: relative;
    display: none; /* Hidden on mobile */
}

@media (min-width: 992px) {
    .login-image {
        display: block;
    }
}

.login-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45,36,30,0.8), rgba(45,36,30,0.2));
    display: flex;
    align-items: flex-end;
    padding: 5rem;
}

.overlay-content {
    color: var(--white);
}

.overlay-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.overlay-content p {
    font-size: 1.1rem;
    max-width: 450px;
    opacity: 0.9;
}

.login-form-container {
    flex: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(1.25rem, 3vh, 2rem) clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 2vh, 1.5rem);
    background: var(--white);
    overflow-y: auto;
}

@media (min-width: 992px) {
    .login-image,
    .login-form-container {
        flex: 0 0 50%;
        width: 50%;
        min-height: 100%;
        align-self: stretch;
        transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
    }

    .login-image {
        z-index: 2;
    }

    .login-form-container {
        z-index: 1;
        padding: clamp(1.5rem, 3vh, 2.5rem) clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 2.5vh, 2rem);
    }

    .login-form-box {
        max-width: 440px;
        padding: 0;
    }

    .login-header h1 {
        font-size: clamp(1.75rem, 3vw, 2.15rem);
    }
}

.login-form-box {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    padding: clamp(1rem, 3vh, 2rem) 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.login-header {
    margin-bottom: 1.5rem;
}

.login-header .sub-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.login-header h1 {
    font-size: 3rem;
    margin-bottom: 0.4rem;
    font-family: var(--font-serif);
}

.login-header p {
    color: var(--text-light);
}

.auth-form .form-group {
    margin-bottom: 1.15rem;
}

.auth-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.auth-form input[type="email"], 
.auth-form input[type="password"] {
    width: 100%;
    padding: 1rem;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.auth-form input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(141, 110, 99, 0.1);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.remember-me input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary);
}

.remember-me label {
    display: inline;
    margin: 0;
    line-height: 1.2;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

.forgot-pass {
    color: var(--primary);
    font-weight: 600;
}

.login-form-box .btn-dark {
    border-radius: 0;
    padding: 0.9rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: none;
    background: var(--dark);
    margin-top: 0.25rem;
}

.w-100 {
    width: 100%;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

.auth-divider span {
    position: relative;
    background: var(--white);
    padding: 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
}

.social-auth {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.btn-social {
    flex: 1;
    padding: 0.8rem;
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark);
}

.btn-social .fa-google {
    color: #ea4335;
    font-size: 1.05rem;
}

.btn-social--gmail:hover {
    border-color: #dadce0;
    background: #f8f9fa;
}

a.btn-social:hover {
    background: #f8f8f8;
    border-color: #ccc;
    color: var(--dark);
}

.btn-social:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.btn-social:hover {
    background: #f8f8f8;
    border-color: #ccc;
}

.btn-social img {
    width: 20px;
}

.auth-footer {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    padding-top: 0.25rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 700;
}

.auth-message {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.auth-message--error {
    color: #c62828;
}

.auth-message--success {
    color: #2e7d32;
}

.auth-field-hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--text-light);
}

.otp-input {
    font-size: 1.5rem;
    letter-spacing: 0.45em;
    text-align: center;
    font-weight: 700;
}

/* Compact register form — fit footer link without scrolling */
.login-form-box {
    justify-content: center;
    padding: clamp(0.5rem, 1.5vh, 1rem) 0;
}

#registerStepDetails .login-header,
#registerStepOtp .login-header,
#forgotStepEmail .login-header,
#forgotStepOtp .login-header,
#forgotStepPassword .login-header {
    margin-bottom: 0.85rem;
}

#registerStepDetails .login-header h1,
#registerStepOtp .login-header h1,
#forgotStepEmail .login-header h1,
#forgotStepOtp .login-header h1,
#forgotStepPassword .login-header h1 {
    font-size: clamp(1.65rem, 3.2vw, 2.1rem);
    margin-bottom: 0.15rem;
    line-height: 1.1;
}

#registerStepDetails .login-header p,
#registerStepOtp .login-header p,
#forgotStepEmail .login-header p,
#forgotStepOtp .login-header p,
#forgotStepPassword .login-header p {
    font-size: 0.86rem;
    line-height: 1.35;
    margin: 0;
}

#registerStepDetails .login-header .sub-title,
#registerStepOtp .login-header .sub-title {
    margin-bottom: 0.35rem;
}

#registerStepDetails .auth-form .form-group,
#registerStepOtp .auth-form .form-group {
    margin-bottom: 0.65rem;
}

#registerStepDetails .auth-form label,
#registerStepOtp .auth-form label {
    font-size: 0.78rem;
    margin-bottom: 0.28rem;
}

#registerStepDetails .auth-form input,
#registerStepOtp .auth-form input {
    padding: 0.68rem 0.85rem;
}

#registerStepDetails .form-row {
    margin-bottom: 0.65rem;
    font-size: 0.84rem;
}

#registerStepDetails .login-form-box .btn-dark,
#registerStepOtp .login-form-box .btn-dark {
    padding: 0.72rem 1rem;
    font-size: 0.9rem;
}

#registerStepDetails .auth-divider {
    margin: 0.7rem 0;
}

#registerStepDetails .social-auth {
    margin-bottom: 0.55rem;
    gap: 0.55rem;
}

#registerStepDetails .btn-social {
    padding: 0.52rem 0.65rem;
    font-size: 0.8rem;
    gap: 0.45rem;
    border-radius: 0;
}

#registerStepDetails .btn-social img {
    width: 16px;
}

#registerStepDetails .auth-footer,
#registerStepOtp .auth-footer {
    margin-top: 0.15rem;
    padding-top: 0;
    font-size: 0.84rem;
}

@media (min-width: 992px) {
    .login-form-container {
        padding: clamp(1.5rem, 3vh, 2.25rem) clamp(2rem, 5vw, 4rem) clamp(1rem, 2vh, 1.75rem);
    }
}

/* Auth OTP modal */
.google-onetap-anchor {
    position: fixed;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    z-index: 4500;
    width: min(100vw - 1.5rem, 400px);
    pointer-events: none;
}

.google-onetap-anchor > * {
    pointer-events: auto;
}

.auth-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(31, 26, 23, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.auth-modal {
    position: relative;
    width: min(100%, 400px);
    background: var(--white);
    border-radius: 0;
    padding: 2rem 1.75rem 1.5rem;
    text-align: center;
    box-shadow: 0 24px 48px rgba(31, 26, 23, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transform: translateY(12px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-modal-overlay.active .auth-modal {
    transform: translateY(0) scale(1);
}

.auth-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--light);
    border-radius: 0;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.auth-modal-close:hover {
    background: #ebe6e1;
    color: var(--dark);
}

.auth-modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.auth-modal-icon--success {
    background: rgba(46, 125, 50, 0.12);
    color: #2e7d32;
}

.auth-modal-icon--error {
    background: rgba(198, 40, 40, 0.12);
    color: #c62828;
}

.auth-modal-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    color: var(--dark);
}

.auth-modal-message {
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-light);
}

.auth-modal--terms {
    width: min(100%, 560px);
    max-height: min(88vh, 720px);
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 1.75rem 1.5rem 1.25rem;
}

.auth-modal--terms .auth-modal-title {
    text-align: center;
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.auth-modal-terms-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    margin-bottom: 1.15rem;
    padding-right: 0.35rem;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text);
}

.auth-modal-terms-body h3 {
    margin: 1rem 0 0.35rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
}

.auth-modal-terms-body h3:first-of-type {
    margin-top: 0;
}

.auth-modal-terms-body p {
    margin: 0 0 0.75rem;
    color: var(--text-light);
}

.auth-terms-row {
    align-items: flex-start;
}

.auth-terms-label {
    line-height: 1.45;
    cursor: pointer;
}

.auth-terms-link {
    display: inline;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.auth-terms-link:hover {
    color: var(--primary-dark);
}

.auth-modal-terms-agree {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 0;
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.auth-modal-terms-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text);
    cursor: pointer;
}

.auth-modal-terms-check input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.auth-modal-terms-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.auth-modal-terms-actions .btn-outline {
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    color: var(--dark);
    border-radius: 0;
    padding: 0.85rem 1rem;
    font-weight: 600;
}

.auth-modal-terms-actions .btn-outline:hover {
    background: var(--light);
}

.auth-modal-terms-actions .btn-dark:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Product Modal Styles */
/* Minimal Product Pop-up Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    width: 320px;
    height: auto;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    transform: scale(0.9) translateY(10px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 30px 60px rgba(45, 36, 30, 0.12), 0 0 0 1px rgba(0,0,0,0.03);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.modal-overlay.active .product-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.modal-img {
    height: 200px;
    width: 100%;
}

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

.modal-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.modal-info .product-cat {
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.modal-info h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-info .price {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modal-actions {
    display: flex;
    gap: 0.8rem;
}

.modal-actions .btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
}

#modalToggleWishlist {
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

#modalToggleWishlist:hover {
    background: var(--bg-accent);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

#modalToggleWishlist.active {
    color: #ff5252;
    border-color: #ffcdd2;
    background: #fff5f5;
}

/* Mobile Responsiveness for Login, About & Other pages */
@media (max-width: 768px) {
    .page-login main.login-page {
        height: 100vh;
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 0;
        padding-bottom: 0;
    }
    .contact-page {
        min-height: 100vh;
        padding: 1.25rem 0 2.5rem;
    }

    .cart-page, .wishlist-page {
        padding: 1.25rem 0 2.5rem;
    }
    .login-wrapper {
        min-height: 100%;
        height: 100%;
    }
    .login-form-container {
        padding: 0.75rem 1rem 1rem;
        min-height: 100%;
        align-items: center;
        justify-content: center;
    }

    .login-form-box {
        max-width: 440px;
        width: 100%;
    }
}
/* Product Detail Page Styles */
.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--page-gap);
    align-items: start;
}

.product-description {
    line-height: 1.75;
    color: var(--text-light);
}

.detail-actions-row {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.detail-actions-row .btn {
    flex: 1;
}


.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 140px;
}

.main-image-container {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f8f8;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.thumbnail-list {
    display: flex;
    gap: 1rem;
}

.thumbnail-list .thumb {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
}

.thumbnail-list .thumb.active {
    border-color: var(--primary);
}

.thumbnail-list .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-panel {
    padding: 1.25rem;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 6px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.product-info-panel h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 400;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-accent);
    border-radius: 0;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    opacity: 0.6;
    font-size: 1.1rem;
}

.discount-tag {
    background: var(--primary);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.85rem;
}

.detail-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.detail-section h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--primary);
    width: 20px;
}

.variation-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.var-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid #eee;
    background: var(--white);
    border-radius: 0;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 500;
    transition: var(--transition);
}

.var-btn.active, .var-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-accent);
}

.quantity-control-large {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid #ddd;
    border-radius: 0;
}

.quantity-control-large button {
    width: 45px;
    height: 45px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-control-large input {
    width: 60px;
    height: 45px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-sans);
}

.detail-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 3rem;
}

.btn-buy {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem 3rem;
    border-radius: 0;
    font-weight: 700;
    flex: 1;
    cursor: pointer;
    transition: var(--transition);
}

.btn-buy:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-add-cart {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 1rem 3rem;
    border-radius: 0;
    font-weight: 700;
    flex: 1.5;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.utility-btns {
    display: flex;
    gap: 1rem;
}

.util-btn {
    width: 50px;
    height: 50px;
    border-radius: 0;
    border: 1px solid #eee;
    background: var(--white);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Additional Utility Styles */
.w-100 { width: 100%; }

/* Thumbnail Gallery Styles */
.thumbnail-list {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.thumb-item {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.thumb-item:hover, .thumb-item.active {
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Loader Style */
.loader {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-style: italic;
}

/* Form Improvements */
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--light);
    border: 1px solid #eee;
    border-radius: 0;
    font-family: var(--font-sans);
}

/* Modal Description */
#modalProductDesc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 1.5rem 0;
    line-height: 1.6;
}

/* Category refinement */
.category-list li a.active {
    color: var(--primary);
    font-weight: 700;
}

/* Add to Cart Animations */
@keyframes flyToCart {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--target-x), var(--target-y)) scale(0.1);
        opacity: 0;
    }
}

@keyframes cartShake {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3) rotate(-15deg); }
    50% { transform: scale(1.3) rotate(15deg); }
    75% { transform: scale(1.3) rotate(-5deg); }
}

.flying-item {
    position: fixed;
    z-index: 9999;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid var(--white);
    transition: none; /* Crucial for animation */
}

.cart-shake {
    animation: cartShake 0.6s cubic-bezier(.36,.07,.19,.97) both;
}

.btn-added {
    background: #4caf50 !important;
    border-color: #4caf50 !important;
    color: white !important;
}


/* AI Chatbot Styles */
.chatbot-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
    z-index: 10000;
    transition: var(--transition);
}
.chatbot-toggle-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: var(--white);
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.chatbot-container.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}
.chatbot-header {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chatbot-body {
    height: 300px;
    padding: 1rem;
    overflow-y: auto;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.chat-message {
    padding: 0.8rem;
    border-radius: 0;
    max-width: 80%;
    font-size: 0.9rem;
    line-height: 1.4;
}
.chat-message.bot {
    background: #e0e0e0;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}
.chat-message.typing {
    opacity: 0.7;
    font-style: italic;
}
.chat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: transparent !important;
    padding: 0 0.8rem 0.8rem !important;
    max-width: 100% !important;
}
.chat-action-btn {
    border: 1px solid var(--primary);
    background: var(--white);
    color: var(--primary);
    border-radius: 0;
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: var(--transition);
}
.chat-action-btn:hover {
    background: var(--primary);
    color: var(--white);
}
.chat-message.user {
    background: var(--primary);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}
.chatbot-footer {
    display: flex;
    padding: 0.8rem;
    background: var(--white);
    border-top: 1px solid #eee;
}
.chatbot-footer input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #eee;
    border-radius: 0;
    outline: none;
    font-family: var(--font-sans);
}
.chatbot-footer button {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    padding: 0 0.8rem;
    cursor: pointer;
}

/* ── Layout & responsive enhancements ── */
.page-home .site-main {
    margin-top: 0;
}

.craftsmanship-section {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

/* Homepage — natural scroll (min-height sections, no snap traps) */
.page-home header#home {
    height: var(--home-hero-height);
    min-height: var(--home-hero-height);
}

body.page-home > main {
    margin-top: 0;
    padding-top: 0;
}

.page-home .home-section {
    min-height: var(--home-section-height);
    height: auto;
    max-height: none;
    padding: var(--home-section-pad) 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.page-home .home-section::before,
.page-home .home-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.page-home .home-section > .container {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    position: relative;
    z-index: 1;
}

/* ── Homepage solid fills + CSS-only ornament ── */
.page-home .home-bg-dark {
    background-color: #1f1a17;
    color: var(--light);
}

.page-home .home-bg-light {
    background-color: var(--surface);
    color: var(--text);
}

/* Dark / light section typography & UI tokens */
.page-home .home-bg-dark .sub-title,
.page-home .home-bg-dark .section-header .sub-title,
.page-home .home-bg-dark .about-text .sub-title,
.page-home .home-bg-dark .contact-info .sub-title {
    color: #d4a373;
}

.page-home .home-bg-light .sub-title,
.page-home .home-bg-light .section-header .sub-title,
.page-home .home-bg-light .about-text .sub-title,
.page-home .home-bg-light .contact-info .sub-title {
    color: var(--primary);
}

.page-home .home-bg-dark h2,
.page-home .home-bg-dark .section-header h2,
.page-home .home-bg-dark .about-text h2,
.page-home .home-bg-dark .contact-info h2 {
    color: var(--light);
}

.page-home .home-bg-light h2,
.page-home .home-bg-light .section-header h2,
.page-home .home-bg-light .about-text h2,
.page-home .home-bg-light .contact-info h2 {
    color: var(--dark);
}

.page-home .home-bg-dark .home-section-lead {
    color: rgba(245, 241, 235, 0.72);
}

.page-home .home-bg-dark .about-text p,
.page-home .home-bg-dark .contact-info p {
    color: rgba(245, 241, 235, 0.82);
}

.page-home .home-bg-dark .home-pillars li strong {
    color: var(--light);
}

.page-home .home-bg-dark .home-pillars li span {
    color: rgba(245, 241, 235, 0.65);
}

.page-home .home-bg-dark .home-pillar-icon {
    background: rgba(212, 163, 115, 0.15);
    color: #d4a373;
    border: 1px solid rgba(212, 163, 115, 0.25);
}

.page-home .home-bg-light .home-pillar-icon {
    background: rgba(155, 122, 102, 0.12);
    color: var(--primary-dark);
    border: 1px solid rgba(155, 122, 102, 0.2);
}

.page-home .home-bg-dark .home-trust-row {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 163, 115, 0.22);
    color: rgba(245, 241, 235, 0.72);
}

.page-home .home-bg-dark .home-trust-row i {
    color: #d4a373;
}

.page-home .home-bg-dark .home-highlight-icon {
    background: rgba(212, 163, 115, 0.18);
    color: #d4a373;
}

.page-home .home-bg-dark .home-highlight-num {
    color: #e8c9a8;
}

.page-home .home-bg-dark .home-highlight-label {
    color: rgba(245, 241, 235, 0.62);
}

.page-home .home-bg-dark .home-perks li {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: #d4a373;
    color: rgba(245, 241, 235, 0.88);
}

.page-home .home-bg-dark .home-perks i {
    color: #d4a373;
}

.page-home .home-bg-dark .cta-section .btn-outline {
    background: var(--light);
    color: var(--dark);
}

.page-home .home-bg-dark .cta-section .btn-outline:hover {
    background: #d4a373;
    color: var(--dark);
}

.page-home .craftsmanship-section::before {
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 163, 115, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 163, 115, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
}

.page-home .craftsmanship-section::after {
    inset: 1.5rem;
    border: 1px solid rgba(212, 163, 115, 0.12);
    border-radius: 0;
    background:
        linear-gradient(135deg, transparent 48%, rgba(212, 163, 115, 0.08) 48%, rgba(212, 163, 115, 0.08) 52%, transparent 52%) 0 0 / 24px 24px,
        linear-gradient(45deg, transparent 48%, rgba(212, 163, 115, 0.05) 48%, rgba(212, 163, 115, 0.05) 52%, transparent 52%) 12px 12px / 24px 24px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.page-home .home-bg-warm {
    background-color: #e8dfd3;
    color: var(--text);
}

.page-home .featured-products::before {
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z' fill='none' stroke='%239b7a66' stroke-opacity='0.12' stroke-width='0.75'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.page-home .featured-products::after {
    top: 2rem;
    right: 2rem;
    bottom: 2rem;
    left: auto;
    width: 3px;
    background: repeating-linear-gradient(
        180deg,
        var(--primary) 0,
        var(--primary) 8px,
        transparent 8px,
        transparent 16px
    );
    opacity: 0.35;
}

.page-home .home-bg-accent {
    background-color: #d5c4ad;
    color: var(--text);
}

.page-home .cta-section::before {
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(106, 74, 58, 0.07) 20px,
        rgba(106, 74, 58, 0.07) 21px
    );
}

.page-home .cta-section::after {
    width: 120px;
    height: 120px;
    top: 1.5rem;
    left: 1.5rem;
    border-top: 2px solid rgba(106, 74, 58, 0.25);
    border-left: 2px solid rgba(106, 74, 58, 0.25);
}

.page-home .home-bg-sand {
    background-color: #ddd0c0;
    color: var(--text);
}

.page-home .best-seller::before {
    inset: 0;
    background-image:
        radial-gradient(rgba(106, 74, 58, 0.14) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
}

.page-home .best-seller::after {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(106, 74, 58, 0.14) 0%, transparent 12%, transparent 88%, rgba(106, 74, 58, 0.14) 100%),
        linear-gradient(0deg, rgba(106, 74, 58, 0.1) 0%, transparent 8%, transparent 92%, rgba(106, 74, 58, 0.1) 100%);
    opacity: 0.7;
}

.page-home .home-bg-taupe {
    background-color: #cfc0a8;
    color: var(--text);
}

.page-home .testimonials-section::before {
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 39px,
        rgba(106, 74, 58, 0.09) 39px,
        rgba(106, 74, 58, 0.09) 40px
    );
}

.page-home .testimonials-section::after {
    width: 80px;
    height: 80px;
    bottom: 2rem;
    right: 2rem;
    border-bottom: 2px solid rgba(106, 74, 58, 0.3);
    border-right: 2px solid rgba(106, 74, 58, 0.3);
}

/* Section content detail blocks */
.page-home .home-section-head {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.page-home .home-section-lead {
    font-size: clamp(0.9rem, 1.9vh, 1.05rem);
    line-height: 1.65;
    color: var(--text-light);
    margin-top: 0.65rem;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

.page-home .home-pillars {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 1.25rem 0 0;
    padding: 0;
}

.page-home .home-pillars li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.page-home .home-pillar-icon {
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.page-home .home-pillars li strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.page-home .home-pillars li span {
    font-size: 0.82rem;
    opacity: 0.75;
    line-height: 1.45;
}

.page-home .home-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.65rem, 1.5vw, 1rem);
    width: 100%;
}

.page-home .home-highlights--compact {
    grid-template-columns: repeat(3, 1fr);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.page-home .home-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(0.85rem, 2vh, 1.15rem) 0.5rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(106, 74, 58, 0.12);
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(45, 36, 30, 0.06);
}

.page-home .home-bg-dark .home-highlight {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 163, 115, 0.2);
}

.page-home .home-highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 0;
    background: rgba(155, 122, 102, 0.15);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.page-home .home-highlight-num {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.5vh, 1.45rem);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.1;
}

.page-home .home-highlight-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.page-home .home-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.45);
    border: 1px dashed rgba(106, 74, 58, 0.2);
    border-radius: 0;
    font-size: 0.82rem;
    color: var(--text-light);
}

.page-home .home-trust-row i {
    color: var(--primary);
    margin-right: 0.35rem;
}

.page-home .home-perks {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
    display: grid;
    gap: 0.55rem;
}

.page-home .home-perks li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.4);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.page-home .home-perks i {
    color: var(--primary-dark);
    width: 1.1rem;
    text-align: center;
}

.page-home .home-section .testimonial-card {
    background: #fff;
    border: 1px solid rgba(106, 74, 58, 0.14);
    box-shadow: 0 6px 20px rgba(45, 36, 30, 0.08);
}

.page-home footer.site-footer {
    min-height: auto;
    height: auto;
    max-height: none;
    overflow: hidden;
}

.page-home .home-section .about-grid,
.page-home .home-section .contact-grid {
    width: 100%;
    gap: clamp(1.25rem, 3vw, 2.5rem);
}

.page-home .home-section .about-grid.home-split,
.page-home .home-section .contact-grid.home-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    flex: 1 1 auto;
    min-height: 0;
}

.page-home .home-section .about-text h2,
.page-home .home-section .contact-info h2 {
    font-size: clamp(1.75rem, 4.5vh, 3rem);
    line-height: 1.1;
    margin-bottom: clamp(0.5rem, 1.5vh, 1rem);
}

.page-home .home-section .about-text p,
.page-home .home-section .contact-info p {
    font-size: clamp(0.85rem, 1.8vh, 1rem);
    line-height: 1.55;
}

/* Home section imagery — always visible (no clip-path reveal) */
.page-home .home-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.page-home .home-media {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    aspect-ratio: var(--home-media-ratio);
    max-height: var(--home-media-height);
    height: auto;
    align-self: center;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.page-home .home-media .home-media-img {
    position: absolute;
    inset: 0;
}

.page-home .home-media-framed {
    border: 3px solid rgba(255, 255, 255, 0.12);
}

.page-home .home-media-light {
    box-shadow: 0 20px 40px rgba(45, 36, 30, 0.12);
    border-color: rgba(141, 110, 99, 0.2);
}

.page-home .home-media-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(31, 26, 23, 0.82);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(6px);
}

.page-home .home-media-light .home-media-badge {
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark);
}

.page-home .home-section .about-text,
.page-home .home-section .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    align-items: flex-start;
}

.page-home .home-content-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: clamp(0.65rem, 1.8vh, 1.1rem);
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
}

.page-home .home-showcase-banner {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    aspect-ratio: var(--home-banner-ratio);
    max-height: var(--home-banner-height);
    height: auto;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.page-home .home-showcase-banner .home-media-img {
    position: absolute;
    inset: 0;
}

.page-home .home-showcase-banner-sm {
    aspect-ratio: var(--home-banner-ratio);
    max-height: var(--home-banner-height);
}

.page-home .home-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31, 26, 23, 0.55) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.25rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.page-home .home-section-cta {
    text-align: center;
    margin-top: 0;
    flex-shrink: 0;
}

.page-home .home-section-btns {
    justify-content: flex-start;
    margin-top: 1rem;
}

.page-home .featured-products.home-bg-dark::before {
    background-image:
        linear-gradient(rgba(212, 163, 115, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 163, 115, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.page-home .featured-products.home-bg-dark::after {
    background: repeating-linear-gradient(
        180deg,
        #d4a373 0,
        #d4a373 8px,
        transparent 8px,
        transparent 16px
    );
    opacity: 0.25;
}

.page-home .best-seller.home-bg-dark::before {
    background-image:
        radial-gradient(rgba(212, 163, 115, 0.18) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
}

.page-home .best-seller.home-bg-dark::after {
    background:
        linear-gradient(90deg, rgba(212, 163, 115, 0.12) 0%, transparent 12%, transparent 88%, rgba(212, 163, 115, 0.12) 100%),
        linear-gradient(0deg, rgba(212, 163, 115, 0.08) 0%, transparent 8%, transparent 92%, rgba(212, 163, 115, 0.08) 100%);
    opacity: 0.85;
}

.page-home .testimonials-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
}

.page-home .testimonials-visual {
    --home-media-ratio: 3 / 4;
    height: 100%;
    min-height: clamp(240px, 38dvh, 380px);
    max-height: none;
    align-self: stretch;
}

.page-home .testimonials-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    min-height: 0;
    height: 100%;
}

.page-home .testimonials-visual-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    padding: 2rem 0.5rem 0.25rem;
}

.page-home .testimonials-visual-caption i {
    color: #ffc107;
}

.page-home .testimonials-content .section-header {
    text-align: left;
    margin-bottom: 1rem;
}

.page-home .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.page-home .testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-home .testimonial-card cite {
    font-weight: 600;
    font-style: normal;
    font-size: 0.88rem;
}

.page-home .projects-image img {
    width: 100%;
    max-height: clamp(200px, 42vh, 420px);
    object-fit: cover;
    border-radius: 0;
}

.page-home .home-section.featured-products > .container,
.page-home .home-section.best-seller > .container {
    justify-content: center;
}

.page-home .home-section .section-header {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 100%;
    text-align: center;
}

.page-home .home-section .section-header h2 {
    font-size: clamp(1.5rem, 4vh, 2.5rem);
}

.page-home .home-section .product-grid {
    flex: 0 1 auto;
    align-content: center;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.65rem, 1.5vw, 1rem);
    align-items: stretch;
    width: 100%;
}

.page-home .home-section .product-img {
    height: clamp(120px, 20vh, 200px);
}

.page-home .home-section .product-info {
    padding: 0.6rem 0.75rem 0.85rem;
}

.page-home .home-section .product-name {
    font-size: clamp(0.8rem, 1.6vh, 0.95rem);
}

.page-home .home-section .product-price {
    font-size: clamp(0.85rem, 1.8vh, 1rem);
}

.page-home .home-section .solution-grid {
    align-items: stretch;
    gap: clamp(0.75rem, 2vw, 1.25rem);
}

.page-home .home-section .testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(1rem, 2.5vh, 1.5rem);
}

.page-home .home-section .testimonial-card blockquote {
    flex: 1;
    font-size: clamp(0.85rem, 1.8vh, 0.95rem);
    line-height: 1.55;
}

/* Tablet — keep 4 across on featured/best-seller rows */
@media (max-width: 1024px) {
    .page-home .home-section .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-home .featured-products .product-grid,
    .page-home .best-seller .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --home-section-pad: 0;
    }

    .page-home .home-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-home .home-highlights--compact {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-home .home-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-home .home-section .projects-image img {
        max-height: clamp(180px, 32vh, 300px);
    }

    .page-home .home-section .about-grid,
    .page-home .home-section .contact-grid,
    .page-home .home-split {
        grid-template-columns: 1fr;
    }

    .page-home .home-media {
        order: -1;
        max-height: clamp(200px, 32dvh, 300px);
    }

    .page-home .testimonials-layout {
        grid-template-columns: 1fr;
    }

    .page-home .testimonials-visual {
        order: -1;
        height: auto;
        min-height: clamp(200px, 28dvh, 280px);
        max-height: clamp(200px, 32dvh, 300px);
    }

    .page-home .testimonials-content .section-header {
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --home-section-pad: 0;
    }

    .page-home .home-highlights,
    .page-home .home-highlights--compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-home .home-trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .page-home .home-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .page-home .home-section .product-img {
        height: clamp(100px, 16vh, 150px);
    }

    .page-home .home-section .solution-grid {
        grid-template-columns: 1fr;
    }
}

/* Short landscape / small height screens */
@media (max-height: 700px) and (min-width: 641px) {
    .page-home .home-section .product-img {
        height: clamp(90px, 18vh, 140px);
    }

    .page-home .home-section .section-header {
        margin-bottom: 0.5rem;
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — homepage section system (alternating dark/light)
   ═══════════════════════════════════════════════════════════ */
body.page-about main.site-main {
    padding-top: 0;
    margin-top: 0;
}

.page-about .site-main {
    margin-top: 0;
}

.page-about .home-section {
    min-height: var(--section-viewport);
    padding: var(--nav-h) 0 clamp(1.5rem, 4vh, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    box-sizing: border-box;
}

.page-about .about-page-title {
    font-size: var(--fluid-h1);
    line-height: 1.08;
    margin-bottom: 0.5rem;
}

.page-about .about-intro-lead {
    margin-bottom: 1rem;
    text-align: left;
    margin-left: 0;
}

.page-about .about-established {
    margin-top: 0.25rem;
}

.page-about .about-headline {
    font-family: var(--font-serif);
    font-size: var(--fluid-h3);
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.page-about .home-bg-dark .about-headline {
    color: var(--light);
}

.page-about .home-section::before,
.page-about .home-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.page-about .home-section > .container {
    width: 100%;
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-about .home-bg-dark {
    background-color: #1f1a17;
    color: var(--light);
}

.page-about .home-bg-light {
    background-color: var(--surface);
    color: var(--text);
}

.page-about .home-bg-dark .sub-title,
.page-about .home-bg-dark .section-header .sub-title,
.page-about .home-bg-dark .about-text .sub-title {
    color: #d4a373;
}

.page-about .home-bg-light .sub-title,
.page-about .home-bg-light .section-header .sub-title,
.page-about .home-bg-light .about-text .sub-title {
    color: var(--primary);
}

.page-about .home-bg-dark h2,
.page-about .home-bg-dark .section-header h2,
.page-about .home-bg-dark .about-text h2 {
    color: var(--light);
}

.page-about .home-bg-light h2,
.page-about .home-bg-light .section-header h2,
.page-about .home-bg-light .about-text h2 {
    color: var(--dark);
}

.page-about .home-bg-dark .home-section-lead {
    color: rgba(245, 241, 235, 0.72);
}

.page-about .home-bg-dark .about-text p {
    color: rgba(245, 241, 235, 0.82);
}

.page-about .home-bg-light .about-text p {
    color: var(--text);
}

.page-about .home-bg-dark .home-pillars li strong {
    color: var(--light);
}

.page-about .home-bg-dark .home-pillars li span {
    color: rgba(245, 241, 235, 0.65);
}

.page-about .home-bg-dark .home-pillar-icon,
.page-about .home-bg-dark .about-process-icon {
    background: rgba(212, 163, 115, 0.15);
    color: #d4a373;
    border: 1px solid rgba(212, 163, 115, 0.25);
}

.page-about .home-bg-light .home-pillar-icon {
    background: rgba(155, 122, 102, 0.12);
    color: var(--primary-dark);
    border: 1px solid rgba(155, 122, 102, 0.2);
}

.page-about .home-bg-dark .home-highlight {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 163, 115, 0.2);
}

.page-about .home-bg-dark .home-highlight-icon {
    background: rgba(212, 163, 115, 0.18);
    color: #d4a373;
}

.page-about .home-bg-dark .home-highlight-num {
    color: #e8c9a8;
}

.page-about .home-bg-dark .home-highlight-label {
    color: rgba(245, 241, 235, 0.62);
}

.page-about .home-bg-dark .home-perks li {
    background: rgba(255, 255, 255, 0.06);
    border-left-color: #d4a373;
    color: rgba(245, 241, 235, 0.88);
}

.page-about .home-bg-dark .home-perks i {
    color: #d4a373;
}

.page-about .home-section .about-grid.home-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: center;
}

.page-about .home-section .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.page-about .home-section .about-text h2 {
    font-size: clamp(1.75rem, 4.5vh, 3rem);
    line-height: 1.1;
    margin-bottom: clamp(0.5rem, 1.5vh, 1rem);
}

.page-about .home-section .about-text p {
    font-size: clamp(0.85rem, 1.8vh, 1rem);
    line-height: 1.55;
    margin-bottom: 0.65rem;
}

.page-about .home-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.page-about .home-media {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    aspect-ratio: var(--home-media-ratio);
    max-height: var(--home-media-height);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.page-about .home-media .home-media-img {
    position: absolute;
    inset: 0;
}

.page-about .home-media-framed {
    border: 3px solid rgba(255, 255, 255, 0.12);
}

.page-about .home-media-light {
    box-shadow: 0 20px 40px rgba(45, 36, 30, 0.12);
    border-color: rgba(141, 110, 99, 0.2);
}

.page-about .home-media-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(31, 26, 23, 0.82);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(6px);
    z-index: 2;
}

.page-about .home-media-light .home-media-badge {
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark);
}

.page-about .home-content-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: clamp(0.65rem, 1.8vh, 1.1rem);
    width: 100%;
}

.page-about .home-section-head {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-about .home-section-lead {
    font-size: clamp(0.9rem, 1.9vh, 1.05rem);
    line-height: 1.65;
    color: var(--text-light);
    margin-top: 0.65rem;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

.page-about .home-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.65rem, 1.5vw, 1rem);
    width: 100%;
}

.page-about .home-highlights--compact {
    grid-template-columns: repeat(3, 1fr);
    max-width: 640px;
}

.page-about .home-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(0.85rem, 2vh, 1.15rem) 0.5rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(106, 74, 58, 0.12);
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(45, 36, 30, 0.06);
}

.page-about .home-highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 0;
    background: rgba(155, 122, 102, 0.15);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.page-about .home-highlight-num {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.5vh, 1.45rem);
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
}

.page-about .home-highlight-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-top: 0.2rem;
    line-height: 1.35;
}

.page-about .about-values .home-highlight-num {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: none;
}

.page-about .about-values .home-highlight-label {
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.45;
}

.page-about .home-pillars {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.page-about .home-pillars li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.page-about .home-pillar-icon,
.page-about .about-process-icon {
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.page-about .home-pillars li strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.page-about .home-pillars li span {
    font-size: 0.82rem;
    opacity: 0.75;
    line-height: 1.45;
}

.page-about .home-perks {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.55rem;
}

.page-about .home-perks li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.4);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.page-about .home-perks i {
    color: var(--primary-dark);
    width: 1.1rem;
    text-align: center;
}

.page-about .home-section-btns,
.page-about .home-section-cta {
    justify-content: flex-start;
    margin-top: 1rem;
}

.page-about .home-section-cta {
    justify-content: center;
}

.page-about .about-story .home-highlights--compact {
    margin: 1rem 0 0;
}

.page-about .about-workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.75rem, 2vw, 1.25rem);
    width: 100%;
}

.page-about .about-workshop-media {
    aspect-ratio: 4 / 5;
    max-height: 420px;
    margin: 0;
}

/* About section ornaments */
.page-about .about-story.home-bg-light::before {
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 163, 115, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 163, 115, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
}

.page-about .about-mission.home-bg-dark::before {
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 163, 115, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 163, 115, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.page-about .about-values.home-bg-light::before {
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z' fill='none' stroke='%239b7a66' stroke-opacity='0.12' stroke-width='0.75'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.page-about .about-process.home-bg-dark::before {
    inset: 0;
    background-image:
        radial-gradient(rgba(212, 163, 115, 0.18) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
}

.page-about .about-materials.home-bg-light::before {
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(106, 74, 58, 0.07) 20px,
        rgba(106, 74, 58, 0.07) 21px
    );
}

.page-about .about-workshop.home-bg-dark::before {
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 39px,
        rgba(212, 163, 115, 0.09) 39px,
        rgba(212, 163, 115, 0.09) 40px
    );
}

.page-about .about-cta.home-bg-light::after {
    width: 80px;
    height: 80px;
    bottom: 2rem;
    right: 2rem;
    border-bottom: 2px solid rgba(106, 74, 58, 0.2);
    border-right: 2px solid rgba(106, 74, 58, 0.2);
}

@media (max-width: 1024px) {
    .page-about .home-section .about-grid.home-split {
        grid-template-columns: 1fr;
    }

    .page-about .home-media {
        order: -1;
        max-height: clamp(220px, 36dvh, 340px);
    }

    .page-about .home-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-about .about-workshop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .page-about .home-highlights,
    .page-about .home-highlights--compact {
        grid-template-columns: 1fr;
    }

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

    .page-about .home-section-btns,
    .page-about .home-section-cta {
        flex-direction: column;
        align-items: stretch;
    }
}

.about-stats {
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}

.stat-box {
    min-width: 80px;
}

.contact-grid {
    gap: 2.5rem;
    align-items: center;
}

.contact-form:not(.page-card) {
    padding: 2rem;
}

.contact-form button[type="submit"] {
    font-size: 1rem;
    letter-spacing: 0.02em;
    padding: 1rem 2rem;
}

.product-detail-wrapper {
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .about-grid,
    .about-materials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image,
    .about-materials-image {
        order: -1;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: clamp(2rem, 5vw, 2.75rem);
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        z-index: 1001;
    }

    .page-inner .nav-links {
        background: var(--dark);
        color: var(--white);
    }

    .page-inner .nav-links a {
        color: var(--white);
    }

    .page-hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .about-process-list,
    .about-workshop-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        justify-content: space-between;
    }

    .stat-box h4 {
        font-size: 2rem;
    }

    .page-title-section {
        text-align: center;
    }

    .login-page header {
        height: auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .product-img {
        height: 180px;
    }

    .card-btn {
        min-height: 3rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.25rem;
        border-radius: 0;
    }
}

/* ═══════════════════════════════════════════════════════════
   CART · CHECKOUT · LOGIN — UI/UX polish
   ═══════════════════════════════════════════════════════════ */

/* Checkout stepper — full-width band between hero & content */
.checkout-stepper-band {
    background: transparent;
    border-bottom: none;
    padding: 0;
    margin: 0.75rem 0 1.5rem;
}

.checkout-stepper-band .container {
    display: flex;
    justify-content: center;
}

.checkout-stepper__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 100%;
}

.checkout-stepper__item {
    flex-shrink: 0;
}

.checkout-stepper__link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    padding: 0;
    border-radius: 0;
    transition: color 0.2s ease;
}

a.checkout-stepper__link:hover .checkout-stepper__label {
    color: var(--primary-dark);
}

.checkout-stepper__dot {
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    background: var(--surface);
    border: 2px solid #e0d8cf;
    color: #a89888;
    transition: all 0.25s ease;
}

.checkout-stepper__label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.01em;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.checkout-stepper__connector {
    width: clamp(4rem, 14vw, 8rem);
    height: 2px;
    background: #e5ddd4;
    margin: 0 1.5rem;
    flex-shrink: 0;
    list-style: none;
    border-radius: 0;
}

.checkout-stepper__connector.is-done {
    background: var(--primary);
}

.checkout-stepper__item.is-upcoming .checkout-stepper__dot {
    background: var(--surface);
    border-color: #e0d8cf;
    color: #a89888;
}

.checkout-stepper__item.is-upcoming .checkout-stepper__label {
    color: var(--text-light);
}

.checkout-stepper__item.is-current .checkout-stepper__dot {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(31, 26, 23, 0.15);
}

.checkout-stepper__item.is-current .checkout-stepper__label {
    color: var(--dark);
    font-weight: 600;
}

.checkout-stepper__item.is-done .checkout-stepper__dot {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.checkout-stepper__item.is-done .checkout-stepper__label {
    color: var(--primary-dark);
    font-weight: 500;
}

.checkout-stepper__item.is-done .checkout-stepper__dot i {
    font-size: 0.78rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f0f0f0;
}

.trust-badges span {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badges i {
    color: var(--primary);
    width: 16px;
}

.summary-free {
    color: #4caf50 !important;
    font-weight: 600;
}

/* Cart & checkout — natural height; footer only after scroll (no sticky stretch gap) */
body.page-cart,
body.page-checkout {
    min-height: 100dvh;
}

body.page-cart main.site-main,
body.page-checkout main.site-main {
    flex: 0 0 auto;
    min-height: 0;
}

body.page-cart .page-hero,
body.page-cart .page-body,
body.page-cart .checkout-stepper-band,
body.page-cart .cart-page,
body.page-checkout .page-hero,
body.page-checkout .page-body,
body.page-checkout .checkout-stepper-band,
body.page-checkout .checkout-page {
    background: var(--light);
}

body.page-cart .page-hero,
body.page-checkout .page-hero {
    border-bottom: none;
}

body.page-cart .page-section.cart-page,
body.page-checkout .page-section.checkout-page {
    padding: 1.25rem 0 2rem;
}

body.page-cart .cart-items-wrapper {
    gap: 1.25rem;
}

body.page-cart #cartItemsList {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

body.page-cart:has(.cart-container:not(.cart-container--empty)) footer.site-footer {
    margin-top: clamp(2rem, calc(100dvh - 34rem), 18dvh);
}

body.page-cart .cart-container {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: 1.75rem;
}

body.page-cart .cart-container--empty {
    min-height: calc(100dvh - 22rem);
    display: flex;
    align-items: center;
}

body.page-cart .cart-container--empty .cart-items-wrapper {
    width: 100%;
}

/* Cart filled state — no white cards, flush layout */
body.page-cart .cart-bulk-actions,
body.page-cart .cart-bulk-actions.page-card,
body.page-cart .cart-item-card,
body.page-cart .cart-item-card.page-card,
body.page-cart .cart-summary,
body.page-cart .cart-summary.page-card {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

body.page-cart .cart-bulk-actions {
    margin-bottom: 1.25rem;
}

body.page-cart .cart-item-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

body.page-cart .cart-item-card:hover {
    transform: none;
    box-shadow: none;
}

body.page-cart .cart-item-main {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
    min-width: 0;
    width: 100%;
}

body.page-cart .cart-item-details {
    min-width: 0;
}

body.page-cart .cart-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
}

body.page-cart .cart-item-title h4 {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.35;
    word-break: break-word;
}

body.page-cart .cart-item-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}

body.page-cart .cart-item-img-wrapper {
    width: 110px;
    height: 110px;
}

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

body.page-cart .cart-summary h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
}

body.page-cart .cart-summary .summary-row {
    margin-bottom: 1rem;
}

body.page-cart .cart-summary .summary-divider {
    margin: 1.25rem 0;
}

body.page-cart .cart-checkout-btn {
    margin-top: 1.5rem;
}

/* Cart page */
.cart-page {
    padding: 0;
    min-height: 0;
}

.cart-header-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.cart-container--empty {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
}

.cart-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item-card {
    padding: 0;
    border-radius: 0;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    border: none;
    box-shadow: none;
    background: transparent;
}

.cart-item-card:last-child {
    margin-bottom: 0;
}

.cart-item-img-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 0;
    flex-shrink: 0;
}

.cart-item-title h4 {
    font-size: 1.15rem;
}

.cart-item-price {
    font-size: 1.1rem;
    color: var(--primary);
}

.cart-summary {
    padding: 0;
    border-radius: 0;
    top: calc(var(--nav-h) + 1rem);
    background: transparent;
    border: none;
    box-shadow: none;
}

.cart-bulk-actions {
    padding: 0;
    margin-bottom: 1.25rem;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.empty-cart-view {
    padding: 0;
    text-align: center;
}

/* Checkout page */
.checkout-page {
    padding: 0;
    min-height: 0;
}

.checkout-container {
    max-width: 1240px;
}


.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.checkout-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.checkout-back,
.checkout-continue-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.checkout-back:hover,
.checkout-continue-link:hover {
    color: var(--primary);
}

.checkout-back i,
.checkout-continue-link i {
    font-size: 0.82rem;
    transition: transform 0.2s ease;
}

.checkout-back:hover i,
.checkout-continue-link:hover i {
    transform: translateX(-3px);
}

.checkout-secure-note {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--text-light);
    background: rgba(155, 122, 102, 0.08);
    padding: 0.45rem 0.85rem;
    border-radius: 0;
}

.checkout-secure-note i {
    color: var(--primary);
    font-size: 0.75rem;
}

.checkout-panel {
    padding: 0;
    overflow: hidden;
}

.checkout-block {
    padding: clamp(1.25rem, 3vw, 1.75rem);
}

.checkout-block-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.checkout-block-step {
    width: 36px;
    height: 36px;
    border-radius: 0;
    background: var(--dark);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkout-block-heading h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.checkout-block-heading p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
}

.checkout-panel-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(106, 74, 58, 0.12) 12%, rgba(106, 74, 58, 0.12) 88%, transparent);
}

.checkout-block-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.checkout-pay-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.checkout-pay-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    padding: 1rem 0.75rem;
    border: 2px solid #e8e4df;
    border-radius: 0;
    background: var(--light);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.checkout-pay-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-pay-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: rgba(155, 122, 102, 0.12);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.checkout-pay-option-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.checkout-pay-option.is-selected,
.checkout-pay-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(155, 122, 102, 0.06);
    box-shadow: 0 0 0 3px rgba(155, 122, 102, 0.12);
}

.checkout-card-fields {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.checkout-form .form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.checkout-form input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--light);
    border: 1px solid #e8e4df;
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.checkout-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(155, 122, 102, 0.15);
    background: var(--white);
}

.checkout-form-error {
    color: #e53935;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #fff5f5;
    border-radius: 0;
    border: 1px solid rgba(229, 57, 53, 0.15);
}

.checkout-mobile-actions {
    display: none;
    margin-top: 1rem;
}

.checkout-submit-btn {
    margin-top: 1.25rem;
    padding: 1rem 1.5rem !important;
    border-radius: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.checkout-aside {
    position: relative;
}

.checkout-summary {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
    padding: clamp(1.35rem, 3vw, 1.75rem);
}

.checkout-summary-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-summary-header h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin: 0;
    color: var(--dark);
}

.checkout-summary-count {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

.checkout-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-height: min(42vh, 360px);
    overflow-y: auto;
    padding-right: 0.25rem;
}

.checkout-line-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.checkout-line-item-media {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 0;
    overflow: hidden;
    background: var(--light);
    flex-shrink: 0;
}

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

.checkout-line-item-qty {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 0;
    background: var(--dark);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.checkout-line-item-body h4 {
    font-size: 0.9rem;
    line-height: 1.35;
    margin-bottom: 0.15rem;
    color: var(--dark);
}

.checkout-line-item-body p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0;
}

.checkout-line-item-total {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
}

.checkout-summary-totals {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-summary-totals .summary-row {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.checkout-summary-totals .summary-divider {
    margin: 1rem 0;
}

.checkout-summary-totals .summary-row.total span:last-child {
    font-size: 1.5rem;
    color: var(--primary);
}

.checkout-summary .trust-badges {
    margin-top: 1rem;
}

.checkout-continue-link {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* Login page */
.page-login {
    background: var(--light);
    height: 100vh;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

.page-login main.login-page {
    padding-top: 0 !important;
    height: 100%;
    min-height: 100%;
    flex: 1;
    box-sizing: border-box;
}

.login-back {
    position: absolute;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, color 0.2s;
}

.login-back--hero {
    top: 1.25rem;
    left: 1.25rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.login-back--hero:hover {
    background: rgba(0, 0, 0, 0.42);
    transform: translateX(-2px);
}

.login-back--mobile {
    display: none;
    top: 1rem;
    left: 1rem;
    color: var(--dark);
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.login-back--mobile:hover {
    background: #fff;
    color: var(--primary);
}

@media (max-width: 991px) {
    .login-back--hero { display: none; }
    .login-back--mobile { display: inline-flex; }
    .login-form-container { position: relative; }
}

.login-page ~ footer.site-footer {
    display: none;
}

.login-header h1 {
    font-size: clamp(1.65rem, 3.5vw, 2rem);
}

.login-header .sub-title {
    color: var(--primary);
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    background: var(--light);
    border: 1px solid #e8e4df;
    border-radius: 0;
    padding: 0.85rem 1rem;
}

.auth-form input:-webkit-autofill,
.auth-form input:-webkit-autofill:hover,
.auth-form input:-webkit-autofill:focus,
.checkout-form input:-webkit-autofill,
.checkout-form input:-webkit-autofill:hover,
.checkout-form input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--light) inset !important;
    -webkit-text-fill-color: var(--text) !important;
    border: 1px solid #e8e4df !important;
}

/* Single-column layout when hero image is hidden */
@media (max-width: 991px) {
    .login-form-container {
        padding: clamp(1.5rem, 5vw, 2.5rem);
        align-items: center;
        justify-content: center;
    }

    .login-form-box {
        max-width: 440px;
        width: 100%;
    }
}

.overlay-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

@media (max-width: 768px) {
    .checkout-stepper__dot {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }

    .checkout-stepper__label {
        font-size: 0.82rem;
    }

    .checkout-stepper__connector {
        width: clamp(2.5rem, 12vw, 4rem);
        margin: 0 0.85rem;
    }

    .checkout-stepper__link {
        gap: 0.75rem;
    }

    .checkout-stepper-band {
        margin: 0.5rem 0 1.25rem;
    }

    .login-form-container {
        padding: 0.75rem 1rem 1rem;
    }

    .cart-item-card {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .cart-item-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .cart-item-img-wrapper {
        width: 100%;
        height: 160px;
    }

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

    .btn-delete-item {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-aside {
        order: -1;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-items {
        max-height: none;
        overflow: visible;
    }

    .checkout-submit-btn--aside {
        display: none;
    }

    .checkout-mobile-actions {
        display: block;
    }

    .checkout-block {
        padding: 1.15rem;
    }

    .checkout-pay-methods {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE — fluid type, layout, touch targets
   ═══════════════════════════════════════════════════════════ */
.btn {
    padding: clamp(0.7rem, 1.8vw, 0.85rem) clamp(1.15rem, 3.5vw, 2rem);
    font-size: var(--fluid-text-sm);
}

.hero-btns {
    flex-wrap: wrap;
    gap: clamp(0.65rem, 2vw, 1.5rem);
}

.sub-title {
    font-size: clamp(0.68rem, 0.62rem + 0.18vw, 0.75rem);
}

.page-section-header h2,
.page-section-header--center h2 {
    font-size: var(--fluid-h2);
}

@media (max-width: 1024px) {
    :root {
        --home-media-height: clamp(200px, 34dvh, 320px);
    }
}

@media (max-width: 768px) {
    :root {
        --container-max: 100%;
        --home-media-height: clamp(180px, 30dvh, 260px);
        --page-gap: clamp(0.85rem, 3vw, 1.5rem);
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .page-about .home-section {
        min-height: var(--section-viewport);
        padding-bottom: clamp(1.25rem, 5vh, 2rem);
    }

    .page-about .about-story .home-highlights--compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    :root {
        --nav-h: 60px;
        --container-x: 0.9rem;
    }

    .page-about .about-story .home-highlights--compact,
    .page-about .home-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-height: 720px) and (min-width: 641px) {
    .page-about .home-media,
    .page-home .home-media {
        max-height: clamp(160px, 28dvh, 220px);
    }

    .page-about .home-section .about-text h2,
    .page-about .about-page-title {
        font-size: clamp(1.5rem, 4dvh, 2.25rem);
    }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE (PDP)
   ═══════════════════════════════════════════════════════════ */
body.page-product main.site-main {
    padding-top: var(--nav-h);
    background: var(--white);
}

body.page-product > header {
    background: transparent;
}

.page-product .pdp-shell {
    padding: clamp(1.25rem, 3vw, 2.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.pdp-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.pdp-gallery-main {
    aspect-ratio: 4 / 5;
    border-radius: 0;
    overflow: hidden;
    background: #f5f2ef;
}

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

.pdp-gallery-thumbs {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.85rem;
    flex-wrap: wrap;
}

.pdp-thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    background: #f5f2ef;
}

.pdp-thumb.is-active {
    border-color: var(--primary);
}

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

.pdp-buy {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
}

.pdp-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.pdp-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    line-height: 1.15;
    margin: 0 0 0.75rem;
    color: var(--dark);
}

.pdp-price {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.pdp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.pdp-availability {
    color: #2e7d32;
    font-weight: 500;
}

.pdp-stock {
    color: var(--text-light);
}

.pdp-style {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
}

.pdp-option {
    margin-bottom: 1.25rem;
}

.pdp-option-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.pdp-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pdp-color {
    padding: 0.45rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    background: var(--white);
    font-size: 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.pdp-color.is-active {
    border-color: var(--primary);
    background: rgba(141, 110, 99, 0.08);
    color: var(--primary-dark);
}

.pdp-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
}

.pdp-qty button {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light);
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--dark);
}

.pdp-qty button:hover {
    background: #ebe6e1;
}

.pdp-qty input {
    width: 48px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--white);
}

.pdp-actions {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.pdp-actions .btn {
    flex: 1;
    padding: 0.9rem 1rem;
}

.pdp-delivery {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 1rem;
    display: grid;
    gap: 0.65rem;
}

.pdp-delivery-item {
    display: flex;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.45;
}

.pdp-delivery-item i {
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pdp-tabs {
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.pdp-tablist {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.pdp-tab {
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    margin-bottom: -1px;
}

.pdp-tab.is-active {
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}

.pdp-panel {
    display: none;
    padding: 1.75rem 0;
}

.pdp-panel.is-active {
    display: block;
}

.pdp-description {
    line-height: 1.75;
    color: var(--text);
    max-width: 72ch;
}

.pdp-specs {
    display: grid;
    gap: 0;
    max-width: 560px;
    margin: 0;
}

.pdp-spec-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.92rem;
}

.pdp-spec-row dt {
    font-weight: 600;
    color: var(--dark);
}

.pdp-spec-row dd {
    margin: 0;
    color: var(--text-light);
}

.pdp-empty {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.pdp-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.35rem;
    padding: 0 0.35rem;
    border-radius: 0;
    background: rgba(141, 110, 99, 0.12);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
    vertical-align: middle;
}

.pdp-feedback-form {
    max-width: 720px;
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pdp-feedback-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.pdp-feedback-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    line-height: 1.6;
    resize: vertical;
}

.pdp-feedback-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(141, 110, 99, 0.12);
}

.pdp-feedback-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.85rem;
}

.pdp-feedback-msg {
    margin: 0;
    font-size: 0.88rem;
}

.pdp-feedback-msg.is-success { color: #4caf50; }
.pdp-feedback-msg.is-error { color: #c62828; }

.pdp-feedback-login {
    max-width: 560px;
    margin-bottom: 2rem;
    padding: 1.25rem 1.35rem;
    border-radius: 0;
    background: rgba(141, 110, 99, 0.08);
    border: 1px solid rgba(141, 110, 99, 0.15);
}

.pdp-feedback-login p {
    margin: 0 0 1rem;
    color: var(--text);
    line-height: 1.6;
}

.pdp-feedback-list {
    display: grid;
    gap: 1rem;
    max-width: 820px;
}

.pdp-feedback-item {
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    background: #faf8f6;
}

.pdp-feedback-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.65rem;
}

.pdp-feedback-item-head strong {
    font-size: 0.92rem;
    color: var(--dark);
}

.pdp-feedback-item-head time {
    font-size: 0.78rem;
    color: var(--text-light);
    white-space: nowrap;
}

.pdp-feedback-item p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text);
    word-break: break-word;
}

.pdp-related {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pdp-related-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.pdp-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    z-index: 900;
    padding: 0.75rem 0;
}

.pdp-sticky-bar[hidden] {
    display: none !important;
}

.pdp-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pdp-sticky-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.pdp-sticky-thumb {
    width: 48px;
    height: 48px;
    border-radius: 0;
    object-fit: cover;
    flex-shrink: 0;
}

.pdp-sticky-name {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.pdp-sticky-price {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

.pdp-sticky-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.pdp-sticky-actions .btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
}

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

    .pdp-buy {
        position: static;
    }

    .page-product .pdp-shell {
        padding-top: 0;
    }

    .page-product .pdp-shell > .container {
        padding-left: 0;
        padding-right: 0;
    }

    .pdp-gallery {
        padding: 0;
    }

    .pdp-gallery-main {
        aspect-ratio: 1 / 1;
        border-radius: 0;
    }

    .pdp-gallery-thumbs {
        padding: 0 var(--container-x, 1rem);
    }

    .pdp-buy,
    .pdp-tabs,
    .pdp-related {
        padding-left: var(--container-x, 1rem);
        padding-right: var(--container-x, 1rem);
    }
}

@media (max-width: 576px) {
    .pdp-actions {
        flex-direction: column;
    }

    .pdp-sticky-info .pdp-sticky-name {
        max-width: 110px;
    }

    .pdp-sticky-actions .btn {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   USER PROFILE PAGE
   ═══════════════════════════════════════════════════════════ */
.profile-shell {
    max-width: 960px;
    margin: 0 auto;
}

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

.profile-summary {
    text-align: center;
    padding: 2rem 1.5rem;
}

.profile-summary-avatar-wrap {
    margin: 0 auto 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.profile-summary-avatar-img {
    width: 88px;
    height: 88px;
    border-radius: 0;
    object-fit: cover;
    border: 2px solid rgba(141, 110, 99, 0.25);
    background: #f5f3f0;
}

.profile-avatar-form,
.profile-avatar-reset-form {
    margin: 0;
}

.profile-avatar-upload {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.85rem;
    border-radius: 0;
    border: 1px solid rgba(141, 110, 99, 0.35);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.profile-avatar-upload:hover {
    background: rgba(141, 110, 99, 0.08);
    border-color: var(--primary);
}

.profile-avatar-upload input {
    display: none;
}

.profile-avatar-reset {
    border: none;
    background: none;
    padding: 0;
    font-size: 0.76rem;
    color: var(--text-light);
    text-decoration: underline;
    cursor: pointer;
}

.profile-avatar-reset:hover {
    color: var(--primary-dark);
}

.profile-summary-avatar {
    width: 72px;
    height: 72px;
    border-radius: 0;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(141, 110, 99, 0.15);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.profile-summary h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.profile-summary p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.profile-main {
    display: grid;
    gap: 1.25rem;
}

.profile-card {
    padding: 1.5rem;
}

.profile-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--dark);
}

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

.profile-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.profile-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-family: var(--font-sans);
}

.page-profile .profile-form .btn-outline {
    color: var(--dark);
    border-color: rgba(31, 26, 23, 0.45);
    box-shadow: none;
}

.page-profile .profile-form .btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.profile-alert {
    padding: 0.85rem 1rem;
    border-radius: 0;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.profile-alert--success {
    background: #e8f5e9;
    color: #2e7d32;
}

.profile-alert--error {
    background: #ffebee;
    color: #c62828;
}

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

/* ── Showroom Gallery (Inhubs full page layout) ─────────── */
.page-gallery,
body.page-gallery {
    background: #f5f3f0;
}

.page-gallery .gallery-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* Hero split */
.page-gallery .gallery-hero-split {
    padding: calc(var(--nav-h) + 2.5rem) 0 clamp(3rem, 6vw, 5rem);
    background: #f5f3f0;
}

.page-gallery .gallery-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: stretch;
}

.page-gallery .gallery-hero-left {
    display: flex;
    gap: clamp(1rem, 2vw, 1.75rem);
    align-items: flex-start;
}

.page-gallery .gallery-hero-social {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0.35rem;
}

.page-gallery .gallery-social-dot {
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 0;
    background: transparent;
}

.page-gallery .gallery-hero-copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.page-gallery .gallery-hero-headline {
    margin: 0;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    max-width: 11ch;
}

.page-gallery .gallery-hero-subtext {
    margin: clamp(1rem, 2vw, 1.35rem) 0 0;
    max-width: 420px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #666;
}

.page-gallery .gallery-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: clamp(1.5rem, 3vw, 2rem);
    padding: 0.85rem 1.35rem;
    background: #1a1a1a;
    color: #fff;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0;
    width: fit-content;
    transition: background 0.2s;
}

.page-gallery .gallery-btn-dark:hover {
    background: #333;
    color: #fff;
}

.page-gallery .gallery-btn-dark i {
    font-size: 0.7rem;
}

.page-gallery .gallery-featured-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.page-gallery .gallery-featured-label {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
}

.page-gallery .gallery-featured-thumbs {
    display: flex;
    gap: 0.5rem;
}

.page-gallery .gallery-featured-thumbs img {
    width: clamp(52px, 6vw, 64px);
    height: clamp(52px, 6vw, 64px);
    object-fit: cover;
    display: block;
}

.page-gallery .gallery-hero-right {
    height: clamp(320px, 42vw, 520px);
    max-height: clamp(320px, 42vw, 520px);
    overflow: hidden;
}

.page-gallery .gallery-hero-right img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    display: block;
}

/* Product grid section */
.page-gallery .gallery-section {
    padding: 0 0 clamp(3.5rem, 7vw, 5.5rem);
    background: #f5f3f0;
}

.page-gallery .gallery-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.page-gallery .gallery-section-title {
    margin: 0;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(1.65rem, 2.2vw, 2.125rem);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #1a1a1a;
}

.page-gallery .gallery-section-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0.72rem 1.35rem;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    background: #fff;
    color: #1a1a1a;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.page-gallery .gallery-section-link:hover {
    background: #1a1a1a;
    color: #fff;
}

.page-gallery .gallery-section-link i {
    font-size: 0.7rem;
}

.page-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 8px;
    row-gap: clamp(2rem, 3.5vw, 2.75rem);
}

.page-gallery .gallery-tile {
    margin: 0;
    cursor: pointer;
    outline: none;
}

.page-gallery .gallery-tile-media {
    position: relative;
    overflow: hidden;
    background: #e8e4de;
    aspect-ratio: 4 / 5;
}

.page-gallery .gallery-tile-media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
}

.page-gallery .gallery-tile-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.page-gallery .gallery-tile:hover .gallery-tile-overlay,
.page-gallery .gallery-tile:focus-visible .gallery-tile-overlay,
.page-gallery .gallery-tile:focus-within .gallery-tile-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.page-gallery .gallery-tile-overlay-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    background: #1a1a1a;
    color: #fff;
}

.page-gallery .gallery-tile-category {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
}

.page-gallery .gallery-tile-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.6875rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
}

.page-gallery .gallery-tile-overlay-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    background: #fff;
    color: #1a1a1a;
}

.page-gallery .gallery-tile-name {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-gallery .gallery-tile-meta {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1a1a1a;
}

.page-gallery .gallery-tile-label {
    margin: 0.75rem 0 0;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.2;
}

.page-gallery .gallery-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: #666;
}

.page-gallery .gallery-empty p {
    margin-bottom: 1.25rem;
}

/* Values / about split */
.page-gallery .gallery-values {
    padding: 0 0 clamp(4rem, 8vw, 6rem);
    background: #f5f3f0;
}

.page-gallery .gallery-values-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.25rem);
    align-items: stretch;
}

.page-gallery .gallery-values-left {
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 1.5vw, 1rem);
}

.page-gallery .gallery-values-box {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    padding: clamp(1.25rem, 2.5vw, 2rem);
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #f5f3f0;
    min-height: clamp(180px, 22vw, 240px);
}

.page-gallery .gallery-values-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.page-gallery .gallery-values-item {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    text-align: left;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    font-weight: 500;
    line-height: 1.35;
    color: #c4c0ba;
    cursor: pointer;
    transition: color 0.2s;
}

.page-gallery .gallery-values-item.is-active {
    color: #1a1a1a;
}

.page-gallery .gallery-values-item:hover {
    color: #1a1a1a;
}

.page-gallery .gallery-values-desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #555;
    align-self: center;
}

.page-gallery .gallery-btn-wide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.25rem;
    background: #1a1a1a;
    color: #fff;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.page-gallery .gallery-btn-wide:hover {
    background: #333;
    color: #fff;
}

.page-gallery .gallery-btn-wide i {
    font-size: 0.7rem;
}

.page-gallery .gallery-values-thumb {
    margin: 0;
    overflow: hidden;
    height: clamp(120px, 14vw, 160px);
    max-height: clamp(120px, 14vw, 160px);
}

.page-gallery .gallery-values-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
}

.page-gallery .gallery-values-right {
    overflow: hidden;
    height: clamp(400px, 50vh, 600px);
    max-height: clamp(400px, 50vh, 600px);
}

.page-gallery .gallery-values-right img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
}

/* Detail panel */
.gallery-detail {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-detail[hidden] {
    display: none !important;
}

body.gallery-detail-open {
    overflow: hidden;
}

.gallery-detail-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.gallery-detail-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    width: min(920px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.gallery-detail-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
}

.gallery-detail-media {
    margin: 0;
    min-height: 280px;
    background: #e8e4de;
}

.gallery-detail-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.gallery-detail-copy {
    padding: clamp(1.25rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-detail-room {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
}

.gallery-detail-copy h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 600;
    line-height: 1.25;
}

.gallery-detail-location {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    color: #777;
}

.gallery-detail-desc {
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #555;
}

.gallery-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.gallery-detail-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 140px;
    min-height: 2.75rem;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gallery-detail-btn--primary {
    background: #2b211c;
    color: #fff;
    border: 1px solid #2b211c;
}

.gallery-detail-btn--primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.gallery-detail-btn--secondary {
    background: #fff;
    color: #2b211c;
    border: 1px solid rgba(43, 33, 28, 0.35);
}

.gallery-detail-btn--secondary:hover {
    background: #2b211c;
    border-color: #2b211c;
    color: #fff;
}

@media (max-width: 1024px) {
    .page-gallery .gallery-hero-grid,
    .page-gallery .gallery-values-grid {
        grid-template-columns: 1fr;
    }

    .page-gallery .gallery-hero-right {
        order: -1;
        height: clamp(280px, 50vw, 380px);
        max-height: clamp(280px, 50vw, 380px);
    }

    .page-gallery .gallery-hero-right img {
        min-height: 0;
        height: 100%;
    }

    .page-gallery .gallery-hero-headline {
        max-width: none;
    }

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

    .page-gallery .gallery-values-right {
        min-height: 360px;
        height: clamp(320px, 55vw, 460px);
        max-height: clamp(320px, 55vw, 460px);
    }

    .page-about .gallery-values-right {
        min-height: 0;
        justify-content: center;
        height: clamp(240px, 52vw, 360px);
        max-height: clamp(240px, 52vw, 360px);
    }

    .page-about .gallery-values-right img {
        width: 100%;
        height: 100%;
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .page-gallery .gallery-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .page-gallery .gallery-values-box {
        grid-template-columns: 1fr;
    }

    .page-gallery .gallery-tile-overlay {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

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

@media (max-width: 480px) {
    .page-gallery .gallery-grid {
        grid-template-columns: 1fr;
    }

    .page-gallery .gallery-hero-left {
        flex-direction: column;
    }

    .page-gallery .gallery-hero-social {
        flex-direction: row;
    }
}

/* ── Home page (Signature / Feature / Testimonials v2) ─────── */
.page-home {
    --home-accent: #9b5a42;
}

.page-home .home-signature-section,
.page-home .home-feature-section,
.page-home .home-testimonials-v2 {
    min-height: auto;
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: #fff;
}

.page-home .home-signature-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.page-home .home-signature-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: rgba(155, 90, 66, 0.35);
}

.page-home .home-signature-head h2 {
    margin: 0;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 600;
    color: var(--home-accent);
    white-space: nowrap;
}

.page-home .home-signature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem);
}

.page-home .home-signature-card {
    text-align: center;
}

.page-home .home-signature-media {
    display: block;
    width: min(100%, 220px);
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: 0;
    overflow: hidden;
    background: #ececec;
}

.page-home .home-signature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-home .home-signature-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    margin-top: 1rem;
    padding: 0.65rem 0.85rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.page-home .home-signature-copy {
    min-width: 0;
}

.page-home .home-signature-name {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.25;
}

.page-home .home-signature-name a {
    color: var(--dark);
    text-decoration: none;
}

.page-home .home-signature-cat {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.78rem;
    color: #999;
}

.page-home .home-signature-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 0;
    background: var(--home-accent);
    color: #fff;
    text-decoration: none;
    font-size: 0.72rem;
}

.page-home .home-signature-cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 4vw, 2.75rem);
}

.page-home .home-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    background: #fff;
    color: var(--dark);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.page-home .home-outline-btn:hover {
    border-color: var(--home-accent);
    color: var(--home-accent);
}

.page-home .home-feature-section {
    background: #fafafa;
}

.page-home .home-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}

.page-home .home-feature-media {
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    aspect-ratio: 1;
    max-height: none;
}

.page-home .home-feature-media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
}

.page-home .home-feature-copy h2 {
    margin: 0 0 1rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--dark);
    max-width: 12ch;
}

.page-home .home-feature-copy > p {
    margin: 0 0 1.5rem;
    max-width: 480px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #777;
}

.page-home .home-accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.page-home .home-accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-home .home-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    border: none;
    background: none;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
    cursor: pointer;
}

.page-home .home-accordion-trigger i {
    font-size: 0.85rem;
    color: #888;
    transition: transform 0.2s;
}

.page-home .home-accordion-item.is-open .home-accordion-trigger i {
    transform: rotate(45deg);
}

.page-home .home-accordion-panel {
    display: none;
    padding: 0 0 1rem;
}

.page-home .home-accordion-panel p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #666;
    max-width: 460px;
}

.page-home .home-accordion-item.is-open .home-accordion-panel {
    display: block;
}

.page-home .home-accent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    background: var(--home-accent);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    transition: background 0.2s;
}

.page-home .home-accent-btn:hover {
    background: #844a36;
    color: #fff;
}

.page-home .home-testimonials-v2 {
    background: #fff;
    overflow: hidden;
}

.page-home .home-testimonials-heading {
    margin: 0 0 clamp(2rem, 4vw, 3rem);
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--dark);
    text-align: right;
    max-width: 14ch;
    margin-left: auto;
}

.page-home .home-testimonials-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: start;
}

.page-home .home-testimonials-aside {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}

.page-home .home-testimonials-visual {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: clamp(360px, 42vw, 520px);
}

.page-home .home-testimonials-visual img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
}

.page-home .home-testimonials-nav {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.page-home .home-testimonials-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--dark);
    cursor: pointer;
    font-size: 0.8rem;
}

.page-home .home-testimonials-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.page-home .home-testimonials-track-wrap {
    overflow: hidden;
    padding-top: clamp(1rem, 3vw, 2rem);
    min-width: 0;
    width: 100%;
}

.page-home .home-testimonials-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.35s ease;
    will-change: transform;
}

.page-home .home-testimonial-card {
    flex: 0 0 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    box-sizing: border-box;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background: #f3f3f3;
    position: relative;
}

.page-home .home-testimonial-quote {
    display: block;
    font-family: Georgia, serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--home-accent);
    margin-bottom: 0.5rem;
}

.page-home .home-testimonial-card blockquote {
    margin: 0 0 1.25rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #555;
    font-style: normal;
}

.page-home .home-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.page-home .home-testimonial-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0;
    background: var(--home-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    flex-shrink: 0;
}

.page-home .home-testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
}

.page-home .home-testimonial-author em {
    display: block;
    font-style: normal;
    font-size: 0.78rem;
    color: #888;
}

@media (max-width: 1024px) {
    .page-home .home-signature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home .home-feature-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .page-home .home-feature-media,
    .page-home .home-feature-copy {
        width: 100%;
        max-width: 560px;
    }

    .page-home .home-feature-copy {
        text-align: center;
    }

    .page-home .home-feature-copy h2,
    .page-home .home-feature-copy > p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .page-home .home-accordion {
        text-align: left;
    }

    .page-home .home-accent-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .page-home .home-testimonials-heading {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 18ch;
    }

    .page-home .home-testimonials-layout {
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 1.25rem;
    }

    .page-home .home-testimonials-aside {
        width: 100%;
    }

    .page-home .home-testimonials-visual {
        width: 100%;
        max-width: none;
        max-height: none;
        aspect-ratio: 16 / 10;
    }

    .page-home .home-testimonials-nav {
        justify-content: center;
        margin-top: 1rem;
    }

    .page-home .home-testimonials-track-wrap {
        padding-top: 0;
        width: 100%;
    }

    .page-home .home-testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-home .home-signature-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }

    .page-home .home-feature-section .container,
    .page-home .home-signature-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-home .home-feature-grid {
        width: 100%;
    }

    .page-home .home-signature-head {
        width: 100%;
    }

    .page-home .home-signature-cta {
        width: 100%;
    }

    .page-home .home-testimonials-heading {
        max-width: none;
        font-size: clamp(1.45rem, 6vw, 1.85rem);
    }

    .page-home .home-testimonials-visual {
        aspect-ratio: 4 / 3;
    }

    .page-home .home-testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 1.35rem 1.25rem;
    }

    .page-home .home-testimonial-card blockquote {
        font-size: 0.92rem;
    }
}

/* ── Shop page v2 layout ──────────────────────────────────── */
.page-inner .site-main.page-shop-v2 {
    padding-top: var(--nav-h);
}

.page-shop-v2 {
    background: #fff;
}

.page-shop-v2 .shop-promo-bar {
    background: #2b211c;
    color: #fff;
    font-size: 0.8125rem;
    text-align: center;
    padding: 0.55rem 0;
}

.page-shop-v2 .shop-promo-inner p {
    margin: 0;
}

.page-shop-v2 .shop-search-form {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

.page-shop-v2 .shop-search-cat {
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0.85rem;
    font-size: 0.875rem;
    background: #fafafa;
}

.page-shop-v2 .shop-search-form input[type="search"] {
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    outline: none;
}

.page-shop-v2 .shop-search-form button {
    border: none;
    background: #fff;
    padding: 0 1.1rem;
    cursor: pointer;
    color: #555;
}

.page-shop-v2 .shop-category-strip {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    display: block;
    z-index: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.page-shop-v2 .shop-category-strip-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.page-shop-v2 .shop-category-block {
    flex: 1;
    min-width: 140px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.25rem 1rem;
    text-decoration: none;
    color: var(--dark);
    transition: background 0.2s;
}

.page-shop-v2 .shop-category-block:hover,
.page-shop-v2 .shop-category-block.is-active {
    background: #fafafa;
}

.page-shop-v2 .shop-category-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
    align-self: stretch;
}

.page-shop-v2 .shop-category-icon {
    font-size: 1.35rem;
    color: #888;
}

.page-shop-v2 .shop-category-label {
    font-size: 0.875rem;
    font-weight: 600;
}

.page-shop-v2 .shop-category-count {
    font-size: 0.75rem;
    color: #999;
}

.page-shop-v2 .shop-body {
    background: #f7f7f7;
}

.page-shop-v2 .shop-layout-section {
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.page-shop-v2 .shop-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: start;
}

.page-shop-v2 .shop-filters {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
}

.page-shop-v2 .shop-filter-group {
    background: #fff;
    padding: 1.1rem 1.15rem;
    margin-bottom: 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.page-shop-v2 .shop-filter-group h3 {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: var(--font-sans);
    color: #2b211c;
}

.page-shop-v2 .shop-price-range {
    position: relative;
    height: 28px;
    margin: 0.35rem 0 0.65rem;
}

.page-shop-v2 .shop-price-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    transform: translateY(-50%);
    background: #e3e3e3;
    border-radius: 0;
    pointer-events: none;
}

.page-shop-v2 .shop-price-track-fill {
    position: absolute;
    top: 50%;
    height: 6px;
    transform: translateY(-50%);
    background: #9b7a66;
    border-radius: 0;
    left: 0;
    width: 100%;
}

.page-shop-v2 .shop-price-input {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    height: 28px;
}

.page-shop-v2 .shop-price-input::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
    border: none;
}

.page-shop-v2 .shop-price-input::-moz-range-track {
    height: 4px;
    background: transparent;
    border: none;
}

.page-shop-v2 .shop-price-input::-webkit-slider-thumb {
    pointer-events: all;
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    margin-top: -6px;
    border-radius: 50%;
    background: #9b7a66;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(43, 33, 28, 0.18);
}

.page-shop-v2 .shop-price-input::-moz-range-thumb {
    pointer-events: all;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #9b7a66;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(43, 33, 28, 0.18);
}

.page-shop-v2 .shop-price-input--max {
    z-index: 2;
}

.page-shop-v2 .shop-price-input--min {
    z-index: 3;
}

.page-shop-v2 .shop-price-label {
    margin: 0;
    font-size: 0.78rem;
    color: #777;
}

.page-shop-v2 .shop-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.page-shop-v2 .shop-filter-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.page-shop-v2 .shop-filter-check input {
    accent-color: var(--primary);
}

.page-shop-v2 .shop-filter-check span:nth-child(2) {
    flex: 1;
}

.page-shop-v2 .shop-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4rem;
    height: 1.4rem;
    padding: 0 0.35rem;
    border-radius: 0;
    background: #f0f0f0;
    font-size: 0.72rem;
    color: #666;
}

.page-shop-v2 .shop-color-dot {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.page-shop-v2 .shop-brand-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
}

.page-shop-v2 .shop-brand-chip {
    display: block;
    padding: 0.45rem 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 0.75rem;
    cursor: pointer;
}

.page-shop-v2 .shop-brand-chip input {
    display: none;
}

.page-shop-v2 .shop-brand-chip.is-active {
    border-color: var(--primary);
    background: rgba(155, 122, 102, 0.08);
}

.page-shop-v2 .shop-bestsellers-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.page-shop-v2 .shop-bestseller-item {
    display: flex;
    gap: 0.65rem;
    text-decoration: none;
    color: inherit;
}

.page-shop-v2 .shop-bestseller-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    flex-shrink: 0;
    background: #eee;
}

.page-shop-v2 .shop-bestseller-item strong {
    display: block;
    font-size: 0.82rem;
    line-height: 1.3;
}

.page-shop-v2 .shop-bestseller-item em {
    font-style: normal;
    font-size: 0.78rem;
    color: var(--primary);
}

.page-shop-v2 .shop-main {
    min-width: 0;
}

.page-shop-v2 .shop-results-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: #666;
}

.page-shop-v2 .shop-results-count {
    margin: 0;
    white-space: nowrap;
}

.page-shop-v2 .shop-results-search {
    width: 100%;
    max-width: 520px;
    justify-self: center;
}

.page-shop-v2 .shop-results-search-group {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 580px;
    justify-self: center;
    min-width: 0;
}

.page-shop-v2 .shop-results-search-group .shop-results-search {
    flex: 1;
    max-width: none;
    justify-self: auto;
}

.page-shop-v2 .shop-search-clear {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #666;
    font-size: 0.8125rem;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
}

.page-shop-v2 .shop-search-clear:hover {
    border-color: rgba(0, 0, 0, 0.22);
    color: var(--dark);
}

.page-shop-v2 .shop-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: -0.5rem 0 1rem;
}

.page-shop-v2 .shop-filter-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.65rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.78rem;
    color: #555;
}

.page-shop-v2 .shop-clear-all {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
}

.page-shop-v2 .shop-clear-all:hover {
    text-decoration: underline;
}

.page-shop-v2 .shop-results-sort,
.page-shop-v2 .shop-results-bar select {
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    font-size: 0.85rem;
}

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

.page-shop-v2 .shop-grid-card {
    background: #fff;
    padding: 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-shop-v2 .shop-grid-media {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: #ececec;
    margin-bottom: 0.85rem;
}

.page-shop-v2 .shop-grid-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-shop-v2 .shop-grid-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.2rem 0.45rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.page-shop-v2 .shop-grid-badge--new {
    background: #2b211c;
    color: #fff;
}

.page-shop-v2 .shop-grid-badge--sale {
    background: #c45c3e;
    color: #fff;
}

.page-shop-v2 .shop-grid-name {
    margin: 0 0 0.35rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.page-shop-v2 .shop-grid-name a {
    color: var(--dark);
    text-decoration: none;
}

.page-shop-v2 .shop-grid-price {
    margin: 0 0 0.65rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.page-shop-v2 .shop-grid-swatches {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}

.page-shop-v2 .shop-grid-swatch {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.page-shop-v2 .shop-pagination {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    z-index: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    margin-top: 1.75rem;
}

.page-shop-v2 .shop-page-link,
.page-shop-v2 .shop-page-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.65rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.85rem;
}

.page-shop-v2 .shop-page-link.is-active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

.page-shop-v2 .shop-trust-section {
    background: #fff;
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.page-shop-v2 .shop-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.page-shop-v2 .shop-trust-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.page-shop-v2 .shop-trust-icon {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.page-shop-v2 .shop-trust-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.page-shop-v2 .shop-trust-item p {
    margin: 0;
    font-size: 0.82rem;
    color: #777;
    line-height: 1.5;
}

.page-shop-v2 .shop-featured-section {
    background: #f7f7f7;
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4rem);
}

.page-shop-v2 .shop-featured-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.page-shop-v2 .shop-featured-head h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
}

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

.page-shop-v2 .shop-featured-card {
    background: #fff;
    padding: 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.page-shop-v2 .shop-featured-media-wrap {
    position: relative;
    margin-bottom: 0.85rem;
}

.page-shop-v2 .shop-featured-media {
    display: block;
    aspect-ratio: 1;
    background: #ececec;
}

.page-shop-v2 .shop-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-shop-v2 .shop-featured-wish {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 0;
    background: #fff;
    color: #888;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-shop-v2 .shop-featured-name {
    margin: 0 0 0.35rem;
    font-size: 0.92rem;
    font-weight: 500;
    text-align: center;
}

.page-shop-v2 .shop-featured-name a {
    color: var(--dark);
    text-decoration: none;
}

.page-shop-v2 .shop-featured-price {
    margin: 0 0 0.65rem;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
}

.page-shop-v2 .shop-outline-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    background: #fff;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.85rem;
}

.page-shop-v2 .shop-filter-clear {
    font-size: 0.78rem;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .page-shop-v2 .shop-layout {
        grid-template-columns: 1fr;
    }

    .page-shop-v2 .shop-filters {
        position: static;
    }

    .page-shop-v2 .shop-product-grid,
    .page-shop-v2 .shop-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-shop-v2 .shop-trust-grid {
        grid-template-columns: 1fr;
    }

    .page-shop-v2 .shop-results-bar {
        grid-template-columns: 1fr;
    }

    .page-shop-v2 .shop-results-search-group {
        max-width: none;
        justify-self: stretch;
        flex-wrap: wrap;
    }

    .page-shop-v2 .shop-results-search {
        max-width: none;
        justify-self: stretch;
    }

    .page-shop-v2 .shop-results-sort {
        justify-self: start;
    }
}

@media (max-width: 600px) {
    .page-shop-v2 .shop-search-form {
        grid-template-columns: 1fr;
    }

    .page-shop-v2 .shop-search-cat {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .page-shop-v2 .shop-product-grid,
    .page-shop-v2 .shop-featured-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Contact page v2 layout ─────────────────────────────────── */
.page-inner .site-main.page-contact-v2 {
    padding-top: var(--nav-h);
    background: #f7f7f7;
}

.page-contact-v2 .contact-hero {
    position: relative;
    min-height: clamp(200px, 32vw, 320px);
    overflow: hidden;
}

.page-contact-v2 .contact-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(2px);
    transform: scale(1.04);
}

.page-contact-v2 .contact-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 33, 28, 0.35) 0%, rgba(43, 33, 28, 0.55) 100%);
}

.page-contact-v2 .contact-card-section {
    position: relative;
    z-index: 2;
    margin-top: clamp(-7rem, -12vw, -5rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.page-contact-v2 .contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-contact-v2 .contact-card-info {
    padding: clamp(1.75rem, 4vw, 3rem);
}

.page-contact-v2 .contact-card-info h1 {
    margin: 0 0 0.85rem;
    font-family: var(--font-sans);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
}

.page-contact-v2 .contact-card-lead {
    margin: 0 0 1.75rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #666;
    max-width: 34rem;
}

.page-contact-v2 .contact-detail-list {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: grid;
    gap: 1.15rem;
}

.page-contact-v2 .contact-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.page-contact-v2 .contact-detail-icon {
    flex-shrink: 0;
    width: 2rem;
    color: #999;
    font-size: 1rem;
    line-height: 1.4;
}

.page-contact-v2 .contact-detail-label {
    display: block;
    font-size: 0.78rem;
    color: #999;
    margin-bottom: 0.15rem;
}

.page-contact-v2 .contact-detail-list strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.45;
}

.page-contact-v2 .contact-detail-list a {
    color: inherit;
}

.page-contact-v2 .contact-detail-list a:hover {
    color: var(--primary);
}

.page-contact-v2 .contact-inquiry-prompts {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.page-contact-v2 .contact-inquiry-heading {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
}

.page-contact-v2 .contact-inquiry-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.page-contact-v2 .contact-inquiry-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #555;
}

.page-contact-v2 .contact-inquiry-list i {
    color: var(--primary);
    font-size: 0.7rem;
    margin-top: 0.35rem;
}

.page-contact-v2 .contact-card-form-wrap {
    background: #f3f3f3;
    padding: clamp(1.75rem, 4vw, 3rem);
}

.page-contact-v2 .contact-v2-form h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
}

.page-contact-v2 .contact-form-lead {
    margin: 0 0 1.35rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #777;
}

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

.page-contact-v2 .contact-v2-form .form-group {
    margin-bottom: 0.85rem;
}

.page-contact-v2 .contact-v2-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #555;
}

.page-contact-v2 .contact-v2-form input,
.page-contact-v2 .contact-v2-form select,
.page-contact-v2 .contact-v2-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 0.72rem 0.85rem;
    font-size: 0.875rem;
    font-family: var(--font-sans);
    background: #fff;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s;
}

.page-contact-v2 .contact-v2-form textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact-v2 .contact-v2-form input:focus,
.page-contact-v2 .contact-v2-form select:focus,
.page-contact-v2 .contact-v2-form textarea:focus {
    border-color: var(--primary);
}

.page-contact-v2 .contact-form-feedback {
    margin: 0 0 0.85rem;
    font-size: 0.875rem;
}

.page-contact-v2 .contact-form-feedback.is-success {
    color: #2e7d32;
}

.page-contact-v2 .contact-form-feedback.is-error {
    color: #c62828;
}

.page-contact-v2 .contact-submit-btn {
    border: none;
    background: #2b211c;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    cursor: pointer;
    transition: background 0.2s;
}

.page-contact-v2 .contact-submit-btn:hover {
    background: var(--primary);
}

.page-contact-v2 .contact-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.page-contact-v2 .contact-map-section {
    background: #fff;
    padding-bottom: 0;
}

.page-contact-v2 .contact-map-wrap {
    position: relative;
    width: 100%;
    height: clamp(280px, 42vw, 420px);
    background: #e8e8e8;
}

.page-contact-v2 .contact-map-directions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary, #1a1a1a);
    text-decoration: none;
}

.page-contact-v2 .contact-map-directions:hover {
    background: var(--primary, #1a1a1a);
    color: #fff;
}

.page-contact-v2 .contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .page-contact-v2 .contact-card {
        grid-template-columns: 1fr;
    }

    .page-contact-v2 .contact-card-section {
        margin-top: -3rem;
    }
}

@media (max-width: 600px) {
    .page-contact-v2 .contact-form-row {
        grid-template-columns: 1fr;
    }
}

/* ── Inquiry thank-you page ─────────────────────────────────── */
.page-inner .site-main.page-inquiry-thank-you {
    padding-top: var(--nav-h);
    background: #f7f7f7;
    min-height: calc(100vh - var(--nav-h));
}

.inquiry-thank-hero {
    position: relative;
    min-height: clamp(220px, 34vw, 340px);
    overflow: hidden;
}

.inquiry-thank-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(2px);
    transform: scale(1.04);
}

.inquiry-thank-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 33, 28, 0.35) 0%, rgba(43, 33, 28, 0.58) 100%);
}

.inquiry-thank-section {
    position: relative;
    z-index: 2;
    margin-top: clamp(-6rem, -10vw, -4.5rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.inquiry-thank-card {
    max-width: 640px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3rem);
    text-align: center;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(43, 33, 28, 0.1);
}

.inquiry-thank-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: rgba(76, 175, 80, 0.12);
    color: #4caf50;
    font-size: 1.75rem;
}

.inquiry-thank-eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}

.inquiry-thank-card h1 {
    margin: 0 0 1rem;
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    line-height: 1.2;
    color: var(--dark);
}

.inquiry-thank-lead {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.inquiry-thank-notes {
    list-style: none;
    margin: 0 0 2rem;
    padding: 1rem 1.15rem;
    border-radius: 0;
    background: #faf8f6;
    text-align: left;
}

.inquiry-thank-notes li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text);
}

.inquiry-thank-notes li + li {
    margin-top: 0.75rem;
}

.inquiry-thank-notes i {
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.inquiry-thank-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.inquiry-thank-btn {
    min-width: min(100%, 260px);
    justify-content: center;
}

.inquiry-thank-link {
    font-size: 0.95rem;
}

/* ── About page (gallery-style layout) ─────────────────────── */
body.page-about {
    background: #f5f3f0;
}

body.page-about main.site-main {
    padding-top: 0;
}

.page-about .about-hero-eyebrow,
.page-about .about-section-eyebrow {
    margin: 0 0 0.65rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
}

.page-about .about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.page-about .about-hero-actions .gallery-btn-dark {
    margin-top: 0;
}

.page-about .gallery-section-link {
    border-radius: 0;
    padding: 0.85rem 1.35rem;
}

.page-about .about-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2.5vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(1.25rem, 2vw, 1.75rem);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.page-about .about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 5rem;
}

.page-about .about-stat strong {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    line-height: 1.1;
}

.page-about .about-stat span {
    font-size: 0.8125rem;
    color: #777;
}

.page-about .about-mission-band {
    padding-top: 0;
}

.page-about .about-mission-copy {
    margin: 0;
    max-width: 720px;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.75;
    color: #444;
}

.page-about .about-values-title {
    margin: 0 0 clamp(0.85rem, 1.5vw, 1rem);
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.page-about .about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.2vw, 0.85rem);
}

.page-about .about-process-card {
    padding: clamp(1.15rem, 2vw, 1.5rem);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    min-height: 100%;
}

.page-about .about-process-step {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #999;
}

.page-about .about-process-card h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.page-about .about-process-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #666;
}

.page-about .about-materials-band {
    padding-top: 0;
}

.page-about .about-materials-grid {
    align-items: center;
}

.page-about .about-materials-media {
    height: clamp(280px, 35vw, 420px);
    max-height: clamp(280px, 35vw, 420px);
    overflow: hidden;
}

.page-about .about-materials-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-about .about-materials-copy .gallery-section-title {
    margin-bottom: 0.85rem;
}

.page-about .about-body-copy {
    margin: 0 0 0.85rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555;
    max-width: 34rem;
}

.page-about .about-perk-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.page-about .about-perk-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #444;
}

.page-about .about-perk-list i {
    color: #1a1a1a;
    font-size: 0.7rem;
    margin-top: 0.35rem;
}

.page-about .about-workshop-lead {
    margin: -1rem 0 clamp(1.5rem, 3vw, 2rem);
    max-width: 640px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #666;
}

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

.page-about .about-cta-band {
    padding-bottom: clamp(4rem, 8vw, 6rem);
}

.page-about .about-cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.page-about .about-cta-inner .gallery-section-title {
    margin-bottom: 0.75rem;
}

.page-about .about-cta-copy {
    margin: 0 0 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666;
}

.page-about .about-cta-inner .about-hero-actions {
    justify-content: center;
}

.page-about .about-hero-extra {
    margin: 0.85rem 0 0;
    max-width: 420px;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #777;
}

.page-about .about-section-lead {
    margin: 0.5rem 0 0;
    max-width: 640px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666;
}

.page-about .about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.75fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.page-about .about-story-aside {
    display: grid;
    gap: 1.25rem;
}

.page-about .about-facts-card {
    display: grid;
    gap: 0.85rem;
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
}

.page-about .about-fact-item strong {
    display: block;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.1;
}

.page-about .about-fact-item span {
    font-size: 0.8125rem;
    color: #777;
}

.page-about .about-timeline-list {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.page-about .about-timeline-list li {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 0.85rem;
}

.page-about .about-timeline-year {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary, #8b6914);
    line-height: 1.3;
}

.page-about .about-timeline-list strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.page-about .about-timeline-list p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #666;
}

.page-about .about-mission-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.page-about .about-mission-block .gallery-section-title,
.page-about .about-vision-block .about-vision-title {
    margin-bottom: 0.85rem;
}

.page-about .about-vision-block {
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
}

.page-about .about-vision-title {
    margin: 0 0 0.65rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 600;
    color: #1a1a1a;
}

.page-about .about-check-list {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.page-about .about-check-list li,
.page-about .about-value-bullets li,
.page-about .about-cta-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #555;
}

.page-about .about-check-list i,
.page-about .about-value-bullets i,
.page-about .about-cta-points i {
    color: #1a1a1a;
    font-size: 0.65rem;
    margin-top: 0.35rem;
}

.page-about .about-value-bullets {
    list-style: none;
    margin: 0.85rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.page-about .about-values-box {
    min-height: clamp(220px, 28vw, 280px);
}

.page-about .gallery-values-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 2vw, 1.25rem);
    align-items: start;
}

.page-about .gallery-values-left {
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 1.5vw, 1rem);
    min-width: 0;
}

.page-about .gallery-values-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: clamp(580px, 74vh, 780px);
    max-height: clamp(580px, 74vh, 780px);
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.page-about .gallery-values-right img {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    display: block;
}

.page-about .gallery-values-thumb {
    overflow: hidden;
    height: clamp(120px, 14vw, 160px);
    max-height: clamp(120px, 14vw, 160px);
}

.page-about .gallery-values-thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    display: block;
}

.page-about .about-capabilities-lead {
    margin-top: 0.65rem;
}

.page-about .about-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.2vw, 0.85rem);
}

.page-about .about-capability-card,
.page-about .about-craft-card {
    padding: clamp(1.15rem, 2vw, 1.5rem);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    min-height: 100%;
}

.page-about .about-capability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    color: #555;
    font-size: 0.85rem;
}

.page-about .about-capability-card h3,
.page-about .about-craft-card h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
}

.page-about .about-capability-card p,
.page-about .about-craft-card p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #666;
}

.page-about .about-process-bullets {
    list-style: none;
    margin: 0.85rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 0.85rem;
}

.page-about .about-process-bullets li {
    position: relative;
    padding-left: 0.85rem;
    font-size: 0.78rem;
    line-height: 1.5;
    color: #666;
}

.page-about .about-process-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #1a1a1a;
}

.page-about .about-material-types-wrap {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.page-about .about-material-types {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.2vw, 0.85rem);
}

.page-about .about-material-type {
    padding: 1.15rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.page-about .about-material-type h3 {
    margin: 0 0 0.45rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

.page-about .about-material-type p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: #666;
}

.page-about .about-craft-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.65rem, 1.2vw, 0.85rem);
}

.page-about .about-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.page-about .about-faq-cta {
    margin-top: 1.5rem;
}

.page-about .about-faq-list {
    display: grid;
    gap: 0.65rem;
}

.page-about .about-faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 0;
}

.page-about .about-faq-item summary {
    padding: 1rem 1.15rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none;
}

.page-about .about-faq-item summary::-webkit-details-marker {
    display: none;
}

.page-about .about-faq-item p {
    margin: 0;
    padding: 0 1.15rem 1.15rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #666;
}

.page-about .about-cta-points {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.page-about .about-cta-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.75rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.8125rem;
    color: #666;
}

.page-about .about-cta-contact a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.page-about .about-cta-contact a:hover {
    color: var(--primary, #8b6914);
}

.page-about .about-cta-contact span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

@media (max-width: 1024px) {
    .page-about .about-story-grid,
    .page-about .about-mission-grid,
    .page-about .about-faq-grid,
    .page-about .gallery-values-grid {
        grid-template-columns: 1fr;
    }

    .page-about .gallery-values-right {
        order: -1;
        height: clamp(240px, 52vw, 360px);
        max-height: clamp(240px, 52vw, 360px);
        min-height: 0;
    }

    .page-about .gallery-values-right img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
    }

    .page-about .about-values-box,
    .page-about .gallery-values-box {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .page-about .gallery-values-thumb {
        height: clamp(140px, 36vw, 200px);
        max-height: clamp(140px, 36vw, 200px);
    }

    .page-about .about-capabilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-about .about-material-types {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-about .about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .page-about .about-capabilities-grid,
    .page-about .about-craft-grid,
    .page-about .about-material-types {
        grid-template-columns: 1fr;
    }

    .page-about .about-story-aside {
        order: -1;
    }

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

    .page-about .about-materials-media {
        order: -1;
    }

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

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

    .page-about .about-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-about .about-hero-actions .gallery-section-link,
    .page-about .about-hero-actions .gallery-btn-dark {
        justify-content: center;
    }
}

/* ── Wishlist page (contact-style v2 layout) ─────────────── */
.page-inner .site-main.page-wishlist-v2 {
    padding-top: var(--nav-h);
    background: #f7f7f7;
}

.page-wishlist-v2 .wishlist-hero {
    position: relative;
    min-height: clamp(200px, 32vw, 320px);
    overflow: hidden;
}

.page-wishlist-v2 .wishlist-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(2px);
    transform: scale(1.04);
}

.page-wishlist-v2 .wishlist-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 33, 28, 0.35) 0%, rgba(43, 33, 28, 0.55) 100%);
}

.page-wishlist-v2 .wishlist-panel-section {
    position: relative;
    z-index: 2;
    margin-top: clamp(-7rem, -12vw, -5rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.page-wishlist-v2 .wishlist-panel {
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-wishlist-v2 .wishlist-panel-head {
    padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 3vw, 1.75rem);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-wishlist-v2 .wishlist-eyebrow {
    margin: 0 0 0.65rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
}

.page-wishlist-v2 .wishlist-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 0.65rem;
}

.page-wishlist-v2 .wishlist-panel-head h1 {
    margin: 0;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    line-height: 1.1;
}

.page-wishlist-v2 .wishlist-count-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 0;
    background: rgba(155, 122, 102, 0.12);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.page-wishlist-v2 .wishlist-lead {
    margin: 0;
    max-width: 640px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #666;
}

.page-wishlist-v2 .wishlist-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-top: 1.35rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.page-wishlist-v2 .wishlist-select-all {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.875rem;
    color: #555;
    cursor: pointer;
    user-select: none;
}

.page-wishlist-v2 .wishlist-select-all input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--primary);
}

.page-wishlist-v2 .wishlist-bulk-remove {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    background: #fff;
    color: #666;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.page-wishlist-v2 .wishlist-bulk-remove:hover:not(:disabled) {
    border-color: #c0392b;
    color: #c0392b;
    background: rgba(192, 57, 43, 0.04);
}

.page-wishlist-v2 .wishlist-bulk-remove:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.page-wishlist-v2 .wishlist-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.page-wishlist-v2 .wishlist-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.35rem;
    border-radius: 0;
    background: rgba(155, 122, 102, 0.1);
    color: var(--primary);
    font-size: 1.75rem;
}

.page-wishlist-v2 .wishlist-empty h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: #1a1a1a;
}

.page-wishlist-v2 .wishlist-empty p {
    margin: 0 0 1.75rem;
    max-width: 420px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #777;
}

.page-wishlist-v2 .gallery-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0;
    padding: 0.85rem 1.5rem;
    background: #2b211c;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.page-wishlist-v2 .gallery-btn-dark:hover {
    background: var(--primary);
    color: #fff;
}

.page-wishlist-v2 .wishlist-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    align-items: start;
}

.page-wishlist-v2 .wishlist-items {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.page-wishlist-v2 .wishlist-item {
    display: grid;
    grid-template-columns: auto 120px minmax(0, 1fr) auto;
    gap: clamp(0.85rem, 2vw, 1.25rem);
    align-items: center;
    padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1.25rem, 3vw, 1.75rem);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.2s;
}

.page-wishlist-v2 .wishlist-item:last-child {
    border-bottom: none;
}

.page-wishlist-v2 .wishlist-item:hover {
    background: #fafafa;
}

.page-wishlist-v2 .wishlist-item-check {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.page-wishlist-v2 .wishlist-item-check input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.page-wishlist-v2 .wishlist-check-ui {
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    border: 1.5px solid rgba(0, 0, 0, 0.22);
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}

.page-wishlist-v2 .wishlist-item-check input:checked + .wishlist-check-ui {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: inset 0 0 0 2px #fff;
}

.page-wishlist-v2 .wishlist-item-media {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0eeeb;
}

.page-wishlist-v2 .wishlist-item-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.page-wishlist-v2 .wishlist-item:hover .wishlist-item-media img {
    transform: scale(1.04);
}

.page-wishlist-v2 .wishlist-item-body {
    min-width: 0;
}

.page-wishlist-v2 .wishlist-item-name {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.35;
}

.page-wishlist-v2 .wishlist-item-name:hover {
    color: var(--primary);
}

.page-wishlist-v2 .wishlist-item-price {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.page-wishlist-v2 .wishlist-item-note {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #999;
}

.page-wishlist-v2 .wishlist-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.65rem;
}

.page-wishlist-v2 .wishlist-item-inquire {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2b211c;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s, gap 0.2s;
}

.page-wishlist-v2 .wishlist-item-inquire:hover {
    color: var(--primary);
    gap: 0.65rem;
}

.page-wishlist-v2 .wishlist-item-remove {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: none;
    background: none;
    color: #aaa;
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.2s;
}

.page-wishlist-v2 .wishlist-item-remove span {
    display: none;
}

.page-wishlist-v2 .wishlist-item-remove:hover {
    color: #c0392b;
}

.page-wishlist-v2 .wishlist-aside {
    position: sticky;
    top: calc(var(--nav-h, 72px) + 1rem);
}

.page-wishlist-v2 .wishlist-aside-inner {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #faf9f7;
    min-height: 100%;
}

.page-wishlist-v2 .wishlist-aside-eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
}

.page-wishlist-v2 .wishlist-aside-inner h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.page-wishlist-v2 .wishlist-aside-lead {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
}

.page-wishlist-v2 .wishlist-aside-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
    max-height: 220px;
    overflow-y: auto;
}

.page-wishlist-v2 .wishlist-aside-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.8125rem;
}

.page-wishlist-v2 .wishlist-aside-item-name {
    color: #444;
    line-height: 1.35;
}

.page-wishlist-v2 .wishlist-aside-item-price {
    flex-shrink: 0;
    font-weight: 600;
    color: #1a1a1a;
}

.page-wishlist-v2 .wishlist-aside-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.85rem 0;
    margin-bottom: 0.35rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    color: #555;
}

.page-wishlist-v2 .wishlist-aside-total strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.page-wishlist-v2 .wishlist-aside-disclaimer {
    margin: 0 0 1.25rem;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #999;
}

.page-wishlist-v2 .wishlist-aside-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.9rem 1.25rem;
    margin-bottom: 1.25rem;
    background: #2b211c;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
}

.page-wishlist-v2 .wishlist-aside-cta:hover {
    background: var(--primary);
    color: #fff;
}

.page-wishlist-v2 .wishlist-aside-perks {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.page-wishlist-v2 .wishlist-aside-perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #666;
}

.page-wishlist-v2 .wishlist-aside-perks i {
    margin-top: 0.15rem;
    color: var(--primary);
    font-size: 0.75rem;
}

.page-wishlist-v2 .wishlist-aside-back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #777;
    text-decoration: none;
    transition: color 0.2s;
}

.page-wishlist-v2 .wishlist-aside-back:hover {
    color: var(--primary);
}

.page-wishlist-v2 .wishlist-trust-band {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.page-wishlist-v2 .wishlist-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
}

.page-wishlist-v2 .wishlist-trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.page-wishlist-v2 .wishlist-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0;
    background: rgba(155, 122, 102, 0.1);
    color: var(--primary);
    font-size: 1rem;
}

.page-wishlist-v2 .wishlist-trust-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1a1a;
}

.page-wishlist-v2 .wishlist-trust-item p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #777;
}

@media (max-width: 1024px) {
    .page-wishlist-v2 .wishlist-layout {
        grid-template-columns: 1fr;
    }

    .page-wishlist-v2 .wishlist-items {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .page-wishlist-v2 .wishlist-aside {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-wishlist-v2 .wishlist-panel-section {
        margin-top: -3rem;
    }

    .page-wishlist-v2 .wishlist-item {
        grid-template-columns: auto 88px minmax(0, 1fr);
        grid-template-rows: auto auto;
    }

    .page-wishlist-v2 .wishlist-item-actions {
        grid-column: 2 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 0.25rem;
    }

    .page-wishlist-v2 .wishlist-trust-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-wishlist-v2 .wishlist-item {
        grid-template-columns: auto 72px minmax(0, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }

    .page-wishlist-v2 .wishlist-panel-head {
        padding: 1.35rem 1.25rem 1rem;
    }

    .page-wishlist-v2 .wishlist-aside-inner {
        padding: 1.35rem 1.25rem;
    }
}

/* ── Global responsive auto-scaling ───────────────────────── */
@supports (padding: max(0px)) {
    .container,
    .container-fluid {
        padding-left: max(var(--container-x), env(safe-area-inset-left, 0px));
        padding-right: max(var(--container-x), env(safe-area-inset-right, 0px));
    }

    .site-footer {
        padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
    }
}

.site-main,
.page-body,
.page-section,
.container,
.page-grid-2,
.page-split-aside,
[class*="-grid"],
[class*="-layout"] {
    min-width: 0;
}

table {
    max-width: 100%;
}

.form-row-2,
.page-grid-2,
.contact-form-row {
    gap: var(--page-gap);
}

@media (max-width: 992px) {
    :root {
        --container-x: clamp(1rem, 3.5vw, 1.5rem);
        --grid-gap: clamp(0.65rem, 2vw, 1rem);
        --nav-h: clamp(56px, 12vw, 68px);
    }

    .form-row-2,
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    header > nav {
        padding-left: var(--container-x);
        padding-right: var(--container-x);
    }

    .nav-icons {
        gap: 0.35rem;
    }

    .nav-auth-link {
        font-size: clamp(0.72rem, 2vw, 0.85rem);
        letter-spacing: 0.1em;
    }
}

@media (max-width: 768px) {
    :root {
        --fluid-h1: clamp(1.75rem, 6vw, 2.75rem);
        --fluid-h2: clamp(1.35rem, 4.5vw, 2rem);
        --fluid-h3: clamp(1.1rem, 3.5vw, 1.5rem);
        --page-hero-pad-top: calc(var(--nav-h) + 1.25rem);
        --page-section-y: clamp(1.75rem, 5vw, 2.75rem);
    }

    .page-card,
    .profile-card,
    .profile-summary {
        padding: clamp(1.15rem, 4vw, 1.75rem);
    }

    .footer-intro h2 {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
    }

    .icon-btn {
        width: 2.35rem;
        height: 2.35rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-x: clamp(0.85rem, 4vw, 1.15rem);
        --btn-radius: 0;
        --page-card-radius: 0;
    }

    .nav-auth-links {
        gap: 0.4rem;
        margin-left: 0.35rem;
    }

    .nav-auth-sep {
        display: none;
    }

    .nav-auth-link {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }

    .hero-content h1 {
        font-size: clamp(1.85rem, 9vw, 2.35rem);
    }

    .hero-content p {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }

    .page-hero-lead,
    .page-hero-title {
        text-wrap: balance;
    }
}

@media (max-width: 360px) {
    :root {
        --container-x: 0.75rem;
    }

    .logo {
        font-size: 1rem;
        max-width: 42vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-icons .lang-switcher-btn {
        min-width: auto;
        padding: 0 0.35rem;
    }
}

@media (min-width: 1400px) {
    :root {
        --container-max: 1320px;
    }
}

@media (min-width: 1600px) {
    :root {
        --container-max: 1440px;
        --fluid-h1: clamp(2.5rem, 2rem + 1.5vw, 4rem);
    }
}

@media (min-width: 1920px) {
    :root {
        --container-max: 1560px;
    }

    html {
        font-size: clamp(16px, 0.45vw + 14px, 18px);
    }
}

@media (pointer: coarse) {
    .icon-btn,
    .nav-auth-link,
    .menu-toggle,
    .card-btn,
    .btn,
    button[type="submit"] {
        min-height: 44px;
    }

    .nav-auth-link {
        min-height: var(--nav-item-h);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
