/* ==========================================
   VAYOMEIE - Design System & Styles
   ========================================== */

/* ─── CSS Variables ──────────────────────── */
:root {
    /* Colors */
    --clay: #B08968;
    --clay-dark: #8C6B4F;
    --clay-light: #C9A98C;
    --cream: #FDEBC7;
    --cream-light: #FFF6E5;
    --beige: #F5E6D3;
    --warm-white: #FAF9F6;
    --pastel-pink: #F8D1D1;
    --eco-green: #6B8E6B;
    --text-dark: #2A1A1A;
    --text-body: #4A3A30;
    --text-light: #777777;
    --white: #FFFFFF;
    --error: #D32F2F;
    --success: #388E3C;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-section: 5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 50px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(42,26,26,0.06);
    --shadow-md: 0 4px 12px rgba(42,26,26,0.08);
    --shadow-lg: 0 8px 24px rgba(42,26,26,0.12);
    --shadow-card: 0 2px 8px rgba(42,26,26,0.06);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ───────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

html.lenis, html.lenis body {
    height: auto;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

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

a:hover { color: var(--clay); }

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

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.section__subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: var(--space-3xl);
    font-weight: 300;
}

.section__cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ─── Buttons ────────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-align: center;
}

.btn--primary {
    background: var(--clay);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--clay-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--clay);
    border: 1.5px solid var(--clay);
}
.btn--outline:hover {
    background: var(--clay);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
}

/* Custom cursor removed — using normal system cursor */
.cursor-dot, .cursor-outline { display: none !important; }

/* ─── Loader ─────────────────────────────── */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

/* .hidden handled by GSAP yPercent animation now */

.loader__inner {
    text-align: center;
}

.loader__svg {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
}

.loader__logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeIn 0.5s ease 0.1s forwards;
}

.loader__bar {
    width: 120px;
    height: 2px;
    background: rgba(176,137,104,0.2);
    border-radius: 1px;
    overflow: hidden;
}

.loader__bar-fill {
    height: 100%;
    width: 0;
    background: var(--clay);
    border-radius: 1px;
    animation: loaderProgress 1.2s ease forwards;
}

@keyframes loaderProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes loaderDraw {
    to { stroke-dashoffset: 0; }
}
@keyframes loaderFadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderDotFade {
    to { opacity: 1; }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* ─── Rotating Background SVG ────────────── */
.bg-motif {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(800px, 100vw);
    height: min(800px, 100vw);
    opacity: 0.14;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    color: var(--clay-light);
}

@keyframes rotateSlow {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ─── Header / Navigation ────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo-img {
    height: 70px;
    width: auto;
    transition: height var(--transition-base);
}

.header.scrolled .nav__logo-img {
    height: 55px;
}

.nav__links {
    display: flex;
    gap: var(--space-xl);
}

.nav__link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-dark);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clay);
    transition: width var(--transition-base);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav__icon {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: var(--space-xs);
    transition: color var(--transition-base);
    position: relative;
}

.nav__icon:hover { color: var(--clay); }

.nav__cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--clay);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-dark);
    transition: all var(--transition-base);
}

/* ─── Hero Section ───────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__slides {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: transform, opacity;
}

.hero__slide.active {
    opacity: 1;
}

/* Ken Burns subtle zoom on active slide */
.hero__slide:first-child {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42,26,26,0.5) 0%, rgba(42,26,26,0.2) 50%, transparent 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 var(--space-2xl);
    color: var(--white);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    color: var(--cream);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero__desc {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.hero__ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

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

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero__scroll-indicator span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    opacity: 0.7;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: var(--white);
    margin: 0 auto;
    opacity: 0.5;
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(0.5); opacity: 0.2; }
}

/* ─── Marquee ────────────────────────────── */
.marquee {
    overflow: hidden;
    padding: var(--space-lg) 0;
    background: var(--cream-light);
    border-top: 1px solid rgba(176,137,104,0.1);
    border-bottom: 1px solid rgba(176,137,104,0.1);
}

.marquee__track {
    display: flex;
    gap: var(--space-xl);
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--clay);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.marquee__dot {
    opacity: 0.4;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── USP Cards ──────────────────────────── */
.usp__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.usp__card {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(176,137,104,0.1);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease, border-color 0.3s;
    will-change: transform;
}

.usp__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(42,26,26,0.1);
    border-color: var(--clay-light);
}

.usp__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    color: var(--clay);
}

.usp__icon svg {
    width: 100%;
    height: 100%;
}

.usp__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.usp__text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ─── Product Cards ──────────────────────── */
.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-xl);
}

.product-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}

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

.product-card__image {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--warm-white);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,26,26,0.6) 0%, rgba(42,26,26,0.1) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--space-xl);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--clay);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    z-index: 1;
}

.product-card__badge--prebook {
    background: var(--eco-green);
}

.product-card__info {
    padding: var(--space-md) 0;
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.product-card__price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clay);
}

.product-card__compare {
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.9rem;
    margin-right: var(--space-xs);
}

/* ─── Pre-Booking CTA ────────────────────── */
.prebook-cta {
    background: var(--cream-light);
}

.prebook-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.prebook-cta__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

.prebook-cta__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clay);
    display: block;
    margin-bottom: var(--space-md);
}

.prebook-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.prebook-cta__text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

/* ─── Eco-Impact Strip ───────────────────── */
.eco-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    padding: var(--space-3xl) var(--space-lg);
    background: var(--text-dark);
    color: var(--white);
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.eco-strip__item {
    text-align: center;
}

.eco-strip__number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: var(--space-xs);
}

.eco-strip__label {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
}

.eco-strip__divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* ─── Newsletter ─────────────────────────── */
.newsletter {
    background: var(--cream-light);
}

.newsletter__inner {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.newsletter__text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
}

.newsletter__form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter__input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    border: 1.5px solid var(--clay-light);
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text-body);
    outline: none;
    transition: border-color var(--transition-base);
}

.newsletter__input:focus {
    border-color: var(--clay);
}

.newsletter__input::placeholder {
    color: var(--text-light);
}

/* ─── Footer ─────────────────────────────── */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer__logo {
    height: 50px;
    margin-bottom: var(--space-lg);
    filter: brightness(0) invert(1);
}

.footer__about {
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    background: var(--clay);
    border-color: var(--clay);
    color: var(--white);
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--cream);
}

.footer__contact {
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    opacity: 0.7;
}

