@font-face {
    font-family: 'Alex Brush';
    src: url('../fonts/alex-brush/AlexBrush-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond/CormorantGaramond-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: url('../fonts/cormorant-garamond/CormorantGaramond-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PT Sans';
    src: url('../fonts/pt-sans/PTSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PT Sans';
    src: url('../fonts/pt-sans/PTSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-heading: 'Alex Brush', cursive;

    /* Elegant option */
    --font-body: 'PT Sans', serif;

    /* Cleaner readability option */
    /* --font-body: 'PT Sans', Arial, sans-serif; */

    --cream: #ffffff;
    --soft-beige: #f5efe6;
    --warm-white: #ffffff;
    --olive: #596134;
    --olive-dark: #33381f;
    --gold: #b89445;
    --text: #2e2a24;
    --muted: #746b60;
    --footer: #252819;
    --border: #e8ded0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.65;
}

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

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

.site-header {
    background: #fbf8f3;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: var(--olive-dark) !important;
}

.nav-link {
    font-size: 1.05rem;
    color: var(--olive-dark) !important;
    letter-spacing: 0.03em;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.hero {
    background: #ffffff;
    background-size: cover;
    background-position: center;
    padding: 90px 0 80px;
    text-align: center;
}

.hero-logo {
    max-width: 460px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.4rem, 8vw, 7rem);
    color: var(--olive-dark);
    line-height: 1;
    margin: 0;
}

.hero p {
    max-width: 720px;
    margin: 20px auto 30px;
    color: var(--muted);
    font-size: 1.25rem;
}

.btn-boutique {
    display: inline-block;
    background: var(--olive);
    color: #fff;
    border: 1px solid var(--olive);
    padding: 12px 30px;
    border-radius: 999px;
    font-size: 1rem;
    transition: 0.2s ease;
}

.btn-boutique:hover {
    background: var(--olive-dark);
    color: #fff;
}

.section {
    padding: 70px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--olive-dark);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 42px;
}

.boutique-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: 0.2s ease;
}

.boutique-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(51, 56, 31, 0.12);
}

.boutique-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--soft-beige);
}

.boutique-card-body {
    padding: 24px;
}

.boutique-card h3 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--olive-dark);
    margin: 0 0 8px;
}

.boutique-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.price {
    color: var(--olive-dark);
    font-weight: 600;
    font-size: 1.25rem;
}

.site-footer {
    background: var(--footer);
    color: #eee7d9;
    padding: 48px 0 24px;
    margin-top: 60px;
}

.site-footer h4,
.site-footer .footer-brand {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff7e7;
    margin-bottom: 12px;
}

.site-footer a {
    color: #eee7d9;
}

.site-footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 32px;
    padding-top: 18px;
    font-size: 0.95rem;
    color: #cfc5b2;
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    .hero {
        padding: 60px 0 55px;
    }

    .navbar-brand {
        font-size: 1.9rem;
    }

    .section {
        padding: 50px 0;
    }

    .boutique-card h3 {
        font-size: 2.2rem;
    }
}

/* Honeypot spam trap */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #25D366;
    color: #fff !important;

    padding: 14px 28px;
    border-radius: 999px;

    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;

    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff !important;

    transform: translateY(-2px);

    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

/* Primary boutique button */

.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #8b7355;
    color: #ffffff !important;

    border: none;
    border-radius: 999px;

    padding: 14px 30px;

    font-size: 1rem;
    font-weight: 600;

    text-decoration: none;
    cursor: pointer;

    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(139,115,85,0.20);
}

.btn-brand:hover {
    background: #755f46;
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 10px 24px rgba(139,115,85,0.30);
}

.btn-brand:focus {
    outline: none;
}

.btn-brand:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.home-hero {
    background: #ffffff;
    padding: 90px 0 78px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.home-hero-inner {
    max-width: 920px;
    margin: 0 auto;
}

.home-hero-logo {
    max-width: 520px;
    width: 100%;
    height: auto;
    margin-bottom: 18px;
}

.home-hero-kicker {
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.home-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: var(--olive-dark);
    line-height: 0.95;
    margin-bottom: 18px;
}

.home-hero-text {
    max-width: 720px;
    margin: 0 auto 30px;
    color: var(--muted);
    font-size: 1.25rem;
}

.home-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-home-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--olive);
    color: var(--olive-dark);
    padding: 12px 30px;
    border-radius: 999px;
    background: transparent;
    transition: 0.2s ease;
}

.btn-home-outline:hover {
    background: var(--olive-dark);
    color: #fff;
}

.home-section {
    padding: 75px 0;
}

.home-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.home-section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--olive-dark);
    line-height: 1;
    margin-bottom: 12px;
}

.home-section-heading p {
    color: var(--muted);
}

.home-category-card,
.home-collection-card {
    display: block;
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.25s ease;
}

.home-category-card:hover,
.home-collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(51, 56, 31, 0.12);
}

