/**
 * AREACH Front Office — Custom CSS Architecture
 * No Bootstrap. No Tailwind.
 */

/* ==========================================================================
   Variables
   ========================================================================== */

:root {
    --color-primary: #1a1a2e;
    --color-primary-light: #2d2d44;
    --color-accent: #c9a96e;
    --color-accent-hover: #b8935a;
    --color-text: #333333;
    --color-text-muted: #6b7280;
    --color-text-inverse: #ffffff;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f7f5;
    --color-bg-dark: #1a1a2e;
    --areach-bg: #F7F1E8;
    --color-border: #e5e7eb;
    --color-border-light: #f0f0f0;

    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;

    --container-max: 1200px;
    --container-padding: 1.25rem;

    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;

    --header-height: 100px;

    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    background:
        linear-gradient(
            180deg,
            #F8F1E7 0%,
            #F6EDE1 38%,
            #FAF5EE 72%,
            #FBF7F1 100%
        );
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--color-primary);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }

p {
    margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--spacing-md);
    z-index: 10000;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-primary);
    color: var(--color-text-inverse);
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-medium);
}

.skip-link:focus {
    top: var(--spacing-md);
}

/* ==========================================================================
   Container
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

/* ==========================================================================
   Grid
   ========================================================================== */

.grid {
    display: grid;
    gap: var(--spacing-lg);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    line-height: 1;
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast),
                color var(--transition-fast),
                border-color var(--transition-fast),
                transform var(--transition-fast);
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}

.btn--primary:hover {
    background-color: var(--color-primary-light);
    color: var(--color-text-inverse);
}

.btn--accent {
    background-color: var(--color-accent);
    color: var(--color-text-inverse);
}

.btn--accent:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-text-inverse);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn--outline:hover {
    background-color: var(--color-primary);
    color: var(--color-text-inverse);
}

/* ==========================================================================
   Inputs
   ========================================================================== */

.input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-sm);
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition-fast),
                box-shadow var(--transition-fast);
}

.input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}

.input::placeholder {
    color: var(--color-text-muted);
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
    background-color: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition-base),
                transform var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card__body {
    padding: var(--spacing-lg);
}

.card__title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.card__text {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

/* ==========================================================================
   Site Layout
   ========================================================================== */

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    min-height: 50vh;
    background:
        linear-gradient(
            180deg,
            #F8F1E7 0%,
            #F6EDE1 38%,
            #FAF5EE 72%,
            #FBF7F1 100%
        );
}

/* ==========================================================================
   Header / Navbar — luxury AREACH
   ========================================================================== */

.areach-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #FFFDFC;
    border-bottom: 1px solid rgba(74, 36, 18, 0.08);
}

.areach-navbar {
    width: min(100% - 48px, 1340px);
    margin-inline: auto;
}

.areach-navbar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 110px;
}

.areach-navbar__left {
    justify-self: start;
    display: flex;
    align-items: center;
}

.areach-navbar__menu {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.areach-navbar__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2F190F;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0;
    position: relative;
    text-decoration: none;
    transition: color 150ms ease;
}

.areach-navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #B8894F;
    transition: width 250ms ease;
}

.areach-navbar__link:hover::after,
.areach-navbar__link--active::after {
    width: 100%;
}

.areach-navbar__link:hover {
    color: #B8894F;
}

.areach-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    justify-self: center;
    white-space: nowrap;
}

.areach-wordmark {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.6rem, 3.8vw, 4.4rem);
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 0.95;
    color: #4A2412;
    text-transform: uppercase;
}

.areach-wordmark:hover {
    color: #4A2412;
}

.areach-tagline {
    margin-top: 0.2rem;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #7A5138;
    white-space: nowrap;
}

.areach-navbar__right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.areach-navbar__lang {
    position: relative;
}

.areach-navbar__lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    height: 40px;
    padding: 0 0.5rem;
    color: #2F190F;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 150ms ease;
}

.areach-navbar__lang-toggle:hover {
    color: #B8894F;
}

.areach-navbar__lang-toggle svg {
    display: block;
    flex-shrink: 0;
}

.areach-navbar__lang-icon {
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

.areach-navbar__lang-code {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.areach-navbar__lang-chevron {
    display: block;
    flex-shrink: 0;
    transition: transform 150ms ease;
}

.areach-navbar__lang.is-open .areach-navbar__lang-chevron {
    transform: rotate(180deg);
}

.areach-navbar__lang-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background-color: #FFFDFC;
    border: 1px solid rgba(74, 36, 18, 0.1);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 150ms ease,
                visibility 150ms ease,
                transform 150ms ease;
    z-index: 100;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
}

.areach-navbar__lang.is-open .areach-navbar__lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.areach-navbar__lang-option {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    color: #2F190F;
    text-decoration: none;
    transition: background-color 150ms ease;
}

.areach-navbar__lang-option:hover {
    background-color: rgba(74, 36, 18, 0.04);
}

.areach-navbar__lang-option.is-active {
    font-weight: 600;
    color: #B8894F;
}

.areach-navbar__cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #2F190F;
    text-decoration: none;
    transition: color 150ms ease;
}

.areach-navbar__cart:hover {
    color: #B8894F;
}

.areach-navbar__cart svg {
    display: block;
}

.areach-navbar__cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 9px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    color: #FFFDFC;
    background-color: #4A2412;
    border-radius: 50%;
}

/* Mobile toggle — hidden on desktop */
.areach-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #2F190F;
}

.areach-mobile-toggle svg {
    display: block;
}

.areach-mobile-toggle:focus-visible {
    outline: 2px solid #B8894F;
    outline-offset: 2px;
}

/* Mobile drawer — hidden by default */
.areach-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background-color: #FFFDFC;
    flex-direction: column;
    justify-content: flex-start;
    padding: calc(var(--header-height) + 1.5rem) 2rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 250ms ease;
    z-index: 999;
    overflow-y: auto;
    display: none;
}

.areach-mobile-nav.is-open {
    transform: translateX(0);
}

.areach-mobile-nav__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.areach-mobile-nav__menu li {
    width: 100%;
    border-bottom: 1px solid rgba(74, 36, 18, 0.06);
}

.areach-mobile-nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #2F190F;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 150ms ease;
}

.areach-mobile-nav__link:hover,
.areach-mobile-nav__link--active {
    color: #B8894F;
}

/* Overlay */
.areach-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 250ms ease;
}

.areach-overlay.is-visible {
    opacity: 1;
}

.areach-overlay[hidden] {
    display: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

/* ==========================================================================
   Site Footer — Luxury Redesign
   ========================================================================== */

.site-footer {
    position: relative;
    color: #F7EFE4;
    margin-top: auto;
    overflow: hidden;
}

.site-footer__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/footer/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.site-footer__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(43, 26, 18, 0.58),
        rgba(43, 26, 18, 0.76)
    );
    z-index: 1;
}

