/* Base Styles and CSS Reset */
:root {
    --primary-color: #0f6e54;
    --primary-light: #1a8769;
    --primary-dark: #094c3a;
    --secondary-color: #ffc107;
    --secondary-light: #ffcd38;
    --secondary-dark: #c79100;
    --accent-color: #6c63ff;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --background-color: #fff;
    --background-light: #f9f9f9;
    --background-dark: #eaeaea;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --border-color: #ddd;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--primary-light);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-color);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.6rem;
}

button {
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    transition: var(--transition);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8rem;
}

.logo img {
    height: 5rem;
    width: auto;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 3rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.6rem;
    padding: 1rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -0.8rem;
    right: -0.8rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 4rem;
    height: 3rem;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(15, 110, 84, 0.9) 0%, rgba(15, 110, 84, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 4.8rem;
    color: white;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Neon Button Effect */
.neon-button {
    display: inline-block;
    background-color: transparent;
    color: white;
    border: 2px solid var(--secondary-color);
    padding: 1.2rem 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--secondary-color), 0 0 20px rgba(255, 193, 7, 0.3);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease, box-shadow 0.5s ease;
}

.neon-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    box-shadow: 0 0 15px var(--secondary-color), 0 0 30px rgba(255, 193, 7, 0.5);
    text-shadow: none;
    transform: translateY(-3px);
}