.home-category-card img,
.home-category-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.home-category-placeholder,
.home-collection-placeholder {
    background:
        linear-gradient(rgba(89, 97, 52, 0.18), rgba(89, 97, 52, 0.18)),
        var(--soft-beige);
    color: var(--olive-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    min-height: 240px;
    text-align: center;
    padding: 24px;
}

.home-category-content,
.home-collection-content {
    padding: 28px;
}

.home-category-content h3,
.home-collection-content h3 {
    font-family: var(--font-heading);
    color: var(--olive-dark);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 10px;
}

.home-category-content p,
.home-collection-content p {
    color: var(--muted);
}

.home-category-content span,
.home-collection-content span {
    color: var(--gold);
    font-weight: 600;
}

.home-collections,
.home-story {
    background: #ffffff;
}

.home-collection-image img,
.home-collection-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.home-product-card {
    height: 100%;
}

.home-story-panel {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: clamp(28px, 5vw, 56px);
}

.home-story-panel h2 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--olive-dark);
    line-height: 1;
}

.home-story-panel p {
    color: var(--muted);
}

.home-story-quote {
    background:
        radial-gradient(circle at center, rgba(184, 148, 69, 0.12), transparent 45%),
        #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 45px;
    text-align: center;
}

.home-story-quote img {
    max-width: 420px;
    width: 100%;
    margin-bottom: 20px;
}

.home-story-quote p {
    max-width: 520px;
    margin: 0 auto;
    color: var(--olive-dark);
    font-size: 1.35rem;
}

@media (max-width: 768px) {
    .home-hero {
        padding: 58px 0 50px;
    }

    .home-hero-logo {
        max-width: 360px;
    }

    .home-section {
        padding: 55px 0;
    }

    .home-category-content h3,
    .home-collection-content h3 {
        font-size: 2.4rem;
    }

    .home-story-quote {
        padding: 28px;
    }
}


/* =========================================================
   White storefront refinement
   Product photos are mostly white, so the storefront now
   uses white as the main background and a soft beige header.
   ========================================================= */

html,
body {
    background: #ffffff;
}

main {
    background: #ffffff;
}

/* Header: light beige, logo-friendly */
.site-header {
    background: #fbf8f3 !important;
    border-bottom: 1px solid #e8ded0;
    box-shadow: 0 8px 24px rgba(51, 56, 31, 0.04);
}

.navbar {
    padding-top: 14px;
    padding-bottom: 14px;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.navbar-brand img,
.site-logo {
    max-height: 78px;
    width: auto;
    display: block;
}

/* If the header still uses text branding, keep it compact */
.navbar-brand:not(:has(img)) {
    font-size: 2.15rem;
}

/* Remove the big logo from the hero/main area */
.home-hero-logo-wrap,
.home-hero-logo {
    display: none !important;
}

.home-hero {
    background: #ffffff !important;
    padding: 82px 0 58px;
    border-bottom: 1px solid #f0e7da;
}

.home-hero h1 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    letter-spacing: 0.01em;
}

.home-hero-kicker,
.eyebrow {
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Sections now stay white, with subtle separation only */
.home-section,
.section,
.products-section,
.product-detail-section,
.contact-section {
    background: #ffffff;
}

.home-collections,
.home-story {
    background: #ffffff !important;
}

/* Cards: white, subtle borders, very light shadows */
.boutique-card,
.home-category-card,
.home-collection-card,
.product-card,
.contact-card,
.contact-info-box,
.home-story-panel,
.home-story-quote {
    background: #ffffff !important;
    border: 1px solid #e8ded0;
    box-shadow: 0 10px 30px rgba(51, 56, 31, 0.055);
}

.boutique-card:hover,
.home-category-card:hover,
.home-collection-card:hover,
.product-card:hover {
    box-shadow: 0 16px 38px rgba(51, 56, 31, 0.10);
}

/* Image areas should blend with white product photography */
.product-image-wrap,
.product-detail-image,
.home-collection-image,
.home-category-placeholder,
.home-collection-placeholder,
.product-placeholder {
    background: #ffffff !important;
}

/* If no category/collection image exists, use a simple white placeholder */
.home-category-placeholder,
.home-collection-placeholder,
.product-placeholder {
    border-bottom: 1px solid #eee5d8;
    color: var(--olive-dark);
}

/* Product/category images */
.product-image-wrap img,
.product-detail-image img,
.home-collection-image img,
.home-category-card img,
.boutique-card img {
    background: #ffffff;
}

/* Footer remains dark for contrast */
.site-footer {
    background: var(--footer);
    margin-top: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .navbar-brand img,
    .site-logo {
        max-height: 58px;
    }

    .home-hero {
        padding: 58px 0 42px;
    }

    .home-hero h1 {
        font-size: clamp(2.25rem, 9vw, 3.4rem);
    }
}


.card-img-top,
.product-card img,
.category-card img,
.collection-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #fff;
    padding: 16px;
}