.site-footer__inner {
    position: relative;
    z-index: 2;
    padding-block: 3.5rem 2rem;
}

/* ── Newsletter ── */

.footer-newsletter {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(207, 169, 104, 0.2);
}

.footer-newsletter__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFDFC;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.footer-newsletter__text {
    font-size: 0.9rem;
    color: rgba(247, 239, 228, 0.75);
    max-width: 500px;
    margin: 0 auto 1.25rem;
    line-height: 1.6;
}

.footer-newsletter__form {
    display: flex;
    gap: 0.5rem;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.footer-newsletter__input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(207, 169, 104, 0.3);
    border-radius: 4px;
    background: rgba(255, 253, 252, 0.1);
    color: #FFFDFC;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-newsletter__input::placeholder {
    color: rgba(247, 239, 228, 0.5);
}

.footer-newsletter__input:focus {
    border-color: #CFA968;
    background: rgba(255, 253, 252, 0.18);
}

.footer-newsletter__btn {
    flex-shrink: 0;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    background: #CFA968;
    color: #2B1A18;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-newsletter__btn:hover {
    background: #dbb87a;
}

.footer-newsletter__msg {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #CFA968;
    margin-bottom: 1rem;
}

/* ── Columns ── */

.footer-cols {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
}

.footer-col__title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #CFA968;
    margin-bottom: 1.25rem;
}

/* Brand */

.footer-brand__name {
    display: block;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #FFFDFC;
    margin-bottom: 0.25rem;
}

.footer-brand__tagline {
    display: block;
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 0.04em;
    color: #CFA968;
    margin-bottom: 1rem;
}

.footer-brand__desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(247, 239, 228, 0.7);
    max-width: 320px;
}

/* Contact + Nav lists */

.footer-col__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col__list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: rgba(247, 239, 228, 0.75);
    line-height: 1.5;
}

.footer-col__list svg {
    flex-shrink: 0;
}

.footer-col__list a {
    color: rgba(247, 239, 228, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col__list a:hover {
    color: #CFA968;
}

.footer-col__list--links li {
    display: block;
    padding: 0;
}

.footer-col__list--links li + li {
    margin-top: 0.5rem;
}

.footer-col__list--links a {
    display: inline-block;
    position: relative;
}

.footer-col__list--links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #CFA968;
    transition: width 0.3s ease;
}

.footer-col__list--links a:hover::after {
    width: 100%;
}

/* ── Instagram CTA ── */

.footer-instagram {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(207, 169, 104, 0.2);
    border-radius: 6px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-instagram:hover {
    border-color: #CFA968;
    background: rgba(207, 169, 104, 0.08);
}

.footer-instagram--disabled {
    opacity: 0.6;
    cursor: default;
}

.footer-instagram__icon {
    margin-bottom: 0.2rem;
}

.footer-instagram__label {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #FFFDFC;
    transition: color 0.3s ease;
}

.footer-instagram:hover .footer-instagram__label {
    color: #CFA968;
}

.footer-instagram__text {
    font-size: 0.8rem;
    color: rgba(247, 239, 228, 0.6);
}

/* ── Trust Row ── */

.footer-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-block: 1.5rem;
    border-top: 1px solid rgba(207, 169, 104, 0.15);
    border-bottom: 1px solid rgba(207, 169, 104, 0.15);
}

.footer-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(247, 239, 228, 0.7);
    white-space: nowrap;
}

.footer-trust__sep {
    width: 1px;
    height: 16px;
    background: rgba(207, 169, 104, 0.25);
    margin: 0 0.5rem;
}

/* ── Copyright ── */

.footer-copyright {
    text-align: center;
    margin-top: 1.5rem;
}

.footer-copyright p {
    font-size: 0.78rem;
    color: rgba(247, 239, 228, 0.45);
    letter-spacing: 0.02em;
    margin-bottom: 0;
}

/* ── Responsive ── */

