/* Root Variables */

:root {
    --background: #f7f4f0;
    --foreground: #201a1b;
    --border: #e0d6cf;
    --input: #ffffff;
    --primary: #6f0f14;
    --primary-foreground: #ffffff;
    --secondary: #f1e8e2;
    --secondary-foreground: #4a2a2e;
    --muted: #ede5df;
    --muted-foreground: #8a7a74;
    --success: #c6d9b8;
    --success-foreground: #21320d;
    --accent: #c89a4b;
    --accent-foreground: #2a1707;
    --destructive: #b3312c;
    --destructive-foreground: #ffffff;
    --warning: #e7c97a;
    --warning-foreground: #3a2a06;
    --card: #ffffff;
    --card-foreground: #201a1b;
    --sidebar: #f5efeb;
    --sidebar-foreground: #4a2a2e;
    --sidebar-primary: #6f0f14;
    --sidebar-primary-foreground: #ffffff;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --radius-xl: 16px;
    --font-family-body: Inter;
}


/* Base Styles */

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

.export-wrapper {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-family-body);
    line-height: 1.7;
    direction: ltr;
    text-align: left;
}

img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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


/* Layout Utilities */

.page-root {
    min-height: 812px;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 96px 0;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 20px;
}

p {
    font-size: 15px;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}


/* Components */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 28px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    transition: background-color 280ms ease-in-out, color 280ms ease-in-out, transform 280ms ease-in-out, box-shadow 280ms ease-in-out;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 999px;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    font-size: 12px;
    font-weight: 500;
    transition: background-color 280ms ease-in-out, color 280ms ease-in-out;
}

.card {
    background-color: var(--card);
    color: var(--card-foreground);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: box-shadow 280ms ease-in-out, transform 280ms ease-in-out, border-color 280ms ease-in-out;
}

.divider-soft {
    height: 1px;
    width: 72px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: 24px 0 28px 0;
    transition: opacity 280ms ease-in-out;
}


/* Header Hero */

header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: rgba(247, 244, 240, 0.98);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 14px rgba(32, 26, 27, 0.04);
}

.nav-bar {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    cursor: pointer;
}

.logo-mark {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    /* background: radial-gradient(circle at 30% 2 rgba(255, 255, 255, 0.7), var(--primary)); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-size: 44px;
    overflow: hidden;
    padding: 16px;
    box-shadow: 0 10px 26px rgba(32, 26, 27, 0.16);
    transition: transform 240ms ease-out, box-shadow 240ms ease-out;
}

.logo-sub {
    font-size: 11px;
    color: var(--muted-foreground);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 15px;
    color: var(--muted-foreground);
    white-space: nowrap;
}

.nav-links a {
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

.nav-link-active {
    color: var(--primary);
    font-weight: 600;
    border-bottom-color: var(--primary);
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 0% 0%, rgba(200, 154, 75, 0.2) 0, transparent 52%), radial-gradient(circle at 100% 100%, rgba(111, 15, 20, 0.12) 0, transparent 55%), var(--background);
}

.hero-inner {
    padding-top: 104px;
    padding-bottom: 104px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
}

.hero-kicker {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-title {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--primary);
}

.hero-sub {
    font-size: 15px;
    max-width: 460px;
    margin-bottom: 24px;
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-meta-pill {
    padding: 4px 12px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    font-size: 11px;
    color: var(--muted-foreground);
}

.hero-image-shell {
    position: relative;
    border-radius: 40px;
    background: linear-gradient(145deg, #f3e7db 0%, #e5d4c5 40%, #d7c3b2 100%);
    padding: 18px;
}

.hero-image-inner {
    border-radius: 32px;
    overflow: hidden;
    background: #d8c7b6;
}

.hero-image-inner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-arc {
    position: absolute;
    inset: auto 12% -40px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(200, 154, 75, 0.35);
    border-top-color: transparent;
    border-left-color: transparent;
}

.hero-inner-full {
    padding-top: 48px;
    padding-bottom: 48px;
}

.hero-image-full-shell {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background-color: var(--muted);
}

.hero-image-full {
    border-radius: 40px;
    overflow: hidden;
}

.hero-image-full img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.hero-overlay-minimal {
    position: absolute;
    inset: auto 40px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 999px;
    background-color: rgba(247, 244, 240, 0.94);
    border: 1px solid rgba(224, 214, 207, 0.9);
}

.hero-overlay-logo {
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

.hero-overlay-text {
    font-size: 14px;
    color: var(--muted-foreground);
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.hero-overlay-minimal .btn-primary {
    padding-inline: 24px;
}


/* Sections */

.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading h2 {
    margin-bottom: 8px;
}

.section-heading p {
    max-width: 540px;
    margin: 0 auto;
}


/* About */

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-text-block p {
    margin-bottom: 12px;
}

.about-image-card {
    border-radius: 32px;
    overflow: hidden;
    background-color: var(--muted);
    padding: 10px;
    position: relative;
}

.about-curve {
    position: absolute;
    inset: 10% -40px auto auto;
    width: 160px;
    height: 80px;
    border-radius: 160px 160px 0 0;
    border: 1px solid rgba(200, 154, 75, 0.28);
    border-bottom: none;
}

.about-image-inner {
    border-radius: 24px;
    overflow: hidden;
}

.about-image-inner img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
}