.footer__contact i {
    width: 20px;
    margin-right: var(--space-sm);
    color: var(--clay);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-xl);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ─── WhatsApp Floating Button ───────────── */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* ─── Animation Helpers ──────────────────── */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
    .prebook-cta__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        padding: 5rem var(--space-xl) var(--space-xl);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        gap: var(--space-lg);
    }

    .nav__links.open {
        display: flex;
    }

    .nav__hamburger {
        display: flex;
    }

    .hero__content {
        padding: 0 var(--space-lg);
    }

    .hero__ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .eco-strip__divider {
        display: none;
    }

    .eco-strip {
        gap: var(--space-xl);
    }

    .newsletter__form {
        flex-direction: column;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

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

    .nav__logo-img {
        height: 50px;
    }
}

/* ═══════════════════════════════════════════════
   ADDITIONAL COMPONENTS
   ═══════════════════════════════════════════════ */

/* ─── Search Overlay ─────────────────────── */
.search-overlay {
    position: fixed; inset: 0;
    background: rgba(250,249,246,0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-overlay__close {
    position: absolute; top: 2rem; right: 2rem;
    background: none; border: none; font-size: 1.8rem; color: var(--text-dark); cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}
.search-overlay__close:hover { color: var(--clay); transform: rotate(90deg); }
.search-overlay__inner { width: 90%; max-width: 600px; text-align: center; }
.search-overlay__heading { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--text-dark); margin-bottom: var(--space-xl); }
.search-overlay__input-wrap { position: relative; }
.search-overlay__icon { position: absolute; left: 1.2rem; top: 50%; transform: translateY(-50%); color: var(--clay); font-size: 1.1rem; }
.search-overlay__input {
    width: 100%; padding: 1.1rem 1.2rem 1.1rem 3.2rem;
    border: 2px solid var(--clay-light); border-radius: var(--radius-xl);
    font-family: var(--font-body); font-size: 1.1rem; color: var(--text-dark);
    background: var(--white); outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.search-overlay__input:focus { border-color: var(--clay); box-shadow: 0 0 0 4px rgba(176,137,104,0.1); }
.search-overlay__input::placeholder { color: var(--text-light); font-weight: 300; }
.search-overlay__popular { margin-top: var(--space-xl); }
.search-overlay__popular-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: var(--space-md); }
.search-overlay__tags { display: flex; gap: var(--space-sm); flex-wrap: wrap; justify-content: center; }
.search-overlay__tag {
    padding: 0.5rem 1rem; border: 1px solid var(--clay-light); border-radius: var(--radius-xl);
    font-size: 0.85rem; color: var(--text-body); transition: all 0.3s;
}
.search-overlay__tag:hover { background: var(--clay); color: var(--white); border-color: var(--clay); }

/* ─── Cart Drawer ────────────────────────── */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 3000;
    pointer-events: none;
}
.cart-drawer.open { pointer-events: all; }

.cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(42,26,26,0.4);
    opacity: 0;
    transition: opacity var(--transition-base);
}
.cart-drawer.open .cart-drawer__overlay { opacity: 1; }

.cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: var(--warm-white);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid rgba(176,137,104,0.1);
}
.cart-drawer__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}
.cart-drawer__close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-dark);
    cursor: pointer;
}

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg) var(--space-xl);
}

.cart-drawer__empty {
    text-align: center;
    padding: var(--space-3xl) 0;
    color: var(--text-light);
}
.cart-drawer__empty i { font-size: 3rem; margin-bottom: var(--space-lg); display: block; }

.cart-drawer__footer {
    padding: var(--space-lg) var(--space-xl);
    border-top: 1px solid rgba(176,137,104,0.1);
}
.cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}
.cart-drawer__note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.btn--block { display: block; width: 100%; margin-bottom: var(--space-sm); }
.btn--lg { padding: 1rem 2.5rem; font-size: 0.9rem; }

/* ─── Cart Item (drawer + page) ──────────── */
.cart-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(176,137,104,0.08);
    position: relative;
}
.cart-item__image { width: 70px; flex-shrink: 0; }
.cart-item__image img { width: 100%; border-radius: var(--radius-sm); aspect-ratio: 3/4; object-fit: cover; }
.cart-item__details { flex: 1; }
.cart-item__name { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 400; color: var(--text-dark); margin-bottom: 2px; }
.cart-item__size { font-size: 0.8rem; color: var(--text-light); margin-bottom: 4px; }
.cart-item__price { font-weight: 600; color: var(--clay); font-size: 0.9rem; margin-bottom: 6px; }

.cart-item__qty { display: flex; align-items: center; gap: var(--space-sm); }
.cart-item__qty-btn {
    width: 28px; height: 28px;
    border: 1px solid var(--clay-light);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition-fast);
}
.cart-item__qty-btn:hover { background: var(--clay); color: var(--white); border-color: var(--clay); }
.cart-item__qty-value { font-weight: 600; min-width: 20px; text-align: center; }

.cart-item__remove {
    position: absolute; top: var(--space-md); right: 0;
    background: none; border: none; color: var(--text-light);
    cursor: pointer; font-size: 0.85rem;
    transition: color var(--transition-fast);
}
.cart-item__remove:hover { color: var(--error); }

/* ─── Toast ──────────────────────────────── */
.toast {
    position: fixed;
    top: 5rem;
    right: 1.5rem;
    background: var(--text-dark);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    z-index: 5000;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all var(--transition-base);
}
.toast.visible { opacity: 1; transform: translateY(0); }

/* ─── Breadcrumb ─────────────────────────── */
.breadcrumb-section {
    padding: 6rem 0 var(--space-md);
}
.breadcrumb {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--clay); }
.breadcrumb span:not(:last-child) { opacity: 0.5; }

/* ─── Shop Page ──────────────────────────── */
.shop-header { padding: var(--space-3xl) 0 var(--space-xl); background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; }
.shop-header[style*="background-image"]::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(250,249,246,0.85), rgba(250,249,246,0.95)); }
.shop-header .container { position: relative; z-index: 1; }
.shop-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-dark);
}
.shop-header__count { font-size: 0.9rem; color: var(--text-light); margin-top: var(--space-xs); }

.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: var(--space-2xl); }

.shop-filters {
    position: sticky;
    top: 5rem;
    align-self: start;
}
.shop-filters__header { display: none; }

.filter-group { margin-bottom: var(--space-xl); }
.filter-group__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}
.filter-group__list li { margin-bottom: var(--space-sm); }
.filter-link {
    font-size: 0.9rem;
    color: var(--text-body);
    transition: color var(--transition-fast);
    padding: 2px 0;
}
.filter-link:hover, .filter-link.active { color: var(--clay); font-weight: 600; }