.neon-button:active {
    transform: translateY(-1px);
    box-shadow: 0 0 8px var(--secondary-color);
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.benefits h2:after {
    content: '';
    width: 6rem;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.benefit-card {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-card .icon {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 2rem;
    background-color: rgba(15, 110, 84, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 1.5rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 6rem;
    margin-bottom: 4rem;
}

.stat {
    text-align: center;
    padding: 0 2rem;
}

.stat h4 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat p {
    font-size: 1.6rem;
    color: var(--text-light);
    font-weight: 500;
}

.cta-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 5rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 8px rgba(15, 110, 84, 0.3);
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--primary-light);
    box-shadow: 0 6px 12px rgba(15, 110, 84, 0.4);
    color: white;
    transform: translateY(-3px);
}

/* About Products Section */
.about-products {
    padding: 8rem 0;
}

.about-products h2 {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.about-products h2:after {
    content: '';
    width: 6rem;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.about-products-content {
    max-width: 90rem;
    margin: 0 auto;
}

.text-content {
    line-height: 1.8;
}

.text-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.text-content ul {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.text-content ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.text-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.certifications {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-top: 4rem;
}

.certifications h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

/* Products Section */
.products {
    padding: 8rem 0;
    background-color: var(--background-light);
}

.products h2 {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.products h2:after {
    content: '';
    width: 6rem;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
}

.product-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-image {
    height: 25rem;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.description {
    color: var(--text-light);
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-actions {
    display: flex;
    justify-content: space-between;
}

.view-details {
    padding: 1rem 1.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5rem;
    font-weight: 500;
    transition: var(--transition);
}

.view-details:hover {
    background-color: var(--primary-color);
    color: white;
}

.add-to-cart {
    padding: 1rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5rem;
    font-weight: 500;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.testimonials h2:after {
    content: '';
    width: 6rem;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.testimonial {
    flex: 1 1 30rem;
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 8rem;
    color: rgba(15, 110, 84, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote {
    margin-bottom: 2rem;
}

.author {
    text-align: right;
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
    background-color: var(--primary-dark);
    color: white;
}

.newsletter h2 {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

.newsletter p {
    text-align: center;
    max-width: 60rem;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 60rem;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 5rem 0 0 5rem;
    font-size: 1.6rem;
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    padding: 0 3rem;
    border-radius: 0 5rem 5rem 0;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary-light);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 4rem;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
    opacity: 0.7;
}

address {
    font-style: normal;
    opacity: 0.8;
}

address p {
    margin-bottom: 0.8rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 2rem;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    max-width: 80rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 3rem;
    font-weight: 500;
}

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

.btn-accept:hover {
    background-color: var(--primary-light);
}

.btn-customize {
    background-color: var(--background-dark);
    color: var(--text-color);
}

.btn-customize:hover {
    background-color: var(--text-lighter);
}

.btn-decline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-lighter) !important;
}

.btn-decline:hover {
    background-color: var(--background-dark);
}

.cookie-more {
    font-size: 1.3rem;
    margin-bottom: 0;
}

/* Notification */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1001;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* Product Detail Page */
.product-detail {
    padding: 6rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: start;
}

.breadcrumbs {
    margin-bottom: 2rem;
    color: var(--text-lighter);
    font-size: 1.4rem;
}

.breadcrumbs a {
    color: var(--text-lighter);
}

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

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    color: var(--secondary-dark);
}

.filled {
    color: var(--secondary-color);
}

.half-filled {
    position: relative;
    color: var(--secondary-dark);
}

.half-filled:before {
    content: "★";
    position: absolute;
    color: var(--secondary-color);
    width: 50%;
    overflow: hidden;
}

.rating-count {
    color: var(--text-lighter);
    font-size: 1.4rem;
}

.features-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.features-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.delivery-info {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.delivery-info p {
    margin-bottom: 1rem;
}

.delivery-info p:last-child {
    margin-bottom: 0;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quantity-control {
    display: flex;
    align-items: center;
}

.qty-btn {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
}

.qty-btn.minus {
    border-radius: 50% 0 0 50%;
}

.qty-btn.plus {
    border-radius: 0 50% 50% 0;
}

.quantity input {
    width: 5rem;
    height: 3rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    font-size: 1.6rem;
}

.buy-now {
    padding: 1.2rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5rem;
    font-weight: 600;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.buy-now:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
}

/* Product Details Tabs */
.product-details-tabs {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: transparent;
    border: none;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active:after {
    width: 100%;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.details-item {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.details-item h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.compatibility {
    margin-top: 3rem;
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.steps-container {
    margin-bottom: 4rem;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 1rem;
}

.demo-video {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.reviews-summary {
    display: flex;
    gap: 5rem;
    margin-bottom: 4rem;
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.average-rating {
    text-align: center;
    flex-shrink: 0;
}

.rating-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.rating-count {
    margin-top: 1rem;
    display: block;
}

.rating-bars {
    flex-grow: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.stars {
    width: 8rem;
    flex-shrink: 0;
}

.bar {
    flex-grow: 1;
    height: 1rem;
    background-color: var(--background-dark);
    border-radius: 1rem;
    overflow: hidden;
}

.fill {
    height: 100%;
    background-color: var(--primary-color);
}

.percentage {
    width: 5rem;
    text-align: right;
    flex-shrink: 0;
}

.review {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reviewer-name {
    font-weight: 700;
    font-size: 1.8rem;
}

.review-date {
    color: var(--text-lighter);
}

.faq-container {
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    background-color: var(--background-color);
    cursor: pointer;
    position: relative;
    font-weight: 600;
    font-size: 1.8rem;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    color: var(--primary-color);
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 50rem;
}

/* Related Products */
.related-products {
    padding: 6rem 0;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.related-products h2:after {
    content: '';
    width: 6rem;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

/* Cart Page Styles */
.cart-section {
    padding: 6rem 0;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

.cart-empty svg {
    color: var(--text-lighter);
    margin-bottom: 2rem;
}

.cart-empty h2 {
    margin-bottom: 1rem;
}

.cart-empty p {
    margin-bottom: 3rem;
    color: var(--text-light);
}

.continue-shopping {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5rem;
    font-weight: 600;
    transition: var(--transition);
}

.continue-shopping:hover {
    background-color: var(--primary-light);
    color: white;
}

.cart-content {
    display: none;
    gap: 3rem;
}

.cart-items {
    flex-grow: 1;
}

.cart-item {
    display: flex;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.item-image {
    width: 10rem;
    height: 10rem;
    margin-right: 2rem;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.item-details {
    flex-grow: 1;
}

.item-details h3 {
    margin-bottom: 0.5rem;
}

.item-price {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.item-quantity {
    display: flex;
    align-items: center;
}

.item-quantity input {
    width: 5rem;
    height: 3.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
}

.item-total {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    min-width: 12rem;
}

.item-total p {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-lighter);
    cursor: pointer;
}

.remove-item:hover {
    color: var(--error-color);
}

.cart-summary {
    width: 30%;
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    height: fit-content;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin: 2.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 2rem;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.checkout-btn:hover {
    background-color: var(--primary-light);
}

.cart-recommendations {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

/* Checkout Page Styles */
.checkout-section {
    padding: 6rem 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
}

.checkout-form-container {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.checkout-form {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.form-group {
    width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.checkout-form label {
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

.checkout-agreement {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.checkout-agreement input[type="checkbox"] {
    margin-top: 0.3rem;
}

.place-order-btn {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5rem;
    font-weight: 600;
    margin-top: 2rem;
    transition: var(--transition);
}

.place-order-btn:hover {
    background-color: var(--primary-light);
}

.order-summary {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    height: fit-content;
}

.order-items {
    margin-bottom: 3rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.item-name {
    display: flex;
    align-items: center;
}

.item-quantity {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    padding: 0.3rem 0.8rem;
    border-radius: 3rem;
    margin-left: 1rem;
}

.item-price {
    font-weight: 600;
}

.order-totals {
    margin-bottom: 3rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 2rem;
    font-weight: 600;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.order-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 500;
}

.order-support {
    text-align: center;
    color: var(--text-light);
}

.support-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.support-link:hover {
    text-decoration: underline;
}

/* Success Page */
.success-section {
    padding: 8rem 0 6rem;
}

.success-message {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 6rem;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.success-text {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.email-text {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.primary-btn {
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.secondary-btn {
    padding: 1.2rem 3rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5rem;
    font-weight: 600;
    transition: var(--transition);
}

.secondary-btn:hover {
    background-color: rgba(15, 110, 84, 0.1);
}

.success-info {
    background-color: var(--background-light);
    padding: 4rem;
    border-radius: var(--border-radius);
    max-width: 90rem;
    margin: 0 auto;
}

.success-info h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.info-step {
    display: flex;
    gap: 2rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.8rem;
}

.success-offers {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.success-offers h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.success-offers > p {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-light);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.offer-card {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    gap: 2rem;
}

.offer-icon {
    color: var(--primary-color);
}

.offer-content h3 {
    margin-bottom: 1rem;
}

.offer-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.offer-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Contact Page */
.page-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.page-banner h1 {
    color: white;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 5rem;
}

.contact-info h2 {
    margin-bottom: 2.5rem;
}

.contact-info > p {
    max-width: 50rem;
    margin-bottom: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.detail {
    display: flex;
    gap: 2rem;
}

.detail .icon {
    color: var(--primary-color);
}

.detail h3 {
    margin-bottom: 0.8rem;
}

.detail p {
    color: var(--text-light);
    margin-bottom: 0;
}

.social-connect h3 {
    margin-bottom: 2rem;
}

.contact-form-container {
    background-color: var(--background-light);
    padding: 3.5rem;
    border-radius: var(--border-radius);
}

.contact-form-container h2 {
    margin-bottom: 3rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 5rem;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--primary-light);
}

.faq-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.office-hours {
    padding: 6rem 0;
}

.office-hours h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.office, .support {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.office h3, .support h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.office ul, .support ul {
    padding-left: 0;
}

.office li, .support li {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.office li:before, .support li:before {
    display: none;
}

.form-success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.form-success-message.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background-color: white;
    padding: 4rem;
    border-radius: var(--border-radius);
    max-width: 50rem;
    width: 90%;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.success-content svg {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.success-content h3 {
    margin-bottom: 1.5rem;
}

.success-content button {
    margin-top: 3rem;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5rem;
    font-weight: 600;
    transition: var(--transition);
}

.success-content button:hover {
    background-color: var(--primary-light);
}

/* About Page */
.about-story {
    padding: 6rem 0;
}

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

.story-text h2 {
    margin-bottom: 3rem;
    position: relative;
}

.story-text h2:after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    width: 6rem;
    height: 3px;
    background-color: var(--primary-color);
}

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

.story-vision {
    background-color: var(--background-light);
    padding: 3.5rem;
    border-radius: var(--border-radius);
}

.story-vision h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.story-vision ul {
    padding-left: 2rem;
}

.story-vision ul li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.story-vision ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.team-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-intro {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 5rem;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-member img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
}

.team-member h3 {
    margin: 2rem 2rem 0.5rem;
    font-size: 2rem;
}

.team-member p {
    margin: 0 2rem 2rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin: 0 2rem 2rem;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(15, 110, 84, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.achievements {
    padding: 6rem 0;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.achievement-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.achievement {
    text-align: center;
}

.count {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.label {
    font-size: 1.8rem;
    color: var(--text-light);
}

.partners {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.partners h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.partners > p {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 5rem;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
}

.partner {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    box-shadow: var(--box-shadow);
}

.cta-section {
    padding: 8rem 0;
    background: linear-gradient(45deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    max-width: 70rem;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: var(--secondary-color);
    color: var(--text-color);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

.cta-section .cta-button:hover {
    background-color: var(--secondary-light);
    box-shadow: 0 6px 12px rgba(255, 193, 7, 0.4);
}

/* Product Curriculum (for courses) */
.curriculum {
    margin-top: 3rem;
}

.module {
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.module-header {
    padding: 2rem;
    background-color: var(--background-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-header h3 {
    margin-bottom: 0;
}

.module-duration {
    color: var(--text-light);
    font-size: 1.4rem;
}

.module-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.module.active .module-content {
    padding: 0 2rem 2rem;
    max-height: 50rem;
}

.bonus-materials {
    margin-top: 4rem;
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.time-commitment, .tech-requirements {
    margin-top: 4rem;
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
}

/* Timeline for product pages */
.timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.timeline-point {
    width: 15rem;
    flex-shrink: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-note {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-top: 2rem;
}

.results-timeline {
    margin-top: 4rem;
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
}

/* Media Queries */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
    
    .cart-content {
        flex-direction: column;
    }
    
    .cart-summary {
        width: 100%;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 25rem;
        height: 100%;
        background-color: var(--background-color);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    nav ul {
        flex-direction: column;
        padding: 10rem 0 0;
        height: 100%;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 1.5rem;
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .benefits, .products, .testimonials, .about-products {
        padding: 6rem 0;
    }
    
    .testimonial-slider {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: var(--border-radius);
        margin-bottom: 1.5rem;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius);
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    .logo img {
        height: 4rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .benefits-grid, .products-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
}