/* Products */

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

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

.product-card {
    display: block;
    text-decoration: none;
    border-radius: 24px;
    background-color: var(--card);
    border: 1px solid rgba(224, 214, 207, 0.8);
    padding: 18px 18px 22px 18px;
}

.product-image,
.product-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--muted);
    padding: 0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img,
.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title,
.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--foreground);
}

.product-text,
.product-cat {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}


/* Why Asala */

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
}

.feature-card {
    border-radius: 24px;
    padding: 24px 22px 22px 22px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(224, 214, 207, 0.7);
}

.feature-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background-color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    cursor: pointer;
    transition: transform 240ms ease-in-out, box-shadow 240ms ease-in-out, background-color 240ms ease-in-out, filter 240ms ease-in-out;
}

.feature-icon-wrap iconify-icon {
    font-size: 20px;
    color: var(--secondary-foreground);
    transition: color 240ms ease-in-out, transform 240ms ease-in-out, filter 240ms ease-in-out;
}

.feature-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 13px;
    margin-bottom: 0;
}


/* Trust & CTA */

.trust-section {
    padding: 96px 0 88px 0;
    text-align: center;
    background: radial-gradient(circle at top, rgba(200, 154, 75, 0.08), transparent 60%);
}

.trust-shell {
    max-width: 520px;
    margin: 0 auto;
    padding: 32px 28px 30px 28px;
    border-radius: 28px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(224, 214, 207, 0.8);
}

.trust-shell .chip {
    margin-bottom: 12px;
}

.trust-shell .divider-soft {
    margin: 12px auto 22px auto;
}

.trust-statement {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary);
    letter-spacing: 0.04em;
}

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