.filter-select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1.5px solid var(--clay-light);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.85rem;
    background: var(--white);
    color: var(--text-body);
    cursor: pointer;
    outline: none;
}

.shop-mobile-controls { display: none; gap: var(--space-md); margin-bottom: var(--space-lg); align-items: center; }
.filter-select--mobile { width: auto; }

.shop-empty { text-align: center; padding: var(--space-4xl) 0; color: var(--text-light); }
.shop-empty i { font-size: 3rem; margin-bottom: var(--space-lg); display: block; }
.shop-empty h3 { color: var(--text-dark); margin-bottom: var(--space-sm); }

.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}
.shop-pagination__info { font-size: 0.85rem; color: var(--text-light); }

.product-card__category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-filters {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--warm-white);
        z-index: 2500;
        padding: var(--space-xl);
        overflow-y: auto;
    }
    .shop-filters.open { display: block; }
    .shop-filters__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: var(--space-xl);
        font-family: var(--font-heading);
        font-size: 1.3rem;
    }
    .shop-filters__close { background: none; border: none; font-size: 1.3rem; cursor: pointer; }
    .shop-mobile-controls { display: flex; }
}

/* ─── Product Detail ─────────────────────── */
.product-detail__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: start; }

.product-gallery__main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--warm-white);
    aspect-ratio: 3/4;
}
.product-gallery__img { width: 102%; height: 102%; margin: -1%; object-fit: cover; object-position: center center; display: block; cursor: zoom-in; }

.product-gallery__thumbs { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }
.product-gallery__thumb {
    width: 70px; height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--transition-fast);
    background: none; padding: 0;
}
.product-gallery__thumb.active, .product-gallery__thumb:hover { border-color: var(--clay); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info__category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clay);
    margin-bottom: var(--space-sm);
}
.product-info__name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}
.product-info__price { margin-bottom: var(--space-lg); display: flex; align-items: baseline; gap: var(--space-sm); flex-wrap: wrap; }
.product-info__current { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--clay); }
.product-info__compare { font-size: 1.1rem; text-decoration: line-through; color: var(--text-light); }
.product-info__save {
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    background: var(--pastel-pink); color: var(--text-dark);
    padding: 2px 8px; border-radius: var(--radius-sm);
}
.product-info__desc { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; margin-bottom: var(--space-lg); }

.product-info__tags { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.tag {
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
    padding: 4px 10px; border-radius: var(--radius-xl);
    border: 1px solid var(--eco-green); color: var(--eco-green);
}

.product-info__sizes { margin-bottom: var(--space-xl); }
.product-info__sizes h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: var(--space-md); }
.size-options { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-sm); }
.size-btn {
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--clay-light);
    border-radius: var(--radius-md);
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-body);
    transition: all var(--transition-fast);
    text-align: center;
    min-width: 60px;
}
.size-btn:hover:not(.disabled) { border-color: var(--clay); }
.size-btn.active { background: var(--clay); color: var(--white); border-color: var(--clay); }
.size-btn.disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.size-btn__stock { display: block; font-size: 0.65rem; margin-top: 2px; color: var(--eco-green); }
.size-btn.active .size-btn__stock { color: rgba(255,255,255,0.8); }
.size-btn__stock--out { color: var(--error); }
.product-info__size-guide { font-size: 0.8rem; color: var(--clay); text-decoration: underline; }

.product-info__actions { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-xl); }

/* Accordion */
.product-accordions { border-top: 1px solid rgba(176,137,104,0.15); }
.accordion { border-bottom: 1px solid rgba(176,137,104,0.15); }
.accordion__header {
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion__header::after { content: '+'; font-weight: 300; font-size: 1.2rem; color: var(--clay); }
.accordion[open] .accordion__header::after { content: '−'; }
.accordion__body { padding: 0 0 var(--space-md); font-size: 0.9rem; color: var(--text-body); line-height: 1.7; }
.accordion__body a { color: var(--clay); text-decoration: underline; }

.product-info__artisan {
    background: var(--cream-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-top: var(--space-lg);
}
.product-info__artisan h4 { font-family: var(--font-heading); margin-bottom: var(--space-sm); color: var(--text-dark); }
.product-info__artisan i { color: var(--clay); margin-right: var(--space-xs); }
.product-info__artisan p { font-size: 0.9rem; line-height: 1.7; }

.related-products { background: var(--cream-light); }

@media (max-width: 768px) {
    .product-detail__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* ─── Cart Page ──────────────────────────── */
.cart-page__empty { text-align: center; padding: var(--space-4xl) 0; }
.cart-page__empty i { font-size: 3rem; color: var(--text-light); display: block; margin-bottom: var(--space-lg); }
.cart-page__empty h3 { margin-bottom: var(--space-sm); }
.cart-page__empty p { color: var(--text-light); margin-bottom: var(--space-xl); }

.cart-page__layout { display: grid; grid-template-columns: 1fr 350px; gap: var(--space-2xl); align-items: start; margin-top: var(--space-xl); }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); padding: var(--space-md) var(--space-sm); text-align: left; border-bottom: 1px solid rgba(176,137,104,0.15); }
.cart-table td { padding: var(--space-md) var(--space-sm); vertical-align: middle; border-bottom: 1px solid rgba(176,137,104,0.08); }

.cart-table__product-inner { display: flex; align-items: center; gap: var(--space-md); }
.cart-table__img { width: 70px; border-radius: var(--radius-sm); aspect-ratio: 3/4; object-fit: cover; }
.cart-table__name { font-family: var(--font-heading); font-size: 0.95rem; color: var(--text-dark); }
.cart-table__size { font-size: 0.8rem; color: var(--text-light); }
.cart-table__price { font-weight: 600; color: var(--text-body); }
.cart-table__total { font-weight: 600; color: var(--clay); }
.cart-table__remove button { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 0.9rem; }
.cart-table__remove button:hover { color: var(--error); }

.qty-control { display: flex; align-items: center; gap: var(--space-sm); }
.qty-control__btn {
    width: 30px; height: 30px;
    border: 1px solid var(--clay-light); border-radius: 50%;
    background: transparent; cursor: pointer;
    font-size: 1rem; color: var(--text-dark);
    display: flex; align-items: center; justify-content: center;
}
.qty-control__btn:hover { background: var(--clay); color: var(--white); border-color: var(--clay); }
.qty-control__value { font-weight: 600; min-width: 20px; text-align: center; }

.order-summary {
    background: var(--cream-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    position: sticky;
    top: 6rem;
}
.order-summary__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}
.order-summary__row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: var(--space-sm); }
.order-summary__row--total { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-top: var(--space-sm); }
.order-summary__divider { height: 1px; background: rgba(176,137,104,0.15); margin: var(--space-md) 0; }