@media (max-width: 992px) {
    .footer-cols {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }

    .footer-brand__desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer__inner {
        padding-block: 2.5rem 1.5rem;
    }

    .footer-newsletter {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .footer-newsletter__title {
        font-size: 1.3rem;
    }

    .footer-newsletter__form {
        flex-direction: column;
        gap: 0.6rem;
    }

    .footer-newsletter__btn {
        width: 100%;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand__name {
        font-size: 1.5rem;
    }

    .footer-trust {
        flex-direction: column;
        gap: 0.75rem;
        padding-block: 1.25rem;
    }

    .footer-trust__sep {
        display: none;
    }

    .footer-instagram {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-newsletter__title {
        font-size: 1.15rem;
    }
}

/* ── RTL Support ── */

[dir="rtl"] .footer-col__list li {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-col__list--links a::after {
    left: auto;
    right: 0;
}

/* ==========================================================================
   Spacing Helpers
   ========================================================================== */

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.py-sm { padding-block: var(--spacing-sm); }
.py-md { padding-block: var(--spacing-md); }
.py-lg { padding-block: var(--spacing-lg); }
.py-xl { padding-block: var(--spacing-xl); }

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 992px) {
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }

    .areach-navbar__inner {
        height: 80px;
    }

    .areach-navbar__left {
        display: none;
    }

    .areach-navbar__menu {
        display: none;
    }

    .areach-mobile-toggle {
        display: flex;
    }

    .areach-mobile-nav {
        display: flex;
    }

    .areach-mobile-nav__menu {
        display: flex;
    }

    .areach-wordmark {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        letter-spacing: 0.14em;
    }

    .areach-tagline {
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }

    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 1rem;
    }

    .areach-navbar__lang-code {
        display: none;
    }
}

/* ==========================================================================
   RTL Support
   ========================================================================== */

[dir="rtl"] .areach-navbar__lang-list {
    right: auto;
    left: 0;
}

[dir="rtl"] .areach-mobile-nav {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

[dir="rtl"] .areach-mobile-nav.is-open {
    transform: translateX(0);
}

[dir="rtl"] .areach-navbar__cart-count {
    right: auto;
    left: 2px;
}

[dir="rtl"] .footer__list li {
    flex-direction: row-reverse;
}

[dir="rtl"] .areach-navbar__link::after {
    left: auto;
    right: 0;
}

/* ==========================================================================
   Homepage — Section Shared
   ========================================================================== */


.home-section {
    padding-block: var(--spacing-3xl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background-color: var(--color-accent);
    margin: var(--spacing-sm) auto 0;
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.section-link {
    display: inline-block;
    margin-top: var(--spacing-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-link:hover {
    color: var(--color-accent-hover);
}

/* ==========================================================================
   Homepage — Categories
   ========================================================================== */

.home-categories {
    background:
        linear-gradient(180deg, #FAF6F0 0%, #FCF9F5 50%, #FAF5EE 100%);
    padding-block: 1.25rem 1.5rem;
}

.home-categories .section-header {
    margin-bottom: 0.75rem;
}

.categories-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.categories-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    min-width: min-content;
    padding-inline: 0;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 120px;
    max-width: 120px;
    text-align: center;
    color: var(--color-text);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.category-item:hover {
    color: var(--color-primary);
    transform: translateY(-3px) scale(1.05);
}

.category-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--color-bg);
    border: 1px solid rgba(26, 26, 46, 0.12);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.category-item:hover .category-item__icon {
    border-color: var(--color-accent);
    box-shadow: 0 10px 24px rgba(26, 26, 46, 0.12);
    transform: scale(1.05);
}

.category-item__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item__name {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .home-categories {
        padding-block: 1rem 1.25rem;
    }

    .home-categories .section-header {
        margin-bottom: 0.5rem;
    }

    .category-item {
        flex: 0 0 96px;
        max-width: 96px;
    }

    .category-item__icon {
        width: 96px;
        height: 96px;
    }
}

/* ==========================================================================
   Homepage — Product Grid
   ========================================================================== */

.home-products {
    background:
        radial-gradient(circle at 75% 30%, rgba(210, 174, 114, 0.05), transparent 50%),
        linear-gradient(180deg, #FAF6F0 0%, #F7F0E5 100%);
    padding-block: 1.75rem 2rem;
}

.home-products--promo {
    background:
        linear-gradient(180deg, #F5EDE2 0%, #F3E9DB 100%);
}

.home-products .section-header {
    margin-bottom: 1.25rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 270px));
        gap: 1.5rem;
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .product-grid {
        gap: 1.75rem;
    }
}

.product-card {
    background-color: #FFFDFC;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74, 36, 18, 0.07);
    border: 1px solid rgba(184, 137, 79, 0.14);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.product-card:hover {
    box-shadow: 0 16px 36px rgba(74, 36, 18, 0.12);
    transform: translateY(-3px);
}

.product-card__link,
.product-card__body-link {
    display: block;
    color: inherit;
}

.product-card__link:hover,
.product-card__body-link:hover {
    color: inherit;
}

.product-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.product-card:hover .product-card__image {
    transform: scale(1.05);
}

.product-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-accent);
    font-size: var(--font-size-3xl);
}

.product-card__badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: 0.25rem 0.625rem;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-inverse);
    background-color: var(--color-accent);
    border-radius: var(--radius-sm);
    z-index: 2;
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(26, 26, 46, 0.4);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.product-card__overlay-text {
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-inverse);
    background-color: var(--color-accent);
    border-radius: var(--radius-sm);
    transform: translateY(8px);
    transition: transform var(--transition-base);
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card:hover .product-card__overlay-text {
    transform: translateY(0);
}

.product-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem 1rem 1.1rem;
}

.product-card__name {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-bottom: 0;
    line-height: var(--line-height-normal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.product-card__price-current {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
}

.product-card__price-current--sale {
    color: var(--color-accent);
}

.product-card__price-original {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-card__btn {
    width: 100%;
    justify-content: center;
    padding-block: 0.75rem;
}

/* ── Product Card Slideshow ── */

.product-card__slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-card__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 650ms ease-in-out;
}

.product-card__slide.is-active {
    opacity: 1;
    position: relative;
}

/* ── /Slideshow ── */

@media (max-width: 768px) {
    .home-products {
        padding-block: 1.25rem 1.5rem;
    }

    .product-card__body {
        padding: 0.875rem;
    }
}

/* ==========================================================================
   Homepage — Promotion Banner
   ========================================================================== */

.promo-banner {
    padding-block: 0;
}

.promo-banner__inner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-color: var(--color-primary);
    overflow: hidden;
}

.promo-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.65);
}

.promo-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-block: var(--spacing-3xl);
    color: var(--color-text-inverse);
}

.promo-banner__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-inverse);
    margin-bottom: var(--spacing-md);
}

.promo-banner__text {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin-inline: auto;
    margin-bottom: var(--spacing-xl);
    line-height: var(--line-height-relaxed);
}

.promo-banner__btn {
    min-width: 180px;
}

/* ==========================================================================
   Homepage — Responsive
   ========================================================================== */

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-slide__image,
    .hero-slider__track {
        height: 440px;
    }
}

@media (max-width: 768px) {
    .home-section {
        padding-block: var(--spacing-2xl);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .hero-slide__image,
    .hero-slider__track {
        height: 380px;
    }

    .hero-slide__content {
        align-items: center;
        text-align: center;
    }

    .hero-slide__overlay {
        background: rgba(26, 26, 46, 0.55);
    }

    .hero-slider__arrow {
        width: 36px;
        height: 36px;
    }

    .hero-slider__arrow--prev {
        left: var(--spacing-sm);
    }

    .hero-slider__arrow--next {
        right: var(--spacing-sm);
    }

    .categories-list {
        justify-content: flex-start;
        gap: var(--spacing-lg);
    }

    .category-item__icon {
        width: 72px;
        height: 72px;
    }

    .promo-banner__inner {
        min-height: 280px;
    }

}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .product-card__body {
        padding: var(--spacing-sm);
    }

    .hero-slide__image,
    .hero-slider__track {
        height: 320px;
    }
}

[dir="rtl"] .hero-slide__content {
    align-items: flex-end;
}

[dir="rtl"] .hero-slider__arrow--prev {
    left: auto;
    right: var(--spacing-lg);
}

[dir="rtl"] .hero-slider__arrow--next {
    right: auto;
    left: var(--spacing-lg);
}

[dir="rtl"] .product-card__badge {
    left: auto;
    right: var(--spacing-md);
}

@media (max-width: 768px) {
    [dir="rtl"] .hero-slide__content {
        align-items: center;
    }

    [dir="rtl"] .hero-slider__arrow--prev {
        right: var(--spacing-sm);
    }

    [dir="rtl"] .hero-slider__arrow--next {
        left: var(--spacing-sm);
    }
}

/* ==========================================================================
   Pages — Shared
   ========================================================================== */

.page-header {
    background:
        linear-gradient(180deg, #F6EDE1 0%, #F8F1E7 100%);
    padding-block: var(--spacing-2xl);
    text-align: center;
    border-bottom: 1px solid var(--color-border-light);
}

.page-header__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.page-header__subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Shared hero header with background image */

.page-header--hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: none;
    padding-block: 0;
    background: none;
}

.page-header--hero::before {
    content: '';
    position: absolute;
    inset: -10px;
    z-index: 0;
    background: url('../images/header boutique/boutique.png') center center / cover no-repeat;
    transform: scale(1.015);
}

.page-header--hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        rgba(55, 30, 18, 0.12),
        rgba(55, 30, 18, 0.28)
    );
}

.page-header--hero .container {
    position: relative;
    z-index: 2;
}

.page-header--hero .page-header__title {
    color: #FFF8EF;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 0.35rem;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    animation: shopHeaderFadeUp 0.55s ease forwards;
}

