/* styles-strawberry.css */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;900&family=Lobster+Two:wght@400;700&display=swap');

:root {
    --color-strawberry-red: #E54B4B; /* Rojo fresa principal */
    --color-strawberry-pink-light: #FFD6D6; /* Rosa fresa muy claro para fondos suaves */
    --color-cream-bg: #FFF7F0; /* Un fondo crema cálido y acogedor */
    --color-leaf-green: #69B578; /* Verde hoja fresco */
    --color-dark-green-accent: #3A6B35; /* Verde oscuro para contraste y texto */
    --color-text-primary: #333333;
    --color-text-secondary: #585858;
    --color-white: #FFFFFF;

    --font-accent: 'Lobster Two', cursive; /* Para títulos de gran impacto o acentos */
    --font-main: 'Nunito Sans', sans-serif; /* Para títulos y cuerpo, legible y amigable */

    --border-radius-smooth: 15px; /* Bordes más redondeados para un look suave */
    --shadow-gentle: 0 5px 20px rgba(229, 75, 75, 0.15); /* Sombra con tinte fresa */
}

/* --- Reset Básico y Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-primary);
    line-height: 1.75;
    background-color: var(--color-cream-bg);
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-smooth);
}

a {
    text-decoration: none;
    color: var(--color-strawberry-red);
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-dark-green-accent);
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 700; /* Semi-bold para Nunito Sans es bueno */
    color: var(--color-dark-green-accent);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

h1 { font-size: 2.8rem; font-weight: 900; text-align: center; } /* Más peso para el H1 */
h2 { font-size: 2.3rem; margin-bottom: 2.5rem; text-align: center; color: var(--color-text-strawberry); position:relative; padding-bottom:1rem;}
h2::after {
    content: '🍓'; /* Emoji de fresa como separador */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--color-strawberry-red);
}

h3 { font-size: 1.7rem; color:var(--color-strawberry-red); }
p { margin-bottom: 1.2rem; color: var(--color-text-secondary); font-size: 1.05rem; }

/* --- Header --- */
.site-header {
    background-color: rgba(255, 247, 240, 0.97); /* Crema con transparencia */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-bottom: 2px solid var(--color-strawberry-pink-light);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 75px; /* Ajusta según tu logo */
    border-radius: 0; /* Sin borde redondeado para el logo */
}

.main-navigation ul {
    list-style: none;
    display: flex;
}

.main-navigation li {
    margin-left: 28px;
}

.main-navigation a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-dark-green-accent);
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.main-navigation a:hover, .main-navigation a.active {
    color: var(--color-strawberry-red);
    border-bottom-color: var(--color-strawberry-red);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-dark-green-accent);
    cursor: pointer;
}


/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(to bottom, rgba(229, 75, 75, 0.1), rgba(255, 214, 214, 0.2)),
                url('../images/banner-strawberryhaze.jpg') no-repeat center center/cover;
    color: var(--color-white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 80px; /* Curva suave */
}

.hero-section::before { /* Overlay más sutil */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 107, 53, 0.3); /* Verde oscuro sutil */
    border-bottom-left-radius: 80px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.hero-content .accent-title {
    font-family: var(--font-accent);
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    line-height: 1.1;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero-content .subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    color: var(--color-cream-bg);
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.cta-button {
    display: inline-block;
    background-color: var(--color-leaf-green);
    color: var(--color-white);
    padding: 16px 38px;
    border-radius: var(--border-radius-smooth);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(80, 200, 120, 0.4);
}

.cta-button:hover {
    background-color: var(--color-dark-green-accent);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 18px rgba(58, 107, 53, 0.5);
}


/* --- Product Details Section --- */
.product-details-section {
    padding: 80px 0;
    background-color: var(--color-white); /* Fondo blanco para esta sección */
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-image-gallery img {
    box-shadow: var(--shadow-medium);
    border: 5px solid var(--color-white); /* Para que se vea bien sobre el fondo blanco */
}

.product-info h2 {
    text-align: left;
    color: var(--color-strawberry-red);
}
.product-info h2::after {
    left: 0;
    transform: translateX(0);
}

.product-info .highlight {
    color: var(--color-strawberry-red);
    font-weight: 700;
}

.aroma-profile { list-style: none; padding: 0; margin: 1.5rem 0; }
.aroma-profile li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.aroma-profile li::before {
    content: '🍓'; /* Fresa */
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.4rem;
}

/* --- Pricing Section --- */
.pricing-section {
    padding: 80px 0;
    background-color: var(--color-strawberry-pink-light); /* Fondo rosa claro */
    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
    margin-top: -1px; /* Para que las curvas se solapen bien */
}

.pricing-intro {
    text-align:center;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom: 3rem;
}

.price-options {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.price-item {
    background-color: var(--color-white);
    padding: 35px;
    border-radius: var(--border-radius-smooth);
    text-align: center;
    box-shadow: var(--shadow-soft);
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--color-strawberry-red);
}

.price-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.price-item .weight-amount {
    font-family: var(--font-main);
    font-size: 1.8rem;
    color: var(--color-dark-green-accent);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.price-item .price-value {
    font-family: var(--font-accent); /* Fuente de acento para el precio */
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-strawberry-red);
    margin-bottom: 1rem;
}
.price-item .price-value sup {
    font-size: 1.6rem;
    top: -1.2em;
    font-family: var(--font-main);
}

.price-item .item-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    min-height: 50px;
}

.price-item .cta-button { width: 100%; }


/* --- Why PURECBDGLOBAL Section --- */
.why-us-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
    margin-top: 3rem;
}

