:root {
    --primary: #38593F;
    --primary-light: #4F7A59;
    --secondary: #D4A373;
    --accent: #FAEDCD;
    --background: #FDFBF7;
    --text-main: #2C3E30;
    --text-muted: #5C7060;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --whatsapp-dark: #1EBE57;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

h1 i,
h2 i {
    font-style: italic;
    color: var(--secondary);
    font-weight: 400;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    z-index: 1001;
    position: relative;
}

.promo-banner strong {
    font-weight: 600;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--secondary);
    text-transform: uppercase;
}

.logo-img {
    height: 55px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
}

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

.logo-img-footer {
    height: 65px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(56, 89, 63, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 89, 63, 0.4);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-nav {
    background-color: var(--whatsapp);
    color: var(--white) !important;
    border-color: var(--whatsapp) !important;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
}

.btn-whatsapp-nav:hover {
    background-color: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark) !important;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid transparent;
}

.btn-secondary:hover {
    color: var(--secondary);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.w-100 {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, rgba(253, 251, 247, 0) 70%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob {
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.mock-product-image {
    width: 450px;
    height: 450px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

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

.gallery-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Crop out the Gemini sparkle watermark from bottom-right */
.crop-watermark img {
    transform: scale(1.07);
    transform-origin: top left;
}

/* Sections */
.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--accent);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

/* Shop Section */
.shop.section {
    background-color: var(--white);
    position: relative;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
}

.price {
    font-size: 2.5rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.ingredient-list {
    list-style: none;
    margin: 2.5rem 0;
}

.ingredient-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: var(--text-main);
    font-weight: 500;
}

.ingredient-list span {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-note {
    text-align: center;
    font-size: 0.95rem !important;
    color: var(--text-muted) !important;
    margin-top: 1rem;
}

.contact-note a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-note a:hover {
    color: var(--secondary);
}

.gallery-placeholder {
    width: 100%;
    height: 500px;
    background: var(--background);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Results / Before & After Section */
.results.section {
    background: linear-gradient(180deg, var(--background) 0%, var(--accent) 100%);
}

.before-after-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.ba-card {
    position: relative;
    width: 320px;
    height: 440px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--white);
    transition: var(--transition);
}

.ba-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ba-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
}

.ba-before {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-muted);
    backdrop-filter: blur(5px);
}

.ba-after {
    background: var(--whatsapp);
    color: var(--white);
}

.ba-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    text-align: center;
    min-width: 120px;
}

.ba-arrow {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(56, 89, 63, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.ba-divider span {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--primary);
}

.results-cta {
    text-align: center;
}

.results-tagline {
    font-size: 1.35rem !important;
    font-style: italic;
    color: var(--text-main) !important;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Our Story Section */
.story.section {
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text .badge {
    margin-bottom: 1rem;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.story-text em {
    font-size: 1.2rem;
    color: var(--primary);
    display: block;
    margin: 1.5rem 0;
    border-left: 3px solid var(--secondary);
    padding-left: 1.25rem;
}

.story-image {
    display: flex;
    justify-content: center;
}

.story-img-wrapper {
    width: 100%;
    max-width: 450px;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
    animation: float-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

@keyframes float-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--accent);
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer .logo-text,
.footer .logo-subtext {
    color: var(--white);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--whatsapp);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-whatsapp:hover {
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    outline: none;
    flex: 1;
    font-family: var(--font-body);
    font-size: 1rem;
}

.newsletter-form .btn {
    background-color: var(--secondary);
    color: var(--white);
    padding: 1rem 2rem;
}

.newsletter-form .btn:hover {
    background-color: var(--white);
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive — Tablet */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-container,
    .product-showcase,
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .product-showcase {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .before-after-showcase {
        flex-direction: column;
    }

    .ba-card {
        width: 85%;
        max-width: 340px;
        height: 420px;
    }

    .ba-divider {
        flex-direction: row;
        min-width: auto;
        padding: 0.5rem 0;
    }

    .ba-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .story-text em {
        text-align: left;
    }

    .story-img-wrapper {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .ingredient-list li {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-content {
        padding: 0;
    }

    .btn-outline {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 7rem;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-image-wrapper {
        height: auto;
    }

    .mock-product-image {
        width: 280px;
        height: 280px;
    }

    .blob {
        width: 300px;
        height: 300px;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .gallery-placeholder {
        height: 300px;
        border-radius: 20px;
    }

    .ba-card {
        width: 90%;
        max-width: 300px;
        height: 380px;
    }

    .product-showcase {
        gap: 2rem;
    }

    .price {
        font-size: 2rem;
    }

    .ingredient-list {
        margin: 1.5rem 0;
    }

    .ingredient-list li {
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }

    .results-tagline {
        font-size: 1.1rem !important;
    }

    .story-img-wrapper {
        height: 280px;
        border-radius: 20px;
    }

    .promo-banner {
        font-size: 0.8rem;
        padding: 0.6rem 0.5rem;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .contact-note {
        font-size: 0.85rem !important;
    }
}

/* Responsive — Small Mobile */
@media (max-width: 400px) {
    h1 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .mock-product-image {
        width: 250px;
        height: 250px;
    }

    .ba-card {
        width: 95%;
        height: 340px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-actions .btn {
        width: 100%;
    }
}