.page-header--hero .page-header__subtitle {
    color: #F7EFE4;
    font-size: clamp(0.875rem, 1.4vw, 1.125rem);
    letter-spacing: 0.1em;
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0;
    animation: shopHeaderFadeUp 0.55s ease 0.2s forwards;
}

.page-header--hero .page-header__subtitle::after {
    content: '';
    display: block;
    width: 56px;
    height: 1.5px;
    background: #C89B52;
    margin: 0.7rem auto 0;
    opacity: 0.75;
}

@keyframes shopHeaderFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .page-header--hero {
        min-height: 280px;
    }
    .page-header--hero .page-header__title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}

@media (max-width: 576px) {
    .page-header--hero {
        min-height: 230px;
    }
    .page-header--hero .page-header__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .page-header--hero .page-header__subtitle {
        font-size: 0.85rem;
    }
    .page-header--hero .page-header__subtitle::after {
        width: 40px;
    }
}

/* Boutique modifier (no overrides needed — inherits .page-header--hero) */
.page-header--shop {}

/* Promotions modifier — adds icon */
.page-header--promotions .page-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.6rem;
    vertical-align: middle;
}

.page-header--promotions .page-header__icon svg {
    display: block;
    width: 56px;
    height: 56px;
    opacity: 0;
    animation: promoIconFadeIn 0.6s ease 0.1s forwards;
}

@keyframes promoIconFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .page-header--promotions .page-header__icon svg {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 576px) {
    .page-header--promotions .page-header__icon svg {
        width: 34px;
        height: 34px;
    }
}

.page-section {
    padding-block: var(--spacing-3xl);
}

.page-section--alt {
    background:
        linear-gradient(180deg, #F5EDE2 0%, #F8F1E7 100%);
}

.page-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding-block: var(--spacing-3xl);
    text-align: center;
    color: var(--color-text-muted);
}

.page-empty i {
    font-size: var(--font-size-3xl);
    color: var(--color-accent);
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
    justify-content: center;
}

.shop-filter {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.shop-filter:hover,
.shop-filter.is-active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-inverse);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

/* Product Detail */

.product-detail {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.product-detail__gallery {
    flex: 0 0 55%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-gallery__main {
    position: relative;
    background: #F8F4EF;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 700px;
}

.product-detail__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-detail__image.fade-out {
    opacity: 0;
}

.product-detail__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: var(--font-size-3xl);
    color: var(--color-accent);
}

/* Gallery arrows */

.product-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 253, 252, 0.85);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
    z-index: 2;
}

.product-gallery__main:hover .product-gallery__arrow {
    opacity: 0.7;
}

.product-gallery__arrow:hover {
    opacity: 1 !important;
    background: #FFFDFC;
}

.product-gallery__arrow--prev {
    left: 0.75rem;
}

.product-gallery__arrow--next {
    right: 0.75rem;
}

/* Thumbnails */

.product-gallery__thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.25rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.product-gallery__thumbs::-webkit-scrollbar {
    height: 4px;
}

.product-gallery__thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.product-gallery__thumbs::-webkit-scrollbar-thumb {
    background: rgba(184, 137, 79, 0.25);
    border-radius: 2px;
}

.product-gallery__thumb {
    flex: 0 0 auto;
    width: 72px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    border: 1.5px solid rgba(184, 137, 79, 0.15);
    cursor: pointer;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.65;
}

.product-gallery__thumb:hover {
    opacity: 1;
    border-color: rgba(184, 137, 79, 0.4);
}

.product-gallery__thumb.is-active {
    opacity: 1;
    border-color: #C89B52;
}

/* Product info */

.product-detail__info {
    flex: 1;
    min-width: 0;
}

.product-detail__name {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    color: #4A2412;
}

.product-detail__description {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-xl);
}

.product-detail__price-block {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.product-detail__price {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: #4A2412;
}

.product-detail__price-old {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-detail__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.product-detail__field label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-xs);
    color: #4A2412;
}

.product-detail__stock {
    font-size: var(--font-size-sm);
}

.product-detail__stock--in {
    color: #2d6a4f;
}

.product-detail__stock--out {
    color: #c1121f;
}

/* Responsive */

@media (max-width: 992px) {
    .product-detail {
        flex-direction: column;
    }

    .product-detail__gallery {
        flex: none;
        max-width: 100%;
    }

    .product-gallery__main {
        max-height: 550px;
    }
}

@media (max-width: 576px) {
    .product-gallery__main {
        max-height: 420px;
    }

    .product-gallery__thumb {
        width: 60px;
        height: 76px;
    }

    .product-gallery__arrow {
        width: 32px;
        height: 32px;
        opacity: 0.7;
    }
}

/* Cart */

.checkout-page {
    background:
        radial-gradient(circle at top left, rgba(201, 169, 110, 0.18), transparent 34rem),
        linear-gradient(180deg, #fbf4ea 0%, #f6eadc 52%, #fbf7f1 100%);
}

.checkout-hero {
    padding: 2.2rem 0 0.5rem;
}

.checkout-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    padding: 0.8rem;
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid rgba(74, 36, 18, 0.1);
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(74, 36, 18, 0.08);
}

.checkout-progress__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 0;
    color: #8d705e;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.checkout-progress__dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    border-radius: 50%;
    background: #efe0cf;
    color: #6b3a22;
    border: 1px solid rgba(184, 137, 79, 0.28);
}

.checkout-progress__item.is-active,
.checkout-progress__item.is-complete {
    color: #4a2412;
}

.checkout-progress__item.is-active .checkout-progress__dot {
    background: #4a2412;
    color: #fffaf3;
    border-color: #c9a96e;
    box-shadow: 0 0 0 5px rgba(201, 169, 110, 0.18);
}

.checkout-progress__item.is-complete .checkout-progress__dot {
    background: #c9a96e;
    color: #fffaf3;
}

.checkout-shell {
    padding: 2rem 0 4.5rem;
}