@media (max-width: 768px) {
    .cart-page__layout { grid-template-columns: 1fr; }
    .cart-table th:nth-child(2), .cart-table td:nth-child(2),
    .cart-table th:nth-child(4), .cart-table td:nth-child(4) { display: none; }
}

/* ─── Checkout Page ──────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: var(--space-2xl); align-items: start; margin-top: var(--space-xl); }

.checkout-step { margin-bottom: var(--space-2xl); }
.checkout-step__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}
.checkout-step__num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--clay);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-group { margin-bottom: var(--space-md); }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid rgba(176,137,104,0.25);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--white);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.form-group input:hover, .form-group textarea:hover, .form-group select:hover {
    border-color: var(--clay-light);
    background: var(--cream-light);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--clay);
    box-shadow: 0 0 0 3px rgba(176,137,104,0.12);
    background: var(--white);
}
.form-group input::placeholder, .form-group textarea::placeholder {
    color: var(--text-light);
    font-weight: 300;
}
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-hint { font-size: 0.75rem; margin-top: 4px; display: block; }

.payment-options { display: flex; flex-direction: column; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.payment-option {
    display: flex; align-items: center;
    padding: var(--space-md) var(--space-lg);
    border: 1.5px solid var(--clay-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: border-color var(--transition-fast);
}
.payment-option.active { border-color: var(--clay); background: var(--cream-light); }
.payment-option input { display: none; }
.payment-option__label { display: flex; align-items: center; gap: var(--space-sm); font-size: 0.9rem; }
.payment-option__label i { font-size: 1.2rem; color: var(--clay); width: 24px; text-align: center; }

.coupon-section { margin-top: var(--space-lg); }
.coupon-input { display: flex; gap: var(--space-sm); }
.coupon-input input { flex: 1; }
.coupon-message { font-size: 0.8rem; margin-top: var(--space-xs); }

.checkout-item { display: flex; gap: var(--space-md); align-items: center; padding: var(--space-sm) 0; border-bottom: 1px solid rgba(176,137,104,0.08); }
.checkout-item__img { width: 50px; border-radius: var(--radius-sm); aspect-ratio: 3/4; object-fit: cover; }
.checkout-item__info { flex: 1; }
.checkout-item__name { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.checkout-item__meta { font-size: 0.75rem; color: var(--text-light); }
.checkout-item__price { font-weight: 600; font-size: 0.85rem; color: var(--text-body); }

.checkout-summary { position: sticky; top: 6rem; }

@media (max-width: 768px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
}

/* ─── Blog ───────────────────────────────── */
.blog-header { padding: 6rem 0 var(--space-xl); text-align: center; }
.blog-header__title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--text-dark); }

.blog-categories { display: flex; justify-content: center; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-3xl); }
.blog-categories a {
    font-size: 0.85rem; padding: 0.5rem 1.2rem;
    border: 1px solid var(--clay-light); border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}
.blog-categories a:hover, .blog-categories a.active { background: var(--clay); color: var(--white); border-color: var(--clay); }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: var(--space-xl); }

.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(42,26,26,0.12); }
.blog-card__image { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: var(--space-lg); }
.blog-card__category { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clay); font-weight: 600; margin-bottom: var(--space-sm); }
.blog-card__title { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: var(--space-sm); line-height: 1.3; }
.blog-card__excerpt { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: var(--space-md); }
.blog-card__meta { display: flex; gap: var(--space-md); font-size: 0.75rem; color: var(--text-light); }

/* Blog Post Detail */
.blog-post__hero { aspect-ratio: 21/9; max-height: 500px; overflow: hidden; margin-top: 4.5rem; }
.blog-post__hero img { width: 100%; height: 100%; object-fit: cover; }

.blog-post__header { text-align: center; padding: var(--space-2xl) 0; max-width: 700px; margin: 0 auto; }
.blog-post__category { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clay); font-weight: 600; margin-bottom: var(--space-md); }
.blog-post__title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 600; color: var(--text-dark); margin-bottom: var(--space-md); line-height: 1.2; }
.blog-post__meta { display: flex; justify-content: center; gap: var(--space-lg); font-size: 0.85rem; color: var(--text-light); }

.blog-post__content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
}
.blog-post__content h2, .blog-post__content h3 { font-family: var(--font-heading); color: var(--text-dark); margin: var(--space-xl) 0 var(--space-md); }
.blog-post__content p { margin-bottom: var(--space-lg); }
.blog-post__content img { width: 100%; border-radius: var(--radius-md); margin: var(--space-lg) 0; }
.blog-post__content blockquote {
    border-left: 3px solid var(--clay);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    background: var(--cream-light);
    font-style: italic;
    color: var(--text-dark);
}
.blog-post__content ul, .blog-post__content ol { margin: var(--space-md) 0; padding-left: var(--space-xl); }
.blog-post__content li { margin-bottom: var(--space-sm); }
.blog-post__content a { color: var(--clay); text-decoration: underline; }

.blog-share { display: flex; justify-content: center; gap: var(--space-md); padding: var(--space-xl) 0; border-top: 1px solid rgba(176,137,104,0.15); margin-top: var(--space-xl); max-width: 700px; margin-left: auto; margin-right: auto; }
.blog-share__btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--clay-light); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--text-body); transition: all var(--transition-fast); }
.blog-share__btn:hover { background: var(--clay); color: var(--white); border-color: var(--clay); }

/* ─── About Page ─────────────────────────── */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--cream-light);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 4.5rem;
    padding: var(--space-4xl) var(--space-lg);
}
.about-hero[style*="background-image"]::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(42,26,26,0.45), rgba(42,26,26,0.55)); }
.about-hero[style*="background-image"] .about-hero__content { position: relative; z-index: 1; }
.about-hero[style*="background-image"] .about-hero__title { color: var(--white); }
.about-hero[style*="background-image"] .about-hero__subtitle { color: rgba(255,255,255,0.85); }
.about-hero__title { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--text-dark); margin-bottom: var(--space-md); }
.about-hero__subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 500px; margin: 0 auto; }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.about-split--reverse .about-split__image { order: 2; }
.about-split__image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.about-split__image img { width: 100%; height: 100%; object-fit: cover; }
.about-split__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--clay); font-weight: 600; margin-bottom: var(--space-md); }
.about-split__title { font-family: var(--font-heading); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; color: var(--text-dark); margin-bottom: var(--space-lg); line-height: 1.2; }
.about-split__text { font-size: 1rem; line-height: 1.8; color: var(--text-body); }

