/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --citrus: #FFDD00;
    --tea-green: #9DC183;
    --berry-dark: #3B0A45;
    --turquoise-pastel: #B2DFDB;
    --milky-white: #FAFAFA;
    --dark-text: #333333;
    --light-text: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background-color: var(--milky-white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--berry-dark);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--citrus);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Header Styles */
.site-header {
    background-color: var(--berry-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--milky-white);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--citrus);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.cta-button {
    display: inline-block;
    background-color: var(--citrus);
    color: var(--berry-dark);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 6px var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px var(--shadow);
    background-color: #FFE633;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(59, 10, 69, 0.7), rgba(59, 10, 69, 0.7)), url('img/ZqosRC.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--berry-dark);
    font-size: 2.2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--citrus);
    border-radius: 2px;
}

/* About Section */
.about-section {
    background-color: var(--milky-white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.rounded-image {
    border-radius: 10px;
    box-shadow: 0 10px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.rounded-image:hover {
    transform: scale(1.03);
}

/* Benefits Section */
.benefits-section {
    background-color: var(--tea-green);
    color: var(--berry-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--milky-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--citrus);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--berry-dark);
}

/* SVG Icons for Benefits - Created with CSS */
.natural-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--tea-green) 10%, transparent 10%) 0 0,
                radial-gradient(circle, var(--tea-green) 10%, transparent 10%) 10px 10px;
    background-size: 20px 20px;
    background-color: transparent;
}

.quality-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: 
        linear-gradient(45deg, transparent 48%, var(--tea-green) 48%, var(--tea-green) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, var(--tea-green) 48%, var(--tea-green) 52%, transparent 52%);
    background-size: 16px 16px;
}

.wellness-icon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid var(--tea-green);
    box-sizing: border-box;
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--milky-white);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background-color: var(--light-text);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--citrus);
    color: var(--berry-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--berry-dark);
}

.step-arrow {
    width: 50px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.step-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--citrus);
    transform: translateY(-50%);
}

.step-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--citrus);
    border-right: 2px solid var(--citrus);
    transform: translateY(-50%) rotate(45deg);
}

/* Products Section */
.products-section {
    background-color: var(--berry-dark);
    color: var(--light-text);
}

.products-section .section-title {
    color: var(--light-text);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--milky-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--dark-text);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card h3 {
    padding: 20px 20px 10px;
    color: var(--berry-dark);
}

.product-card p {
    padding: 0 20px;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--berry-dark);
}

.product-button {
    display: block;
    background-color: var(--citrus);
    color: var(--berry-dark);
    text-align: center;
    padding: 12px;
    margin: 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-button:hover {
    background-color: #FFE633;
    transform: translateY(-3px);
}

.featured {
    border: 3px solid var(--citrus);
    transform: scale(1.05);
}

.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--turquoise-pastel);
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    transform: translateX(0);
}

.testimonial-content {
    background-color: var(--light-text);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    color: var(--citrus);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--berry-dark);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-controls label {
    width: 12px;
    height: 12px;
    background-color: var(--berry-dark);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-controls label.active {
    opacity: 1;
    transform: scale(1.2);
}

/* CSS-only Carousel */
#slide1:checked ~ .testimonial-carousel .testimonial-slide:nth-child(1),
#slide2:checked ~ .testimonial-carousel .testimonial-slide:nth-child(2),
#slide3:checked ~ .testimonial-carousel .testimonial-slide:nth-child(3) {
    opacity: 1;
    position: relative;
    transform: translateX(0);
}

#slide1:checked ~ .testimonial-carousel .carousel-controls label:nth-child(1),
#slide2:checked ~ .testimonial-carousel .carousel-controls label:nth-child(2),
#slide3:checked ~ .testimonial-carousel .carousel-controls label:nth-child(3) {
    opacity: 1;
    transform: scale(1.2);
}

.carousel-controls label:hover {
    opacity: 0.8;
}

/* Comparison Section */
.comparison-section {
    background-color: var(--milky-white);
}

.table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px var(--shadow);
    background-color: var(--light-text);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
}

.comparison-table th {
    background-color: var(--berry-dark);
    color: var(--light-text);
    text-transform: uppercase;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(178, 223, 219, 0.2);
}

.comparison-table tr:hover {
    background-color: rgba(178, 223, 219, 0.4);
}

.check {
    color: #2ecc71;
    font-size: 1.5rem;
}

.cross {
    color: #e74c3c;
    font-size: 1.5rem;
}

/* Order Form Section */
.order-section {
    background-color: var(--turquoise-pastel);
    padding-bottom: 100px;
}

.order-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--light-text);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow);
    position: relative;
    overflow: hidden;
}

.order-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--citrus);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--berry-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--berry-dark);
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 10, 69, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background-color: var(--citrus);
    color: var(--berry-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow);
}

.submit-button:hover {
    background-color: #FFE633;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px var(--shadow);
}

/* Footer Styles */
.site-footer {
    background-color: var(--berry-dark);
    color: var(--light-text);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    margin-top: 15px;
    opacity: 0.8;
}

.footer-contact h3,
.footer-links h3 {
    margin-bottom: 20px;
    color: var(--citrus);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-text);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--citrus);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--berry-dark);
    color: var(--light-text);
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
    min-width: 200px;
}

.cookie-accept {
    background-color: var(--citrus);
    color: var(--berry-dark);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background-color: #FFE633;
}

.cookie-content a {
    color: var(--citrus);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .step-arrow {
        display: none;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step {
        width: 100%;
    }
    
    .featured {
        transform: scale(1);
    }
    
    .featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0 15px 10px;
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .order-form-container {
        padding: 30px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Hidden Form Controls for CSS-only Carousel */
input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
} 