.checkout-layout-luxe {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.checkout-main-panel {
    min-width: 0;
}

.checkout-title-block {
    margin-bottom: 1.45rem;
}

.checkout-eyebrow {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: #b8894f;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.checkout-title-block h1,
.checkout-done-panel h2 {
    margin: 0 0 0.6rem;
    color: #4a2412;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.45rem, 5vw, 4.25rem);
    font-weight: 500;
    letter-spacing: 0.035em;
}

.checkout-title-block p,
.checkout-confirm-text,
.checkout-done-panel p {
    max-width: 42rem;
    color: #735440;
    font-size: 0.98rem;
    line-height: 1.8;
}

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

.checkout-card,
.checkout-done-panel,
.checkout-summary-luxe {
    background: rgba(255, 252, 246, 0.9);
    border: 1px solid rgba(74, 36, 18, 0.1);
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(74, 36, 18, 0.08);
}

.checkout-card,
.checkout-done-panel {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.checkout-card__heading {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.3rem;
}

.checkout-card__heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: #f0dfca;
    color: #8a5a37;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.checkout-card__heading h2,
.checkout-summary-luxe h2 {
    margin: 0;
    color: #4a2412;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 600;
}

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

.checkout-field--full {
    grid-column: 1 / -1;
}

.checkout-field label {
    display: block;
    margin-bottom: 0.45rem;
    color: #5d3826;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-field .input {
    min-height: 3.25rem;
    background: #fffaf3;
    border-color: rgba(74, 36, 18, 0.14);
    border-radius: 15px;
}

.checkout-payment-note {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem;
    background: linear-gradient(135deg, rgba(240, 223, 202, 0.72), rgba(255, 250, 243, 0.8));
    border: 1px solid rgba(184, 137, 79, 0.2);
    border-radius: 18px;
    color: #5d3826;
}

.checkout-payment-note i {
    color: #b8894f;
    font-size: 1.3rem;
}

.checkout-payment-note p {
    margin: 0.25rem 0 0;
    color: #735440;
}

.checkout-primary-action,
.checkout-whatsapp-button,
.checkout-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    min-height: 3.65rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #4a2412, #6b3a22);
    color: #fffaf3;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 34px rgba(74, 36, 18, 0.2);
    transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
}

.checkout-primary-action:hover,
.checkout-whatsapp-button:hover,
.checkout-secondary-action:hover {
    color: #fffaf3;
    transform: translateY(-1px);
    box-shadow: 0 22px 42px rgba(74, 36, 18, 0.24);
}

.checkout-whatsapp-button {
    margin-top: 1.25rem;
    background: linear-gradient(135deg, #4a2412, #b8894f);
}

.checkout-whatsapp-button:disabled {
    cursor: not-allowed;
    opacity: 0.62;
    transform: none;
}

.checkout-alert,
.checkout-confirm-error {
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    color: #7a2d1b;
    background: #fff0ea;
    border: 1px solid rgba(192, 57, 43, 0.16);
    border-radius: 16px;
}

.checkout-confirm-error {
    margin: 1rem 0 0;
}

.checkout-order-number {
    color: #5d3826;
}

.checkout-done-panel {
    display: none;
    text-align: center;
}

.checkout-done-panel.is-visible {
    display: block;
}

.checkout-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.4rem;
    height: 4.4rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #4a2412;
    color: #c9a96e;
    box-shadow: 0 0 0 9px rgba(201, 169, 110, 0.16);
    font-size: 1.6rem;
}

.checkout-secondary-action {
    width: auto;
    min-width: 13rem;
    margin-top: 0.8rem;
}

.checkout-summary-luxe {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    padding: 1.35rem;
}

.checkout-summary-luxe h2 {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(74, 36, 18, 0.1);
}

.checkout-summary-items {
    display: grid;
    gap: 1rem;
    padding: 1rem 0;
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
}

.checkout-summary-item__media,
.checkout-summary-item__media span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 92px;
    overflow: hidden;
    border-radius: 16px;
    background: #f0dfca;
    color: #b8894f;
}

.checkout-summary-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-summary-item__body {
    min-width: 0;
}

.checkout-summary-item h3 {
    margin: 0 0 0.25rem;
    color: #4a2412;
    font-size: 0.94rem;
    font-weight: 700;
}

.checkout-summary-item p,
.checkout-summary-item__meta {
    margin: 0;
    color: #8b6d59;
    font-size: 0.78rem;
}

.checkout-summary-item__meta {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-top: 0.35rem;
}

.checkout-summary-item__meta del {
    margin-right: 0.3rem;
    color: #aa9280;
}

.checkout-summary-item > strong {
    color: #4a2412;
    font-size: 0.9rem;
    white-space: nowrap;
}

.checkout-summary-totals {
    padding-top: 1rem;
    border-top: 1px solid rgba(74, 36, 18, 0.1);
}

.checkout-summary-totals p {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: #735440;
}

.checkout-summary-totals__final {
    padding-top: 0.95rem;
    border-top: 1px solid rgba(74, 36, 18, 0.1);
    color: #4a2412 !important;
    font-size: 1.12rem;
}

@media (max-width: 992px) {
    .checkout-progress {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 24px;
    }

    .checkout-layout-luxe {
        grid-template-columns: 1fr;
    }

    .checkout-summary-luxe {
        position: static;
    }
}

@media (max-width: 640px) {
    .checkout-hero {
        padding-top: 1.2rem;
    }

    .checkout-progress {
        gap: 0.55rem;
        padding: 0.65rem;
    }

    .checkout-progress__item {
        justify-content: flex-start;
        font-size: 0.68rem;
    }

    .checkout-progress__dot {
        width: 1.75rem;
        height: 1.75rem;
        flex-basis: 1.75rem;
    }

    .checkout-form-grid,
    .checkout-summary-item {
        grid-template-columns: 1fr;
    }

    .checkout-summary-item {
        align-items: start;
    }

    .checkout-summary-item__media,
    .checkout-summary-item__media span {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .checkout-summary-item > strong {
        justify-self: start;
    }

    .checkout-title-block h1,
    .checkout-done-panel h2 {
        font-size: 2.35rem;
    }
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--spacing-2xl);
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
}

.cart-item__media img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-item__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 4;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    color: var(--color-accent);
}

.cart-item__name {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-xs);
}

.cart-item__name a {
    color: var(--color-primary);
}

.cart-item__meta {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xs);
}

.cart-item__price {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    margin-top: var(--spacing-sm);
}

.cart-item__remove-btn {
    color: var(--color-text-muted);
    padding: var(--spacing-sm);
    transition: color var(--transition-fast);
}

.cart-item__remove-btn:hover {
    color: #c0392b;
}

.cart-summary {
    padding: var(--spacing-xl);
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-md));
}

.cart-summary__title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
}

.cart-summary__note {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.cart-summary__continue,
.cart-summary__clear {
    width: 100%;
    margin-bottom: var(--spacing-sm);
}

@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

}

.product-card__btn {
    width: 100%;
    margin-top: var(--spacing-md);
}

/* ==========================================================================
   Shop — Sidebar Layout
   ========================================================================== */

.shop-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* Filter toggle (mobile) */

.shop-filter-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(184, 137, 79, 0.2);
    border-radius: 4px;
    background: #FFFDFC;
    color: #4A2412;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.shop-filter-toggle:hover {
    border-color: #C89B52;
}

/* ── Sidebar ── */

.shop-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: #FFFDFC;
    border: 1px solid rgba(184, 137, 79, 0.14);
    border-radius: 6px;
    padding: 1.25rem 0;
}

.shop-sidebar__section {
    padding: 0 1.25rem;
}

.shop-sidebar__section + .shop-sidebar__section {
    padding-top: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(184, 137, 79, 0.12);
}

