/* Theme variables */
:root {
    --primary: #e58096;
    --secondary: #f7e6eb;
    --dark: #333;
    --light: #ffffff;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Mulish', sans-serif;

    --page-bg: #f7f5f2;
    --surface: #ffffff;
    --surface-soft: #f1ede8;
    --text: #1d1f2a;
    --muted: #6e6970;
    --accent: #d97892;
    --accent-soft: #f6e4ea;
    --footer-bg: #020820;
    --footer-muted: #adb5d8;
    --border: #e6e0da;
    --shadow-soft: 0 18px 40px rgba(12, 15, 33, 0.08);
    --container: min(1180px, 92vw);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--dark);
    background: var(--light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* .site-header {
  background: var(--light);
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
} */



/* =================
    HERO SECTION 
================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 100svh;
    background: url("../assets/img/brand/hero-01.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 700px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0.8rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.hero-btn:hover {
    background: #d98a9a;
    /* slightly darker than primary */
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .hero {
        height: auto;
        min-height: 80svh;
        padding: 6rem 0 4rem;
    }

    .section-header h2 {
        font-size: clamp(2rem, 7vw, 2.6rem);
    }

    .featured-products,
    .testimonials,
    .why-us,
    .contact-section,
    .about-section {
        padding: 3.5rem 0;
    }
}

/* ===== STATS / SOCIAL PROOF ===== */

.stats-section {
    position: relative;
    margin-top: -80px;
    /* pulls cards over hero */
    z-index: 2;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat-card p {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .stats-section {
        margin-top: -40px;
    }

    .stats-wrapper {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 520px) {
    .stats-section {
        margin-top: -30px;
    }

    .stats-wrapper {
        padding: 1.2rem 0.85rem;
        gap: 1rem;
    }
}



/* ===== FEATURED PRODUCTS ===== */

.featured-products {
    padding: 5rem 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: 0.95rem;
    color: #666;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 14px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.251);
}

.product-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    height: 75%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.9rem;
    color: #666;
}

/* ===== PRODUCTS CTA ===== */

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

.products-btn {
    display: inline-block;
    padding: 0.75rem 2.2rem;
    border-radius: 30px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.products-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== WHY CHOOSE US (SPLIT) ===== */

.why-us {
    padding: 5rem 0;
    background: var(--light);
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.why-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.why-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.why-points {
    list-style: none;
    padding: 0;
}

.why-points li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #444;
}

.why-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .why-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-points li {
        padding-left: 0;
    }

    .why-points li::before {
        display: none;
    }
}

/* ===== CONTACT SECTION ===== */

.contact-section {
    padding: 5rem 0;
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
}

.contact-form form {
    background: #fafafa;
    padding: 2rem;
    border-radius: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
}

.contact-form button {
    width: 100%;
    padding: 0.8rem;
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-form form {
        margin-top: 2rem;
    }
}

/* .site-footer {
    background: #f5f5f5;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.9rem;
} */

/* ===== ABOUT SECTION ===== */

.about-section {
    padding: 5rem 0;
    background: #fafafa;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.about-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.about-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-btn {
    display: inline-block;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: var(--primary);
    color: #fff;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-btn {
        margin-top: 1rem;
    }
}

/* ===== TESTIMONIALS / TRUST ===== */

.testimonials {
    padding: 5rem 0;
    background: var(--accent-soft);
}

.testimonial-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonial-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: #fff;
    padding: 1.8rem;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 0 0 min(320px, 85vw);
    scroll-snap-align: start;
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-top img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-top h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.stars {
    color: #f5b301;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.6;
}