.why-us-item {
    background-color: var(--color-cream-bg);
    padding: 30px;
    border-radius: var(--border-radius-smooth);
    text-align: center;
    box-shadow: var(--shadow-soft);
}
.why-us-item .icon-feature {
    font-size: 2.8rem;
    color: var(--color-strawberry-red);
    margin-bottom: 1rem;
}
.why-us-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--color-dark-green-accent);
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--color-strawberry-pink-light);
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
    margin-top: -1px;
}

.testimonial-wrapper { /* Para un posible slider */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-smooth);
    box-shadow: var(--shadow-soft);
    border-top: 5px solid var(--color-leaf-green);
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    position: relative;
    padding-left: 40px;
}
.testimonial-card blockquote::before {
    content: '“';
    font-family: var(--font-accent);
    font-size: 3.5rem;
    color: var(--color-strawberry-pink-light);
    position: absolute;
    left: -5px;
    top: -15px;
}
.testimonial-card .reviewer-name {
    font-weight: 700;
    color: var(--color-dark-green-accent);
    text-align: right;
    margin-top: 1rem;
}
.testimonial-card .reviewer-name::before {
    content: "— ";
}

/* --- Final Call to Action Section --- */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-strawberry-red) 0%, var(--color-leaf-green) 100%);
    color: var(--color-white);
    text-align: center;
}

.final-cta-section h2 {
    font-family: var(--font-accent);
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.final-cta-section h2::after { /* Sin fresa aquí, o una diferente */
    content: '';
    width: 100px;
    height: 3px;
    background-color: var(--color-strawberry-pink-light);
}

.final-cta-section .cta-text {
    color: var(--color-cream-bg);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-section .cta-button {
    background-color: var(--color-white);
    color: var(--color-strawberry-red);
    font-size: 1.15rem;
    padding: 18px 45px;
    box-shadow: 0 4px 15px rgba(0,0,0, 0.2);
}
.final-cta-section .cta-button:hover {
    background-color: var(--color-cream-bg);
    color: var(--color-strawberry-red);
    box-shadow: 0 6px 20px rgba(0,0,0, 0.3);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-dark-green-accent);
    color: var(--color-cream-bg);
    padding: 50px 0 30px;
    text-align: center;
    font-size: 0.95rem;
}

.site-footer p {
    color: #E0E0E0; /* Un gris más claro para el footer */
    margin-bottom: 0.7rem;
}
.site-footer .footer-nav-links {
    margin-bottom: 1.2rem;
}
.site-footer .footer-nav-links a {
    color: var(--color-cream-bg);
    margin: 0 12px;
    font-size: 0.9rem;
    font-weight: 400;
}
.site-footer .footer-nav-links a:hover {
    color: var(--color-strawberry-pink-light);
}
.site-footer .legal-disclaimer {
    font-size: 0.85rem;
    max-width: 750px;
    margin: 1.5rem auto 0;
    color: #BDBDBD; /* Gris aún más claro para el disclaimer */
    line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    body { font-size: 15px; }
    h1 { font-size: 2.4rem; }
    .hero-content .accent-title { font-size: 3.8rem; }
    h2 { font-size: 2rem; }
    .hero-content .subtitle { font-size: 1.2rem; }

    .product-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .product-image-gallery { margin-bottom: 20px; }
    .product-info h2 { text-align: center; }
    .product-info h2::after { left: 50%; transform: translateX(-50%); }

    .price-options {
        flex-direction: column;
        align-items: center;
    }
    .price-item { width: 90%; max-width: 380px; }
}

@media (max-width: 768px) {
    .main-navigation { display: none; }
    .menu-toggle { display: block; }

    .main-navigation.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; /* Debajo del header */
        left: 0;
        width: 100%;
        background-color: var(--color-cream-bg);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 1rem 0;
        border-top: 1px solid var(--color-strawberry-pink-light);
    }
    .main-navigation.mobile-open li { margin: 0; width: 100%; }
    .main-navigation.mobile-open a {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--color-strawberry-pink-light);
    }
    .main-navigation.mobile-open a:hover, .main-navigation.mobile-open a.active {
        background-color: var(--color-strawberry-pink-light);
        border-bottom-color: var(--color-strawberry-pink-light);
    }

    .hero-section { padding: 80px 0; min-height: 65vh; }
    .hero-content .accent-title { font-size: 3rem; }
    .cta-button { padding: 14px 30px; font-size: 1rem; }
    .final-cta-section .cta-button { padding: 16px 35px; font-size: 1.1rem;}

    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.8rem; margin-bottom: 2rem; }

    .why-us-grid, .testimonial-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .product-details-section, .pricing-section, .why-us-section, .testimonials-section, .final-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-content .accent-title { font-size: 2.5rem; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    .hero-content .subtitle { font-size: 1.1rem; }
    .container { width: 95%; padding: 0 15px; }
    .site-logo img { height: 45px; }
    .price-item .price-value { font-size: 2.8rem; }
}