.shop-sidebar__title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4A2412;
    margin-bottom: 0.75rem;
}

/* Search */

.shop-search {
    position: relative;
}

.shop-search__icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.5;
}

.shop-search__input {
    width: 100%;
    padding: 0.6rem 0.75rem 0.6rem 2.25rem;
    border: 1px solid rgba(184, 137, 79, 0.2);
    border-radius: 4px;
    background: #FFFDFC;
    color: #4A2412;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.shop-search__input::placeholder {
    color: rgba(74, 36, 18, 0.4);
}

.shop-search__input:focus {
    border-color: #C89B52;
}

/* Categories */

.shop-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-categories__item {
    margin: 0 -1.25rem;
}

.shop-categories__item a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
    color: #4A2412;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid rgba(184, 137, 79, 0.08);
}

.shop-categories__item:last-child a {
    border-bottom: none;
}

.shop-categories__item a:hover {
    background-color: rgba(184, 137, 79, 0.06);
}

.shop-categories__item.is-active a {
    background-color: rgba(200, 155, 82, 0.12);
    color: #4A2412;
    font-weight: 500;
}

/* Promo toggle */

.shop-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #4A2412;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.shop-promo:hover {
    color: #C89B52;
}

.shop-promo__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(184, 137, 79, 0.35);
    border-radius: 3px;
    background: #FFFDFC;
    transition: border-color 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.shop-promo:hover .shop-promo__check {
    border-color: #C89B52;
}

.shop-promo.is-active .shop-promo__check {
    background: #C89B52;
    border-color: #C89B52;
}

/* ── Top Bar ── */

.shop-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 1rem;
    margin-bottom: 1.5rem;
    background: #FFFDFC;
    border: 1px solid rgba(184, 137, 79, 0.14);
    border-radius: 6px;
}

.shop-topbar__count {
    font-size: 0.8rem;
    color: rgba(74, 36, 18, 0.6);
    margin: 0;
    white-space: nowrap;
}

.shop-topbar__sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shop-topbar__select {
    padding: 0.4rem 1.75rem 0.4rem 0.65rem;
    border: 1px solid rgba(184, 137, 79, 0.2);
    border-radius: 4px;
    background: #FFFDFC url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%234A2412' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0.6rem center;
    color: #4A2412;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.3s ease;
}

.shop-topbar__select:focus {
    border-color: #C89B52;
}

/* ── Main ── */

.shop-main {
    flex: 1;
    min-width: 0;
}

/* ── Responsive ── */

@media (max-width: 1023px) {
    .shop-layout {
        flex-direction: column;
    }

    .shop-filter-toggle {
        display: flex;
    }

    .shop-sidebar {
        display: none;
        width: 100%;
    }

    .shop-sidebar.is-open {
        display: block;
    }
}

@media (min-width: 1024px) {
    .shop-sidebar {
        position: sticky;
        top: calc(var(--header-height, 100px) + 1rem);
    }

    .shop-topbar {
        margin-bottom: 1.75rem;
    }
}

@media (max-width: 768px) {
    .shop-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .shop-topbar__count {
        white-space: normal;
    }

    .shop-topbar__select {
        width: 100%;
    }

    .shop-topbar__sort {
        width: 100%;
    }
}

/* ── RTL ── */

[dir="rtl"] .shop-search__icon {
    left: auto;
    right: 0.75rem;
}

[dir="rtl"] .shop-search__input {
    padding: 0.6rem 2.25rem 0.6rem 0.75rem;
}

[dir="rtl"] .shop-topbar__select {
    padding: 0.4rem 0.65rem 0.4rem 1.75rem;
    background-position: left 0.6rem center;
}

/* Pagination */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
}

.pagination__list {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    min-width: 40px;
    height: 40px;
    padding-inline: var(--spacing-sm);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.pagination__link:hover,
.pagination__link.is-active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-inverse);
}

.pagination__link--prev,
.pagination__link--next {
    padding-inline: var(--spacing-md);
}

/* ==========================================================================
   Hero Slider Section (Swiper)
   ========================================================================== */

.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 252, 247, 0.88) 0%, rgba(255, 252, 247, 0.65) 42%, rgba(255, 252, 247, 0.25) 100%),
        url("../images/back/back.png") center / cover no-repeat;
}

.hero-swiper {
    position: relative;
    width: 100%;
}

.hero-slide {
    display: flex;
    align-items: center;
    min-height: 620px;
    padding-block: var(--spacing-3xl);
    background: transparent;
}

.hero-slide__container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: var(--spacing-3xl);
    width: 100%;
    min-height: 100%;
}

.hero-slide__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 580px;
    z-index: 2;
}

.hero-slide__label {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.hero-slide__title {
    margin-bottom: var(--spacing-lg);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--color-primary);
}

.hero-slide__subtitle {
    margin-bottom: var(--spacing-xl);
    max-width: 520px;
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-muted);
}

.hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    align-items: center;
}

.hero-slide__btn,
.hero-slide__btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-slide__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-slide__picture {
    width: 100%;
    height: 470px;
    display: block;
}