@media (max-width: 768px) {
    .about-split { grid-template-columns: 1fr; }
    .about-split--reverse .about-split__image { order: 0; }
}

/* ─── Contact Page ───────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); }
.contact-info__item { display: flex; gap: var(--space-md); margin-bottom: var(--space-lg); }
.contact-info__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-light); display: flex; align-items: center; justify-content: center; color: var(--clay); flex-shrink: 0; }
.contact-info__label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info__value { font-weight: 600; color: var(--text-dark); margin-top: 2px; }

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

/* ─── Contact Form Styling ───────────────── */
.contact-header { padding: 6rem 0 var(--space-md); text-align: center; }
.contact-header__title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--text-dark); }
.contact-header__subtitle { font-size: 1rem; color: var(--text-light); max-width: 500px; margin: var(--space-sm) auto 0; }

.contact-form-wrap__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-xl);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}
@media (max-width: 600px) { .contact-form__row { grid-template-columns: 1fr; } }

.contact-form__group { margin-bottom: var(--space-md); }
.contact-form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.contact-form__label span { color: var(--clay); }

.contact-form__input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid rgba(176,137,104,0.25);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-body);
    background: var(--white);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.contact-form__input:hover {
    border-color: var(--clay-light);
    background: var(--cream-light);
}
.contact-form__input:focus {
    border-color: var(--clay);
    box-shadow: 0 0 0 3px rgba(176,137,104,0.12);
    background: var(--white);
}
.contact-form__input::placeholder { color: var(--text-light); font-weight: 300; }
.contact-form__textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
select.contact-form__input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form__feedback { margin-top: var(--space-md); font-size: 0.9rem; }
.contact-form__feedback--success { color: var(--eco-green); }
.contact-form__feedback--error { color: var(--error); }

.contact-info__card {
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}
.contact-info__value a { color: var(--clay); }
.contact-info__value a:hover { text-decoration: underline; }

.contact-social { margin-bottom: var(--space-xl); }
.contact-social__title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: var(--space-md); }
.contact-social__links { display: flex; gap: var(--space-md); }
.contact-social__link {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--clay-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--clay); font-size: 1.1rem;
    transition: all 0.3s ease;
}
.contact-social__link:hover { background: var(--clay); color: var(--white); border-color: var(--clay); }

.contact-map__placeholder {
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    text-align: center;
    color: var(--text-light);
}
.contact-map__placeholder i { font-size: 2rem; margin-bottom: var(--space-sm); display: block; }

/* ─── Pre-Book Form Styling ──────────────── */
.prebook-form-card {
    background: var(--white);
    border: 1.5px solid rgba(176,137,104,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 600px;
    margin: var(--space-xl) auto;
    box-shadow: var(--shadow-md);
}

.prebook-form-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
    text-align: center;
}

/* ─── Pre-Book Timeline ──────────────────── */
.prebook-timeline { display: flex; justify-content: space-between; align-items: flex-start; max-width: 700px; margin: var(--space-2xl) auto; position: relative; }
.prebook-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: var(--clay-light);
}
.prebook-step { text-align: center; position: relative; z-index: 1; flex: 1; }
.prebook-step__icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--clay);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-sm);
    color: var(--clay);
    font-size: 1rem;
}
.prebook-step__label { font-size: 0.75rem; color: var(--text-body); font-weight: 600; }

@media (max-width: 600px) {
    .prebook-timeline { flex-direction: column; gap: var(--space-md); align-items: flex-start; }
    .prebook-timeline::before { top: 0; bottom: 0; left: 24px; width: 2px; height: auto; right: auto; }
    .prebook-step { display: flex; align-items: center; gap: var(--space-md); text-align: left; }
}

/* ─── Pre-Book Page Styling ─────────────── */
.prebook-header { padding: 6rem 0 var(--space-md); text-align: center; }
.prebook-header__title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--text-dark); }
.prebook-header__subtitle { font-size: 1rem; color: var(--text-light); max-width: 500px; margin: var(--space-sm) auto 0; }

.prebook-product__card {
    display: flex;
    gap: var(--space-xl);
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}
.prebook-product__image { width: 120px; flex-shrink: 0; }
.prebook-product__image img { width: 100%; border-radius: var(--radius-md); aspect-ratio: 3/4; object-fit: cover; }
.prebook-product__category { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--clay); }
.prebook-product__name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--text-dark); }
.prebook-product__price { font-family: var(--font-heading); font-size: 1.1rem; color: var(--clay); margin-top: 4px; }
.prebook-product__desc { font-size: 0.85rem; color: var(--text-light); margin-top: var(--space-sm); }

.prebook-form-wrap {
    background: var(--white);
    border: 1.5px solid rgba(176,137,104,0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(42,26,26,0.06);
}
.prebook-form-wrap__header { text-align: center; margin-bottom: var(--space-xl); }
.prebook-form-wrap__title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--text-dark); margin-bottom: var(--space-sm); }
.prebook-form-wrap__text { font-size: 0.9rem; color: var(--text-light); }

.prebook-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-bottom: var(--space-md); }
@media (max-width: 600px) { .prebook-form__row { grid-template-columns: 1fr; } }
.prebook-form__group { margin-bottom: var(--space-md); }
.prebook-form__label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.03em; }
.prebook-form__label span { color: var(--clay); }
.prebook-form__input {
    width: 100%; padding: 0.9rem 1.2rem;
    border: 1.5px solid rgba(176,137,104,0.25); border-radius: var(--radius-md);
    font-family: var(--font-body); font-size: 0.95rem; color: var(--text-body);
    background: var(--white); outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.prebook-form__input:hover { border-color: var(--clay-light); background: var(--cream-light); }
.prebook-form__input:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(176,137,104,0.12); background: var(--white); }
.prebook-form__input::placeholder { color: var(--text-light); font-weight: 300; }
.prebook-form__textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
select.prebook-form__input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.prebook-form__feedback { margin-top: var(--space-md); font-size: 0.9rem; text-align: center; }
.prebook-form__feedback--success { color: var(--eco-green); }
.prebook-form__feedback--error { color: var(--error); }

.prebook-promise {
    text-align: center; max-width: 500px; margin: var(--space-2xl) auto 0;
    padding: var(--space-lg); background: var(--cream-light); border-radius: var(--radius-lg);
}
.prebook-promise i { color: var(--eco-green); font-size: 1.5rem; margin-bottom: var(--space-sm); display: block; }
.prebook-promise p { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; }

