:root {
    --primary-color: #159246;
    --secondary-color: #221f1f;
    --text-color: #333;
    --background-color: #f4f4f4;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

#menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

nav {
    display: flex;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-weight: 300;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: var(--primary-color);
}

main {
    padding: 2rem 0;
}

h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-details {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.product-image, .product-description {
    flex: 1 1 300px;
}

.product-image img {
    width: 100%;
    height: auto;
    max-width: 800px;
    max-height: 800px;
    object-fit: contain;
    border-radius: 8px;
}

.price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
}

.net-content {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-description h3 {
    font-family: var(--font-heading);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-description ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.product-description ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.cta-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: var(--font-heading);
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
    text-align: center;
}

.cta-button:hover {
    background-color: #128C7E;
}

.cta-button i {
    margin-right: 8px;
}

footer {
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    #menu-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 1rem;
    }

    nav.active {
        display: flex;
    }

    nav a {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    .product-info {
        flex-direction: column;
    }

    .product-image, .product-description {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    header h1 {
        font-size: 1.2rem;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }

    .product-details {
        padding: 1rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .cta-button {
        width: 100%;
    }
}
/* ... (previous CSS remains the same) ... */

.shipping {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.video-reviews {
    margin-top: 2rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    /* ... (previous media query styles remain the same) ... */

    .video-container {
        margin-bottom: 2rem;
    }
}

/* ... (rest of the CSS remains the same) ... *//* ... (previous CSS remains the same) ... */

.contact-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-whatsapp {
    text-align: center;
    padding: 2rem;
    background-color: #f0f8f1;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-whatsapp i {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1rem;
}

.contact-whatsapp h3 {
    margin-bottom: 0.5rem;
}

.contact-whatsapp .cta-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: var(--font-heading);
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.contact-whatsapp .cta-button:hover {
    background-color: #128C7E;
}

.contact-whatsapp .cta-button i {
    font-size: 1.2rem;
    margin-right: 8px;
    color: white;
}

.business-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.business-hours h3 {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .contact-content {
        padding: 1.5rem;
    }
    
    .contact-whatsapp {
        padding: 1.5rem;
    }
}

/* ... (rest of the CSS remains the same) ... */
/* ... (previous CSS remains the same) ... */

.return-policy-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.policy-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #f0f8f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info h3 {
    margin-bottom: 0.5rem;
}

.contact-info .cta-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: var(--font-heading);
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.contact-info .cta-button:hover {
    background-color: #128C7E;
}

.contact-info .cta-button i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .return-policy-content {
        padding: 1.5rem;
    }
    
    .policy-section {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
}

/* ... (rest of the CSS remains the same) ... */
/* ... (previous CSS remains the same) ... */

.about-us-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mission-statement {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.about-section {
    margin-bottom: 1.5rem;
}

.about-section h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.about-section ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.contact-info {
    background-color: #f0f8f1;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info h3 {
    margin-bottom: 0.5rem;
}

.contact-info .cta-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: var(--font-heading);
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.contact-info .cta-button:hover {
    background-color: #128C7E;
}

.contact-info .cta-button i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .about-us-content {
        padding: 1.5rem;
    }
    
    .mission-statement {
        font-size: 1.1rem;
    }
}

/* ... (rest of the CSS remains the same) ... */