.trust-image-card {
    border-radius: 22px;
    overflow: hidden;
    background-color: var(--muted);
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.trust-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.trust-image-card:hover img {
    transform: scale(1.02);
}

.trust-sub {
    max-width: 420px;
    margin: 0 auto;
    font-size: 14px;
}

.cta-shell {
    max-width: 420px;
    margin: 0 auto;
    padding: 18px 18px 16px 18px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(224, 214, 207, 0.9);
    box-shadow: 0 14px 30px rgba(32, 26, 27, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-height: 280px;
}


/* Motion Styles */

.hero-image-full-shell {
    animation: asalaSectionFadeUp 360ms ease-in-out both;
}

#highlights,
#about,
#gallery,
#trust,
#cta {
    animation: asalaSectionFadeUp 380ms ease-in-out both;
}

.product-card,
.feature-card,
.trust-image-card {
    animation: asalaCardStagger 400ms ease-in-out both;
}

.footer-main {
    animation: asalaFooterFade 360ms ease-in-out both;
}

@keyframes asalaSectionFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes asalaCardStagger {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes asalaFooterFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Product Slider Styles */

.product-filter-pill {
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background-color: rgba(247, 244, 240, 0.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 260ms ease-in-out, color 260ms ease-in-out, transform 260ms ease-in-out, box-shadow 260ms ease-in-out;
}

.product-filter-pill-active {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.product-slider-shell {
    padding: 24px 24px 26px 24px;
    border-radius: 28px;
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(224, 214, 207, 0.9);
    animation: productSliderFadeUp 260ms ease-in-out both;
}

.product-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.product-slider-label {
    font-size: 13px;
    color: var(--muted-foreground);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-slider-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-arrow {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background-color: rgba(247, 244, 240, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 260ms ease-in-out, transform 260ms ease-in-out, box-shadow 260ms ease-in-out;
}

.slider-arrow-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow-icon iconify-icon {
    font-size: 16px;
    color: var(--foreground);
    transition: color 260ms ease-in-out, transform 260ms ease-in-out;
}

.product-slider-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scroll-behavior: smooth;
}

@keyframes productSliderFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Trust New Products Styles */

.new-products-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.new-product-pill {
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background-color: rgba(247, 244, 240, 0.9);
    font-size: 13px;
    color: var(--foreground);
    cursor: pointer;
    white-space: nowrap;
}

.new-product-label {
    font-size: 13px;
}


/* Footer Styles */

.footer-container {
    padding-top: 16px;
    padding-bottom: 16px;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 10px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.footer-logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.22));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
}

.footer-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
    white-space: nowrap;
}

.footer-slogan {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.76);
    text-align: center;
    flex: 1;
    white-space: nowrap;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-right-block {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-icon-shell {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer-icon-shell iconify-icon {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.64);
}

footer#contact {
    background-color: var(--primary);
    color: var(--primary-foreground);
    margin-top: 32px;
}


/* =========================================
   About Us Page Styles
   ========================================= */

.page-about {
    background-color: var(--background);
    /* Layout */
    .section-xl {
        padding: 104px 0 96px;
    }
    .section-lg {
        padding: 88px 0 80px;
    }
    .section-md {
        padding: 72px 0 64px;
    }
    .grid-hero-split {
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 64px;
        align-items: center;
    }
    .grid-two {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }
    /* Typography Overrides */
    .eyebrow {
        font-size: 12px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--accent);
        font-weight: 500;
    }
    .heading-hero {
        font-size: 42px;
        font-weight: 500;
        letter-spacing: -0.03em;
        color: var(--primary);
    }
    .text-lead {
        font-size: 16px;
        color: var(--muted-foreground);
    }
    .heading-xl {
        font-size: 32px;
        font-weight: 500;
        letter-spacing: -0.02em;
        color: var(--primary);
    }
    .heading-lg {
        font-size: 22px;
        font-weight: 500;
        color: var(--primary);
    }
    .heading-sm {
        font-size: 16px;
        font-weight: 500;
        color: var(--primary);
    }
    .text-body {
        font-size: 14px;
        color: var(--muted-foreground);
    }
    .label-pill {
        font-size: 12px;
        color: var(--muted-foreground);
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
    /* Spacing utilities */
    .space-y-3>*+* {
        margin-top: 12px;
    }
    .space-y-4>*+* {
        margin-top: 16px;
    }
    .space-y-5>*+* {
        margin-top: 20px;
    }
    .space-y-6>*+* {
        margin-top: 24px;
    }
    /* Components */
    .hero-wrap {
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 52px;
        align-items: center;
    }
    .hero-image-frame {
        border-radius: 36px;
        overflow: hidden;
        background-color: var(--card);
        box-shadow: 0 26px 70px rgba(0, 0, 0, 0.1);
        height: 420px;
        position: relative;
        img {
            transition: transform 0.35s ease-in-out;
        }
        &:hover img {
            transform: scale(1.02);
        }
    }
    .hero-copy-shell {
        padding-right: 10px;
    }
    .values-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    .value-card {
        background-color: rgba(255, 255, 255, 0.88);
        border-radius: 24px;
        padding: 22px 20px;
        border: 1px solid rgba(0, 0, 0, 0.03);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        gap: 14px;
        text-align: left;
    }
    .value-icon-wrap {
        width: 56px;
        height: 56px;
        border-radius: 999px;
        background-color: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        iconify-icon {
            font-size: 30px;
        }
    }
    .story-band {
        background-color: var(--card);
        border-radius: 32px;
        padding: 40px 40px 36px;
        border: 1px solid var(--border);
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 48px;
        align-items: center;
    }
    .story-points {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        margin-top: 24px;
    }
    .story-point-label {
        font-size: 13px;
        font-weight: 500;
        color: var(--primary);
        margin-bottom: 4px;
    }
    .story-image {
        border-radius: 28px;
        overflow: hidden;
        height: 320px;
        background-color: var(--card);
        img {
            transition: transform 0.3s ease-in-out;
        }
        &:hover img {
            transform: scale(1.02);
        }
    }
    .gallery-row {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
        margin-top: 32px;
    }
    .gallery-card {
        border-radius: 22px;
        overflow: hidden;
        background-color: var(--muted);
        height: 190px;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }
        &:hover img {
            transform: scale(1.03);
        }
    }
    .craft-note {
        margin-top: 32px;
        padding: 24px 26px;
        border-radius: 24px;
        background-color: var(--secondary);
        border: 1px solid var(--border);
    }
    .founder-strip {
        margin-top: 40px;
        padding: 26px 28px;
        border-radius: 24px;
        background-color: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
    .founder-meta {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .founder-avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        overflow: hidden;
    }
    /* Motion/Animation */
    .fade-up {
        opacity: 0;
        transform: translateY(24px);
        animation: fadeUp 0.55s ease-in-out forwards;
    }
    .delay-1 {
        animation-delay: 0.12s;
    }
    .delay-2 {
        animation-delay: 0.22s;
    }
    .delay-3 {
        animation-delay: 0.32s;
    }
    .delay-4 {
        animation-delay: 0.42s;
    }
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Responsive Design */
    @media (max-width: 1024px) {
        .section-xl {
            padding: 88px 0 80px;
        }
        .section-lg {
            padding: 80px 0 72px;
        }
        .section-md {
            padding: 64px 0 56px;
        }
        .hero-wrap {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .story-band {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .gallery-row {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
        .values-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    @media (max-width: 640px) {
        .gallery-row {
            grid-template-columns: 1fr;
        }
        .gallery-card {
            height: auto;
            aspect-ratio: 4/3;
        }
        .values-grid {
            grid-template-columns: 1fr;
        }
        .founder-strip {
            flex-direction: column;
            align-items: flex-start;
        }
    }
}


/* =========================================
   Products Page Styles
   ========================================= */

.page-products {
    .section-spacing {
        padding: 64px 0;
    }
    .page-title-area {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 56px;
    }
    .page-eyebrow {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--accent);
        font-weight: 600;
        margin-bottom: 16px;
        display: block;
    }
    .page-heading {
        font-size: 40px;
        font-weight: 400;
        color: var(--primary);
        letter-spacing: -0.02em;
        margin-bottom: 16px;
    }
    .filter-bar {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 64px;
        flex-wrap: wrap;
    }
    .filter-btn {
        background: var(--secondary);
        border: 1px solid transparent;
        padding: 10px 24px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 500;
        color: var(--muted-foreground);
        transition: all 0.2s;
        &.active {
            background-color: var(--primary);
            color: var(--primary-foreground);
        }
        &:hover:not(.active) {
            background-color: #ebe8e4;
        }
    }
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
        margin-top: 40px;
    }
    .product-card {
        background-color: var(--card);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--border);
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        &:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }
    }
    .product-image-wrap {
        width: 100%;
        height: 280px;
        background-color: var(--muted);
        overflow: hidden;
        position: relative;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease-in-out;
        }
    }
    .product-card:hover .product-image-wrap img {
        transform: scale(1.05);
    }
    .product-info {
        padding: 18px 20px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
    }
    .product-name {
        font-size: 16px;
        font-weight: 500;
        color: var(--primary);
        margin-bottom: 4px;
    }
    .product-cat {
        font-size: 13px;
        color: var(--muted-foreground);
    }
    .product-price {
        font-size: 18px;
        font-weight: 600;
        color: var(--accent);
        white-space: nowrap;
    }
    /* Hidden state for filtering */
    .product-card.hidden {
        display: none;
    }
    /* Responsive */
    @media (max-width: 768px) {
        .product-grid {
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 16px;
        }
        .product-image-wrap {
            height: 200px;
        }
        .product-info {
            padding: 14px 16px;
        }
        .product-name {
            font-size: 14px;
        }
        .product-price {
            font-size: 16px;
        }
    }
    .product-card {
        display: flex;
        flex-direction: column;
        gap: 20px;
        background: transparent;
        border: none;
        /* override home styles */
        padding: 0;
        /* override home styles */
        .product-image-wrap {
            position: relative;
            aspect-ratio: 1;
            background-color: var(--secondary);
            border-radius: 24px;
            overflow: hidden;
            transition: transform 0.4s ease;
            img {
                transition: transform 0.6s ease;
            }
        }
        &:hover .product-image-wrap {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            img {
                transform: scale(1.05);
            }
        }
        .product-info {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .product-name {
            font-size: 18px;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .product-price {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary);
        }
    }
}


/* =========================================
   Contact Page Styles
   ========================================= */

.page-contact {
    .section-xl {
        padding: 104px 0 96px;
    }
    .grid-contact {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
        gap: 64px;
        align-items: start;
        margin-top: 64px;
    }
    .contact-card {
        background-color: var(--card);
        border-radius: 24px;
        padding: 32px;
        border: 1px solid var(--border);
        height: 100%;
    }
    .contact-detail-row {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }
    .contact-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        flex-shrink: 0;
        iconify-icon {
            font-size: 20px;
        }
    }
    .form-frame {
        background-color: rgba(255, 255, 255, 0.6);
        border-radius: 32px;
        padding: 48px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.02);
    }
    .input-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }
    .input-label {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--muted-foreground);
        margin-left: 4px;
    }
    .input-field {
        height: 56px;
        border-radius: 16px;
        background-color: #fafafa;
        border: 1px solid rgba(0, 0, 0, 0.08);
        /* Softer border */
        padding: 0 20px;
        font-size: 15px;
        color: var(--foreground);
        width: 100%;
        display: flex;
        align-items: center;
        transition: all 0.2s ease;
        outline: none;
    }
    .input-field:focus {
        background-color: #ffffff;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(200, 154, 75, 0.1);
        /* Subtle focus ring */
    }
    .input-field-area {
        height: 160px;
        padding: 20px;
        align-items: flex-start;
        resize: vertical;
        font-family: inherit;
    }
    .btn-submit {
        height: 56px;
        border-radius: 999px;
        background-color: var(--primary);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 15px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        cursor: pointer;
        width: 100%;
        border: none;
        margin-top: 12px;
        box-shadow: 0 10px 20px rgba(200, 154, 75, 0.2);
        transition: transform 0.2s, box-shadow 0.2s;
        &:hover {
            background-color: #b08d55;
            /* Slightly darker */
            transform: translateY(-2px);
            box-shadow: 0 14px 28px rgba(200, 154, 75, 0.3);
        }
        &:active {
            transform: translateY(0);
            box-shadow: 0 6px 12px rgba(200, 154, 75, 0.2);
        }
    }
}