/* Timeline styling */
.timeline { display: flex; justify-content: space-between; align-items: flex-start; max-width: 800px; margin: var(--space-xl) auto; position: relative; }
.timeline::before { content: ''; position: absolute; top: 24px; left: 40px; right: 40px; height: 2px; background: var(--clay-light); z-index: 0; }
.timeline__step { text-align: center; position: relative; z-index: 1; flex: 1; }
.timeline__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--cream); border: 2px solid var(--clay); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-sm); color: var(--clay); font-size: 1rem; }
.timeline__label { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.timeline__desc { font-size: 0.75rem; color: var(--text-light); padding: 0 var(--space-xs); line-height: 1.4; }
@media (max-width: 600px) {
    .timeline { flex-direction: column; gap: var(--space-lg); align-items: flex-start; }
    .timeline::before { top: 0; bottom: 0; left: 24px; width: 2px; height: 100%; right: auto; }
    .timeline__step { display: flex; align-items: center; gap: var(--space-md); text-align: left; }
}

/* ─── Artisans ───────────────────────────── */
.artisan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-xl); }
.artisan-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.artisan-card__photo { aspect-ratio: 1; overflow: hidden; }
.artisan-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.artisan-card__info { padding: var(--space-lg); }
.artisan-card__name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }
.artisan-card__craft { font-size: 0.85rem; color: var(--clay); margin-top: 2px; }
.artisan-card__location { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }
.artisan-card details summary { font-size: 0.85rem; color: var(--clay); cursor: pointer; margin-top: var(--space-sm); }
.artisan-card details p { font-size: 0.85rem; line-height: 1.6; margin-top: var(--space-sm); }

/* ─── Fabric Guide ───────────────────────── */
.fabric-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-xl); }
.fabric-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.fabric-card__image { aspect-ratio: 4/3; overflow: hidden; }
.fabric-card__image img { width: 100%; height: 100%; object-fit: cover; }
.fabric-card__body { padding: var(--space-lg); }
.fabric-card__name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--text-dark); margin-bottom: var(--space-xs); }
.fabric-card__origin { font-size: 0.8rem; color: var(--clay); margin-bottom: var(--space-md); }

.fabric-props { display: flex; gap: var(--space-md); flex-wrap: wrap; margin: var(--space-md) 0; }
.fabric-prop { font-size: 0.75rem; }
.fabric-prop__label { text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); display: block; }
.fabric-prop__bar { height: 4px; border-radius: 2px; background: var(--clay-light); width: 60px; margin-top: 4px; }
.fabric-prop__bar-fill { height: 100%; border-radius: 2px; background: var(--clay); }

/* ─── Size Guide ─────────────────────────── */
.size-table { width: 100%; border-collapse: collapse; margin: var(--space-xl) 0; }
.size-table th { background: var(--cream-light); padding: var(--space-md); font-size: 0.85rem; text-align: center; border: 1px solid rgba(176,137,104,0.15); }
.size-table td { padding: var(--space-md); text-align: center; font-size: 0.9rem; border: 1px solid rgba(176,137,104,0.08); }
.size-table tr:hover td { background: var(--cream-light); }

/* ─── Policy Pages ───────────────────────── */
.policy-content { max-width: 700px; margin: 0 auto; }
.policy-content h2 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--text-dark); margin: var(--space-xl) 0 var(--space-md); }
.policy-content p, .policy-content li { font-size: 0.95rem; line-height: 1.7; color: var(--text-body); margin-bottom: var(--space-md); }
.policy-content ul { padding-left: var(--space-xl); }

/* ─── Nav active state ───────────────────── */
.nav__link.active { color: var(--clay); }
.nav__link.active::after { width: 100%; }

/* ─── Gradient Divider ───────────────────── */
.gradient-divider {
    height: 3px;
    max-width: 200px;
    margin: 0 auto var(--space-3xl);
    background: linear-gradient(90deg, transparent, var(--clay), transparent);
    border-radius: 2px;
}

/* ─── Floating Decorative Shapes ─────────── */
.section { position: relative; }

.featured::before,
.prebook-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
    background: var(--clay);
}

.featured::before {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.prebook-cta::after {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -60px;
}

/* ─── Hero floating shapes (like manavkalamkari) */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
    animation: floatShape 15s ease-in-out infinite;
    z-index: 0;
}

.hero::before {
    width: 40vw;
    height: 40vw;
    top: -20%;
    left: -15%;
    background: rgba(176, 137, 104, 0.15);
}

.hero::after {
    width: 30vw;
    height: 30vw;
    bottom: -15%;
    right: -10%;
    background: rgba(255, 255, 255, 0.1);
    animation-delay: -7s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -15px) scale(1.04); }
    100% { transform: translate(0, 0) scale(1); }
}

/* ─── Smooth image reveal ────────────────── */
.about-split__image {
    overflow: hidden;
}

.about-split__image img {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-split__image:hover img {
    transform: scale(1.05);
}

/* ─── Button press effect ────────────────── */
.btn:active {
    transform: scale(0.97) !important;
}

/* ─── Link underline grow effect ─────────── */
.nav__link::after {
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ─── Smooth focus outlines ──────────────── */
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(176, 137, 104, 0.15);
}

/* ─── Section title subtle styling ───────── */
.section__title {
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--clay);
    margin: var(--space-md) auto 0;
    border-radius: 1px;
}

/* ─── Rotating BG — scroll-driven, not CSS animation */
.bg-motif {
    animation: none;
}