.hero-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-swiper .swiper-slide-active .hero-slide__label,
.hero-swiper .swiper-slide-active .hero-slide__title,
.hero-swiper .swiper-slide-active .hero-slide__subtitle,
.hero-swiper .swiper-slide-active .hero-slide__actions,
.hero-swiper .swiper-slide-active .hero-slide__media {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide__label,
.hero-slide__title,
.hero-slide__subtitle,
.hero-slide__actions,
.hero-slide__media {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide__label {
    transition-delay: 0.1s;
}

.hero-slide__title {
    transition-delay: 0.2s;
}

.hero-slide__subtitle {
    transition-delay: 0.3s;
}

.hero-slide__actions {
    transition-delay: 0.4s;
}

.hero-slide__media {
    transform: translateY(20px) scale(0.97);
    transition-delay: 0.25s;
}

.hero-swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 253, 252, 0.94);
    border: 1px solid rgba(184, 137, 79, 0.35);
    box-shadow: 0 8px 24px rgba(74, 36, 18, 0.12);
    color: #B8894F;
    display: grid;
    place-items: center;
    z-index: 10;
    cursor: pointer;
    transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.hero-swiper-button::after {
    display: none;
}

.hero-swiper-button svg {
    display: block;
}

.hero-swiper-button:hover {
    background: #B8894F;
    color: #FFFDFC;
    transform: translateY(-50%) translateY(-2px);
}

.hero-swiper-button--prev {
    left: 32px;
}

.hero-swiper-button--next {
    right: 32px;
}

.hero-swiper-pagination {
    position: absolute;
    bottom: var(--spacing-xl) !important;
    left: 50% !important;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    z-index: 10;
    width: auto !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background-color: rgba(255, 253, 252, 0.75);
    border: 1px solid rgba(184, 137, 79, 0.35);
    opacity: 1;
    border-radius: 50%;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #B8894F;
    border-color: #B8894F;
}

@media (max-width: 1024px) {
    .hero-slide {
        min-height: 560px;
    }

    .hero-slide__container {
        gap: var(--spacing-2xl);
    }

    .hero-slide__picture {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: auto;
        padding-block: var(--spacing-2xl);
    }

    .hero-slide__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .hero-slide__content {
        align-items: center;
    }

    .hero-slide__subtitle {
        margin-inline: auto;
    }

    .hero-slide__actions {
        justify-content: center;
    }

    .hero-slide__media {
        order: -1;
        width: 100%;
    }

    .hero-slide__picture {
        height: 320px;
        max-width: 500px;
        margin-inline: auto;
    }

    .hero-swiper-button {
        width: 42px;
        height: 42px;
    }

    .hero-swiper-button svg {
        width: 16px;
        height: 16px;
    }

    .hero-swiper-button--prev {
        left: 16px;
    }

    .hero-swiper-button--next {
        right: 16px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        padding-block: var(--spacing-xl);
    }

    .hero-slide__title {
        font-size: 1.875rem;
        margin-bottom: var(--spacing-md);
    }

    .hero-slide__picture {
        height: 240px;
    }

    .hero-slide__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin-inline: auto;
    }

    .hero-slide__btn,
    .hero-slide__btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   Homepage — Hero + Transparent Header Overlay
   ========================================================================== */

.page-home .areach-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    transition: background-color 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.page-home .areach-header.is-scrolled {
    background: rgba(255, 253, 250, 0.97);
    border-bottom: 1px solid rgba(74, 36, 18, 0.08);
    box-shadow: 0 8px 30px rgba(59, 31, 18, 0.08);
    backdrop-filter: blur(12px);
}

.page-home .areach-navbar__link,
.page-home .areach-wordmark,
.page-home .areach-navbar__lang-toggle,
.page-home .areach-navbar__cart,
.page-home .areach-mobile-toggle {
    transition: color 300ms ease;
}

/* Top state colors — warm white over hero image */
.page-home .areach-navbar__link {
    color: #FFF8F0;
}

.page-home .areach-navbar__link::after {
    background-color: #C9A15F;
}

.page-home .areach-wordmark {
    color: #FFF8F0;
}

.page-home .areach-tagline {
    color: rgba(255, 248, 240, 0.72);
    transition: color 300ms ease;
}

.page-home .areach-navbar__lang-toggle {
    color: #FFF8F0;
}

.page-home .areach-navbar__cart {
    color: #FFF8F0;
}

.page-home .areach-mobile-toggle {
    color: #FFF8F0;
}

/* Scrolled state — return to chocolate / dark */
.page-home .areach-header.is-scrolled .areach-navbar__link {
    color: #2F190F;
}

.page-home .areach-header.is-scrolled .areach-navbar__link::after {
    background-color: #B8894F;
}

.page-home .areach-header.is-scrolled .areach-wordmark {
    color: #4A2412;
}

.page-home .areach-header.is-scrolled .areach-tagline {
    color: #7A5138;
}

.page-home .areach-header.is-scrolled .areach-navbar__lang-toggle {
    color: #2F190F;
}

.page-home .areach-header.is-scrolled .areach-navbar__cart {
    color: #2F190F;
}

.page-home .areach-header.is-scrolled .areach-mobile-toggle {
    color: #2F190F;
}

/* Homepage hero sizing — large & immersive */
.page-home .hero-slider-section {
    background:
        linear-gradient(90deg, rgba(45, 24, 14, 0.32) 0%, rgba(45, 24, 14, 0.12) 45%, rgba(45, 24, 14, 0.05) 100%),
        url("../images/back/back.png") center / cover no-repeat;
}

.page-home .hero-slide {
    min-height: clamp(680px, 88vh, 920px);
    padding-top: calc(var(--header-height) + var(--spacing-3xl));
    padding-bottom: var(--spacing-3xl);
    background: transparent;
}

/* Larger foreground card */
.page-home .hero-slide__picture {
    height: clamp(480px, 50vh, 620px);
}

.page-home .hero-slide__image {
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(59, 31, 18, 0.20);
}

/* Homepage slide text colors — readable against dark overlay */
.page-home .hero-slide__label {
    color: #C9A15F;
}

.page-home .hero-slide__title {
    color: #FFF8F0;
}

.page-home .hero-slide__subtitle {
    color: rgba(255, 248, 240, 0.78);
}

/* Homepage arrows — adjust for larger hero */
.page-home .hero-swiper-button--prev {
    left: 36px;
}

.page-home .hero-swiper-button--next {
    right: 36px;
}

/* ==========================================================================
   Homepage — About AREACH
   ========================================================================== */

.home-about {
    background:
        radial-gradient(circle at 70% 25%, rgba(210, 174, 114, 0.06), transparent 45%),
        linear-gradient(135deg, #FFFDFC 0%, #F7F1E8 55%, #F2E7D8 100%);
    padding-block: 5rem 4rem;
    overflow: hidden;
}

.about-areach__layout {
    display: grid;
    grid-template-columns: 1fr 1.22fr;
    align-items: center;
    gap: 4rem;
    max-width: 1240px;
    margin-inline: auto;
}

.about-areach__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 530px;
}

.about-areach__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #B8894F;
    margin-bottom: 1rem;
}

.about-areach__title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    font-weight: 400;
    line-height: 1.02;
    color: #4A2412;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-areach__body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #6F655F;
    margin-bottom: 1.2rem;
    max-width: 520px;
}

.about-areach__body p:last-child {
    margin-bottom: 0;
}

.about-areach__divider {
    width: 48px;
    height: 2px;
    background: #B8894F;
    margin-block: 1.75rem 1.25rem;
    border-radius: 1px;
}

.about-areach__signature {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #B8894F;
    margin-bottom: 2.5rem;
}

.about-areach__values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.about-areach__value {
    border-top: 2px solid rgba(184, 137, 79, 0.3);
    padding-top: 0.9rem;
}

.about-areach__value-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4A2412;
    margin-bottom: 0.35rem;
}

.about-areach__value-desc {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #6F655F;
    margin: 0;
}

/* Visual side */
.about-areach__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-areach__image-frame {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(184, 137, 79, 0.35);
    border-radius: 22px;
    z-index: 0;
    pointer-events: none;
}

.about-areach__picture {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(74, 36, 18, 0.12);
    z-index: 1;
}