/* Ensure mobile elements are hidden on desktop by default */

.mobile-nav-toggle,
.mobile-nav-overlay {
    display: none;
}


/* =========================================
   Responsive Design (Media Queries)
   ========================================= */


/* Tablets and smaller (up to 1024px) */

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    .nav-bar {
        height: 100px;
    }
    .logo-mark {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    .logo-group {
        font-size: 20px;
        gap: 12px;
    }
    .nav-links {
        padding: 12px 40px !important;
        gap: 20px !important;
    }
    .nav-menu-items {
        gap: 32px !important;
    }
    .hero-grid,
    .about-grid,
    .hero-wrap,
    .grid-hero-split,
    .story-band {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .page-about .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}


/* Mobile Devices (up to 768px) */

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }
    h1,
    .hero-title,
    .page-heading,
    .heading-hero {
        font-size: 32px;
    }
    h2 {
        font-size: 24px;
    }
    .nav-bar {
        height: 80px;
    }
    /* Hide regular nav on mobile, preparation for hamburger */
    .nav-links {
        display: none !important;
    }
    .mobile-nav-toggle {
        display: flex !important;
    }
    .hero-inner {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .hero-image-inner img,
    .hero-image-full img {
        height: 300px;
    }
    .hero-overlay-minimal {
        inset: auto 20px 20px 20px;
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
    }
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .values-shell {
        padding: 32px 24px !important;
    }
    .product-grid {
        grid-template-columns: 1fr !important;
    }
    .trust-gallery-row,
    .page-about .gallery-row {
        grid-template-columns: 1fr;
    }
    .cta-shell {
        border-radius: 24px;
        padding: 24px;
        max-width: 100%;
    }
    .footer-main {
        flex-direction: column;
        border-radius: 24px;
        padding: 32px 24px;
        gap: 24px;
        text-align: center;
    }
    .footer-brand-block {
        flex-direction: column;
    }
    .footer-right-block {
        flex-direction: column;
        gap: 16px;
    }
    .page-contact .grid-contact {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .page-contact .form-frame {
        padding: 24px;
    }
    .page-contact .grid-two {
        grid-template-columns: 1fr;
    }
    .page-about .story-image,
    .page-about .hero-image-frame {
        height: 280px;
    }
    .page-about .hero-copy-shell {
        padding-right: 0;
    }
    /* Mobile Nav Styles (moved inside media query) */
    .mobile-nav-toggle {
        display: flex !important;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: var(--secondary);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
        transition: background-color 0.2s;
        iconify-icon {
            pointer-events: none;
            font-size: 24px;
        }
    }
    .mobile-nav-toggle:hover {
        background-color: var(--muted);
    }
    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s;
        display: block;
    }
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    /* The Drawer itself */
    .mobile-menu-drawer {
        position: absolute;
        top: 0;
        right: 0;
        width: 320px;
        height: 100%;
        background-color: #ffffff !important;
        padding: 40px 24px;
        z-index: 10002;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    /* LTR adjustment: if language is English, drawer on left */
    [dir="ltr"] .mobile-menu-drawer {
        right: auto;
        left: 0;
        transform: translateX(-100%);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    }
    .mobile-nav-overlay.active .mobile-menu-drawer {
        transform: translateX(0);
    }
    .mobile-nav-overlay.active .mobile-menu-links a {
        opacity: 1;
        transform: translateY(0);
    }
    .mobile-close {
        align-self: flex-end;
        background: var(--secondary);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: none;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--primary);
        margin-bottom: 40px;
    }
    /* RTL/LTR Close button alignment */
    [dir="rtl"] .mobile-close {
        align-self: flex-start;
    }
    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-top: 20px;
        width: 100%;
        align-items: flex-start;
        /* Default for LTR */
    }
    [dir="rtl"] .mobile-menu-links {
        align-items: flex-end;
        /* Align to right for RTL */
        text-align: right;
    }
    [dir="ltr"] .mobile-menu-links {
        text-align: left;
    }
    .mobile-menu-links a {
        font-size: 24px;
        font-weight: 400;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.15em;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        text-decoration: none;
        display: block;
        padding: 10px 0;
    }
    /* Staggered entry animations */
    .mobile-menu-links a:nth-child(1) {
        transition-delay: 0.1s;
    }
    .mobile-menu-links a:nth-child(2) {
        transition-delay: 0.15s;
    }
    .mobile-menu-links a:nth-child(3) {
        transition-delay: 0.2s;
    }
    .mobile-menu-links a:nth-child(4) {
        transition-delay: 0.25s;
    }
    .mobile-menu-links a:active {
        opacity: 0.6;
    }
    .mobile-lang-switcher {
        margin-top: 40px;
        /* Position after menu links */
        display: flex;
        background: rgba(0, 0, 0, 0.03);
        padding: 6px;
        border-radius: 999px;
        width: fit-content;
        align-self: center;
        margin-bottom: 20px;
    }
    .mobile-lang-switcher a {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.1em;
        padding: 10px 24px;
        border-radius: 999px;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    .mobile-lang-switcher a.active {
        background: var(--primary);
        color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}