/* ─── Footer Newsletter ──────────────────── */
.footer__newsletter { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); }
.footer__newsletter-input {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.footer__newsletter-input:focus { border-color: var(--clay); }
.footer__newsletter-btn {
    background: var(--clay);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: 0 0.8rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}
.footer__newsletter-btn:hover { background: var(--clay-dark); }

/* ─── Footer Admin Link ─────────────────── */
.footer__admin-link { margin-left: var(--space-md); opacity: 0.4; font-size: 0.7rem; transition: opacity 0.3s; }
.footer__admin-link:hover { opacity: 0.8; color: var(--clay); }

/* ─── Shop Search & Price Filter ────────── */
.shop-search-wrap { display: flex; gap: 0; }
.shop-search-input { flex: 1; padding: 0.7rem 1rem; border: 1.5px solid rgba(176,137,104,0.25); border-radius: var(--radius-md) 0 0 var(--radius-md); font-family: var(--font-body); font-size: 0.85rem; outline: none; transition: border-color 0.3s; }
.shop-search-input:focus { border-color: var(--clay); }
.shop-search-btn { padding: 0 1rem; background: var(--clay); color: var(--white); border: none; border-radius: 0 var(--radius-md) var(--radius-md) 0; cursor: pointer; transition: background 0.3s; }
.shop-search-btn:hover { background: var(--clay-dark); }
.filter-price { display: flex; flex-direction: column; gap: var(--space-sm); }
.filter-show-more { background: none; border: none; color: var(--clay); font-size: 0.85rem; cursor: pointer; padding: var(--space-sm) 0; font-family: var(--font-body); display: flex; align-items: center; gap: var(--space-xs); transition: color 0.3s; }
.filter-show-more:hover { color: var(--clay-dark); }

/* ─── Additional Decorative Elements ────── */
.section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(176,137,104,0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.usp::after { top: -50px; right: -50px; width: 200px; height: 200px; }
.newsletter::after { bottom: -60px; left: -60px; width: 180px; height: 180px; }

/* Rotating decorative dots */
.eco-strip::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: rotateSlowDeco 20s linear infinite;
}
@keyframes rotateSlowDeco { to { transform: translateX(-50%) rotate(360deg); } }

/* ─── Founder Section ────────────────────── */
.founder-section { background: var(--cream-light); }
.founder-photo { border-radius: var(--radius-lg); }
.founder-quote {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    border-left: 3px solid var(--clay);
    background: var(--white);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.founder-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}
.founder-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-size: 0.85rem;
    font-style: normal;
    color: var(--clay);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ─── Global overflow fix ──────────────── */
    html, body { overflow-x: hidden; max-width: 100vw; }

    /* ─── Header nav fix ───────────────────── */
    .header { padding: var(--space-sm) 0; }
    .nav { padding: 0 var(--space-md); }
    .nav__logo-img { height: 45px; }
    .header.scrolled .nav__logo-img { height: 40px; }
    .nav__actions { gap: var(--space-sm); }
    .nav__icon { font-size: 1rem; padding: 4px; }
    .nav__hamburger span { width: 22px; }

    /* ─── Mobile menu slide-in ─────────────── */
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        padding: 5rem var(--space-xl) var(--space-xl);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        gap: var(--space-lg);
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1001;
        display: flex;
    }
    .nav__links.open { right: 0; }

    /* ─── Hero section ─────────────────────── */
    .hero { min-height: 90vh; }
    .hero__content { padding: 0 var(--space-md); max-width: 100%; }
    .hero__title { font-size: 2.2rem; }
    .hero__subtitle { font-size: 0.75rem; }
    .hero__desc { font-size: 0.9rem; }
    .hero__ctas { flex-direction: column; align-items: stretch; gap: var(--space-sm); }
    .hero__ctas .btn { text-align: center; }
    .hero__scroll-indicator { display: none; }

    /* ─── Marquee ──────────────────────────── */
    .marquee { padding: var(--space-md) 0; }
    .marquee__track { font-size: 0.8rem; gap: var(--space-md); }

    /* ─── Section spacing ──────────────────── */
    .section { padding: var(--space-2xl) 0; }
    .container { padding: 0 var(--space-md); }
    .section__title { font-size: 1.5rem; }
    .section__title::after { width: 30px; }
    .section__subtitle { font-size: 0.85rem; margin-bottom: var(--space-xl); }

    /* ─── USP cards ────────────────────────── */
    .usp__grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .usp__card { padding: var(--space-lg); }
    .usp__icon { width: 48px; height: 48px; }
    .usp__title { font-size: 1.1rem; }

    /* ─── Product grid ─────────────────────── */
    .products__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
    .product-card__name { font-size: 0.85rem; }
    .product-card__price { font-size: 0.9rem; }
    .product-card__badge { font-size: 0.6rem; padding: 2px 6px; }
    .product-card__overlay { display: none; }

    /* ─── Pre-book CTA ─────────────────────── */
    .prebook-cta__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .prebook-cta__image { aspect-ratio: 16/9; }
    .prebook-cta__title { font-size: 1.5rem; }

    /* ─── Eco strip ────────────────────────── */
    .eco-strip { padding: var(--space-xl) var(--space-md); gap: var(--space-md); flex-wrap: wrap; justify-content: center; }
    .eco-strip__number { font-size: 1.2rem; }
    .eco-strip__label { font-size: 0.65rem; }
    .eco-strip__divider { display: none; }

    /* ─── Blog grid ────────────────────────── */
    .blog-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .blog-card__title { font-size: 1rem; }
    .blog-categories { gap: var(--space-xs); }
    .blog-categories a { font-size: 0.75rem; padding: 0.4rem 0.8rem; }

    /* ─── Blog post ────────────────────────── */
    .blog-post__hero { aspect-ratio: 16/9; max-height: 250px; }
    .blog-post__header { padding: var(--space-lg) 0; }
    .blog-post__title { font-size: 1.5rem; }
    .blog-post__meta { flex-direction: column; align-items: center; gap: var(--space-xs); font-size: 0.8rem; }
    .blog-post__content { font-size: 0.95rem; padding: 0 var(--space-sm); }

    /* ─── Product detail ───────────────────── */
    .product-detail__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .product-gallery__main { aspect-ratio: 3/4; }
    .product-gallery__thumbs { gap: var(--space-xs); }
    .product-gallery__thumb { width: 55px; height: 70px; }
    .product-info__name { font-size: 1.3rem; }
    .product-info__current { font-size: 1.3rem; }
    .product-info__compare { font-size: 0.9rem; }
    .product-info__save { font-size: 0.65rem; }
    .product-info__desc { font-size: 0.85rem; }
    .product-info__tags { gap: var(--space-xs); }
    .tag { font-size: 0.6rem; padding: 3px 8px; }
    .size-options { gap: var(--space-xs); }
    .size-btn { padding: 0.4rem 0.7rem; font-size: 0.8rem; min-width: 50px; }
    .size-btn__stock { font-size: 0.55rem; }
    .btn--lg { padding: 0.85rem 1.5rem; font-size: 0.8rem; }
    .accordion__header { font-size: 0.9rem; }
    .accordion__body { font-size: 0.8rem; }

    /* ─── Cart page ────────────────────────── */
    .cart-page__layout { grid-template-columns: 1fr; }
    .cart-table th { font-size: 0.65rem; padding: var(--space-sm) var(--space-xs); }
    .cart-table td { padding: var(--space-sm) var(--space-xs); }
    .cart-table__product-inner { gap: var(--space-sm); }
    .cart-table__img { width: 50px; }
    .cart-table__name { font-size: 0.8rem; }
    .qty-control__btn { width: 26px; height: 26px; font-size: 0.85rem; }

    /* ─── Checkout ─────────────────────────── */
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-step__title { font-size: 1rem; }
    .checkout-step__num { width: 28px; height: 28px; font-size: 0.75rem; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group input, .form-group textarea, .form-group select { font-size: 16px; /* prevents iOS zoom */ }
    .payment-option { padding: var(--space-md); }
    .payment-option__label { font-size: 0.85rem; }
    .checkout-summary { position: static; }

    /* ─── Cart drawer ──────────────────────── */
    .cart-drawer__panel { width: 100%; max-width: 100vw; }
    .cart-drawer__header { padding: var(--space-md); }
    .cart-drawer__body { padding: var(--space-md); }
    .cart-drawer__footer { padding: var(--space-md); }
    .cart-item__image { width: 60px; }
    .cart-item__name { font-size: 0.85rem; }

    /* ─── Search overlay ───────────────────── */
    .search-overlay__heading { font-size: 1.3rem; }
    .search-overlay__input { font-size: 1rem; padding: 0.9rem 1rem 0.9rem 2.8rem; }
    .search-overlay__close { top: 1rem; right: 1rem; font-size: 1.5rem; }
    .search-overlay__tags { gap: var(--space-xs); }
    .search-overlay__tag { font-size: 0.75rem; padding: 0.4rem 0.8rem; }

    /* ─── About page ───────────────────────── */
    .about-hero { min-height: 50vh; padding: var(--space-2xl) var(--space-md); margin-top: 4rem; }
    .about-hero__title { font-size: 2rem; }
    .about-hero__subtitle { font-size: 0.9rem; }
    .about-split { grid-template-columns: 1fr; gap: var(--space-lg); }
    .about-split--reverse .about-split__image { order: 0; }
    .about-split__image { aspect-ratio: 16/9; }
    .about-split__title { font-size: 1.3rem; }
    .about-split__text { font-size: 0.9rem; }

    /* ─── Contact page ─────────────────────── */
    .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .contact-header { padding: 5rem 0 var(--space-sm); }
    .contact-header__title { font-size: 1.8rem; }
    .contact-form__row { grid-template-columns: 1fr; }
    .contact-form__input { font-size: 16px; }

    /* ─── Pre-book page ────────────────────── */
    .prebook-header { padding: 5rem 0 var(--space-sm); }
    .prebook-header__title { font-size: 1.8rem; }
    .prebook-form-wrap { padding: var(--space-lg); }
    .prebook-form__row { grid-template-columns: 1fr; }
    .prebook-form__input { font-size: 16px; }
    .prebook-product__card { flex-direction: column; text-align: center; }
    .prebook-product__image { width: 100px; margin: 0 auto; }

    /* ─── Timeline mobile (vertical) ───────── */
    .timeline { flex-direction: column; gap: var(--space-lg); align-items: flex-start; padding-left: var(--space-xl); }
    .timeline::before { top: 0; bottom: 0; left: 24px; width: 2px; height: 100%; right: auto; }
    .timeline__step { display: flex; align-items: center; gap: var(--space-md); text-align: left; width: 100%; }
    .timeline__icon { margin: 0; flex-shrink: 0; width: 40px; height: 40px; font-size: 0.85rem; }
    .timeline__label { font-size: 0.8rem; }
    .timeline__desc { font-size: 0.7rem; padding: 0; }

    /* ─── Footer ───────────────────────────── */
    .footer { padding: var(--space-2xl) 0 var(--space-lg); }
    .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); padding: 0 var(--space-md); }
    .footer__logo { height: 40px; }
    .footer__about { font-size: 0.8rem; }
    .footer__heading { font-size: 0.9rem; margin-bottom: var(--space-md); }
    .footer__links a { font-size: 0.8rem; }
    .footer__contact { font-size: 0.8rem; }
    .footer__newsletter { flex-direction: column; }
    .footer__newsletter-input { font-size: 16px; }
    .footer__bottom { padding: var(--space-md) var(--space-md) 0; font-size: 0.7rem; }
    .footer__social { margin-bottom: var(--space-md); }

    /* ─── Newsletter ───────────────────────── */
    .newsletter__form { flex-direction: column; gap: var(--space-sm); }
    .newsletter__input { font-size: 16px; border-radius: var(--radius-xl); }
    .newsletter__title { font-size: 1.3rem; }
    .newsletter__text { font-size: 0.85rem; }

    /* ─── Breadcrumb ───────────────────────── */
    .breadcrumb-section { padding: 5rem 0 var(--space-sm); }
    .breadcrumb { font-size: 0.7rem; }

    /* ─── Artisan grid ─────────────────────── */
    .artisan-grid { grid-template-columns: 1fr; }

    /* ─── Fabric grid ──────────────────────── */
    .fabric-grid { grid-template-columns: 1fr; }

    /* ─── Size table ───────────────────────── */
    .size-table { font-size: 0.75rem; }
    .size-table th, .size-table td { padding: var(--space-sm); }

    /* ─── Policy pages ─────────────────────── */
    .policy-content h2 { font-size: 1.1rem; }
    .policy-content p, .policy-content li { font-size: 0.85rem; }

    /* ─── Founder section ──────────────────── */
    .founder-quote { padding: var(--space-md); }
    .founder-quote blockquote { font-size: 0.95rem; }

    /* ─── WhatsApp float ───────────────────── */
    .whatsapp-float { width: 48px; height: 48px; font-size: 1.2rem; bottom: 1rem; right: 1rem; }

    /* ─── Toast ─────────────────────────────── */
    .toast { top: 4.5rem; right: 1rem; left: 1rem; text-align: center; font-size: 0.8rem; }

    /* ─── Shop filters mobile ──────────────── */
    .shop-header { padding: var(--space-sm) 0 var(--space-md); }
    .shop-header__title { font-size: 1.5rem; }
    .shop-mobile-controls { display: flex !important; }
    .filter-select--mobile { font-size: 0.8rem; }

    /* ─── Order summary mobile ─────────────── */
    .order-summary { position: static; margin-top: var(--space-lg); }
}

/* ─── Extra small screens (iPhone SE etc.) ─── */
@media (max-width: 375px) {
    .nav__logo-img { height: 38px; }
    .hero__title { font-size: 1.8rem; }
    .products__grid { grid-template-columns: 1fr; }
    .eco-strip__item { flex: 0 0 45%; }
    .btn { padding: 0.7rem 1.5rem; font-size: 0.78rem; }
    .section__title { font-size: 1.3rem; }
}

/* ─── Tablet fixes ─────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
    .products__grid { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .about-split { gap: var(--space-xl); }
    .prebook-cta__grid { grid-template-columns: 1fr 1fr; }
}