.about-areach__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Reveal animation */
.home-about .about-areach__eyebrow,
.home-about .about-areach__title,
.home-about .about-areach__body,
.home-about .about-areach__divider,
.home-about .about-areach__signature,
.home-about .about-areach__values,
.home-about .about-areach__visual {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about.is-visible .about-areach__eyebrow,
.home-about.is-visible .about-areach__title,
.home-about.is-visible .about-areach__body,
.home-about.is-visible .about-areach__divider,
.home-about.is-visible .about-areach__signature,
.home-about.is-visible .about-areach__values,
.home-about.is-visible .about-areach__visual {
    opacity: 1;
    transform: translateY(0);
}

.home-about .about-areach__eyebrow { transition-delay: 0ms; }
.home-about .about-areach__title { transition-delay: 100ms; }
.home-about .about-areach__body { transition-delay: 200ms; }
.home-about .about-areach__divider { transition-delay: 300ms; }
.home-about .about-areach__signature { transition-delay: 350ms; }
.home-about .about-areach__values { transition-delay: 450ms; }
.home-about .about-areach__visual { transition-delay: 100ms; }

@media (prefers-reduced-motion: reduce) {
    .home-about .about-areach__eyebrow,
    .home-about .about-areach__title,
    .home-about .about-areach__body,
    .home-about .about-areach__divider,
    .home-about .about-areach__signature,
    .home-about .about-areach__values,
    .home-about .about-areach__visual {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
}

@media (max-width: 1024px) {
    .about-areach__layout {
        gap: 3rem;
    }

    .about-areach__image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .home-about {
        padding-block: 3.5rem 2.5rem;
    }

    .about-areach__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-areach__content {
        max-width: none;
        align-items: center;
        text-align: center;
    }

    .about-areach__title {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .about-areach__body p {
        max-width: none;
    }

    .about-areach__divider {
        margin-inline: auto;
    }

    .about-areach__signature {
        text-align: center;
        width: 100%;
    }

    .about-areach__values {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 400px;
        margin-inline: auto;
    }

    .about-areach__visual {
        order: -1;
    }

    .about-areach__image {
        min-height: 300px;
    }

    .about-areach__image-frame {
        top: 12px;
        left: 12px;
    }
}

@media (max-width: 480px) {
    .home-about {
        padding-block: 2.5rem 2rem;
    }

    .about-areach__image {
        min-height: 240px;
    }
}

/* ==========================================================================
   Homepage — Nouveautés reveal animation
   ========================================================================== */

#nouveautes {
    scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

#nouveautes .section-header,
#nouveautes .product-grid > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

#nouveautes.is-visible .section-header,
#nouveautes.is-visible .product-grid > * {
    opacity: 1;
    transform: translateY(0);
}

#nouveautes .section-header {
    transition-delay: 0ms;
}

#nouveautes .section-subtitle {
    transition-delay: 100ms;
}

#nouveautes .section-link {
    transition-delay: 200ms;
}

#nouveautes .product-grid > *:nth-child(1) { transition-delay: 300ms; }
#nouveautes .product-grid > *:nth-child(2) { transition-delay: 400ms; }
#nouveautes .product-grid > *:nth-child(3) { transition-delay: 500ms; }
#nouveautes .product-grid > *:nth-child(4) { transition-delay: 600ms; }
#nouveautes .product-grid > *:nth-child(5) { transition-delay: 700ms; }

@media (prefers-reduced-motion: reduce) {
    #nouveautes .section-header,
    #nouveautes .product-grid > * {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
}

/* ==========================================================================
   Nouveautés — Small Hero
   ========================================================================== */

.nouveautes-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--color-primary);
    padding-block: var(--spacing-3xl) var(--spacing-2xl);
    text-align: center;
}

.nouveautes-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 20% 50%, rgba(201, 169, 110, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 55% 80% at 80% 30%, rgba(45, 45, 68, 0.9) 0%, transparent 70%),
        linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    z-index: 0;
}

/* Floating accent particles */
.nouveautes-hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.nouveautes-hero__particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background-color: var(--color-accent);
    opacity: 0.12;
    animation: nv-float 8s ease-in-out infinite;
}

.nouveautes-hero__particles span:nth-child(1) {
    width: 320px; height: 320px;
    top: -120px; left: -80px;
    animation-delay: 0s; animation-duration: 10s;
}
.nouveautes-hero__particles span:nth-child(2) {
    width: 180px; height: 180px;
    top: 40%; right: 5%;
    animation-delay: -3s; animation-duration: 7s;
    opacity: 0.08;
}
.nouveautes-hero__particles span:nth-child(3) {
    width: 90px; height: 90px;
    bottom: 10%; left: 15%;
    animation-delay: -6s; animation-duration: 9s;
    opacity: 0.15;
}
.nouveautes-hero__particles span:nth-child(4) {
    width: 48px; height: 48px;
    top: 20%; left: 40%;
    animation-delay: -2s; animation-duration: 6s;
    opacity: 0.2;
}
.nouveautes-hero__particles span:nth-child(5) {
    width: 24px; height: 24px;
    bottom: 25%; right: 20%;
    animation-delay: -4s; animation-duration: 11s;
    opacity: 0.25;
}
.nouveautes-hero__particles span:nth-child(6) {
    width: 60px; height: 60px;
    top: 60%; left: 60%;
    animation-delay: -1s; animation-duration: 8s;
    opacity: 0.1;
}

@keyframes nv-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-18px) scale(1.04); }
}

.nouveautes-hero .container {
    position: relative;
    z-index: 2;
}

.nouveautes-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    max-width: 680px;
    margin-inline: auto;
}

.nouveautes-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    background-color: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    animation: nv-fade-up 0.6s ease both;
}

.nouveautes-hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-accent);
    animation: nv-pulse 2s ease-in-out infinite;
}

@keyframes nv-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.nouveautes-hero__title {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-inverse);
    line-height: var(--line-height-tight);
    letter-spacing: -0.02em;
    margin-bottom: 0;
    animation: nv-fade-up 0.65s 0.1s ease both;
}

.nouveautes-hero__subtitle {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.72);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
    max-width: 540px;
    animation: nv-fade-up 0.65s 0.2s ease both;
}

.nouveautes-hero__subtitle strong {
    color: var(--color-accent);
    font-weight: var(--font-weight-semibold);
}

.nouveautes-hero__stats {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-md);
    animation: nv-fade-up 0.65s 0.3s ease both;
}

.nouveautes-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nouveautes-hero__stat-value {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    line-height: 1;
}

.nouveautes-hero__stat-label {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nouveautes-hero__stat-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.15);
}

@keyframes nv-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Nouveautés Hero — Responsive */

@media (max-width: 768px) {
    .nouveautes-hero {
        padding-block: var(--spacing-2xl) var(--spacing-xl);
    }

    .nouveautes-hero__title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .nouveautes-hero__stats {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .nouveautes-hero {
        padding-block: var(--spacing-xl);
    }

    .nouveautes-hero__particles span:nth-child(1) {
        width: 200px; height: 200px;
    }

    .nouveautes-hero__stats {
        gap: var(--spacing-md);
    }

    .nouveautes-hero__stat-value {
        font-size: var(--font-size-lg);
    }
}

/* Nouveautés — Pagination ellipsis */

.pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    user-select: none;
}

