/* ================ GENERAL STYLES ================ */
:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --primary-light: #e6f0ff;
    --secondary-color: #ffc107;
    --secondary-dark: #e0a800;
    --text-color: #333;
    --light-text: #666;
    --lighter-text: #999;
    --dark-bg: #2c3e50;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --container-width: 1200px;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --border-radius: 6px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary, 
.btn-secondary, 
.btn-view, 
.btn-add-to-cart, 
.btn-buy-now,
.btn-checkout,
.btn-place-order {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: var(--heading-font);
    border: none;
    font-size: 1rem;
}

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

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

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

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

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

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

.btn-add-to-cart {
    background-color: var(--primary-color);
    color: white;
}

.btn-add-to-cart:hover {
    background-color: var(--primary-dark);
}

.btn-buy-now {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-buy-now:hover {
    background-color: var(--secondary-dark);
}

.btn-checkout, .btn-place-order {
    background-color: var(--success-color);
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.btn-checkout:hover, .btn-place-order:hover {
    background-color: #218838;
    color: white;
}

/* Section spacing */
section {
    padding: 60px 0;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
}

/* ================ HEADER & NAVIGATION ================ */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

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

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

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;
}

.cart-link svg {
    margin-right: 5px;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
}

/* ================ HERO SECTION ================ */
.hero {
    background: linear-gradient(135deg, #0056b3 0%, #3a8dff 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* ================ BENEFITS SECTION ================ */
.benefits {
    background-color: var(--light-bg);
    text-align: center;
}

.benefits h2 {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.benefit-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.benefit-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--light-text);
    font-size: 0.95rem;
}

.statistics {
    display: flex;
    justify-content: space-around;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.cta-banner {
    background-color: var(--primary-light);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.cta-banner h3 {
    margin-bottom: 20px;
    font-size: 1.75rem;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics {
        flex-wrap: wrap;
    }
    
    .stat {
        width: 50%;
        margin-bottom: 30px;
    }
}

/* ================ ABOUT PRODUCTS SECTION ================ */
.about-products {
    background-color: white;
}

.product-info {
    max-width: 900px;
    margin: 0 auto;
}

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

.product-info h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-info p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

/* ================ PRODUCTS SECTION ================ */
.products {
    background-color: var(--light-bg);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

.product-image {
    height: 250px;
    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.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 15px;
    display: block;
}

.description {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.btn-view, .btn-add-to-cart {
    padding: 8px 16px;
    font-size: 0.9rem;
    flex: 1;
    margin: 0 5px;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ================ USER LETTER SECTION ================ */
.user-letter {
    background-color: white;
    padding: 80px 0;
}

.letter-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    position: relative;
}

.letter-content:before {
    content: """;
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 100px;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.letter-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.letter-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.title {
    font-style: italic;
    color: var(--light-text);
}

/* ================ GLOSSARY SECTION ================ */
.glossary {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0;
}

.glossary h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glossary-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.glossary-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.glossary-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.glossary-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .glossary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .glossary-grid {
        grid-template-columns: 1fr;
    }
}

/* ================ FOOTER ================ */
footer {
    background-color: #242a31;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.footer-column p svg {
    margin-right: 10px;
    min-width: 16px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ================ COOKIE NOTICE ================ */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(52, 58, 64, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 15px;
    text-align: center;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-cookie.accept:hover {
    background-color: #218838;
}

.btn-cookie.customize {
    background-color: #6c757d;
    color: white;
}

.btn-cookie.customize:hover {
    background-color: #5a6268;
}

.btn-cookie.decline {
    background-color: transparent;
    border: 1px solid #6c757d;
    color: white;
}

.btn-cookie.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-policy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-policy a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cookie {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* ================ PRODUCT DETAIL PAGE ================ */
.product-detail {
    padding: 60px 0;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.breadcrumb a {
    color: var(--light-text);
}

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

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-detail-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-info h1 {
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    color: #ffc107;
    margin-right: 10px;
}

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

.product-price {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.current-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 15px;
}

.original-price {
    font-size: 1.25rem;
    color: var(--lighter-text);
    text-decoration: line-through;
    margin-right: 15px;
}

.discount {
    background-color: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-features {
    margin-bottom: 30px;
}

.product-features h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.product-features ul {
    list-style-type: none;
}

.product-features ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.6;
}

.product-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.quantity-selector {
    margin-bottom: 25px;
}

.quantity-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: fit-content;
}

.quantity-control button {
    background-color: var(--light-bg);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-control button:hover {
    background-color: var(--border-color);
}

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

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.action-buttons button {
    flex: 1;
    padding: 15px 20px;
}

.product-guarantee {
    display: flex;
    align-items: flex-start;
    background-color: var(--primary-light);
    padding: 20px;
    border-radius: var(--border-radius);
}

.product-guarantee svg {
    min-width: 24px;
    margin-right: 15px;
    color: var(--primary-color);
}

.product-guarantee p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.product-tabs {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 25px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

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

.tab-content h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tab-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.tab-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.tab-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.content-section {
    margin-bottom: 30px;
}

.content-section h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.testimonial {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.author-info p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 40px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 15px 10px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

/* ================ ABOUT PAGE ================ */
.page-header {
    background: linear-gradient(135deg, #0056b3 0%, #3a8dff 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.page-header h1 {
    color: white;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story {
    padding: 60px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    margin-top: 50px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.about-content ul li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--light-text);
}

.team-section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member > p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member > p + p {
    color: var(--light-text);
    padding: 0 20px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.team-member .social-links {
    justify-content: center;
    margin-bottom: 20px;
}

.team-member .social-links a {
    width: 32px;
    height: 32px;
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.impact-section {
    padding: 60px 0;
    text-align: center;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
}

.impact-stat {
    padding: 0 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
}

.testimonials-slider .testimonial {
    background-color: transparent;
    padding: 0;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--secondary-dark);
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        flex-wrap: wrap;
    }
    
    .impact-stat {
        width: 50%;
        margin-bottom: 30px;
    }
}

/* ================ CONTACT PAGE ================ */
.contact-info-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2, 
.contact-form h2 {
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    margin-bottom: 30px;
}

.method-icon {
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 24px;
}

.method-details h3 {
    margin-bottom: 10px;
}

.method-details p {
    margin-bottom: 5px;
    color: var(--light-text);
}

.method-details a {
    display: block;
    margin-bottom: 10px;
}

.business-hours h3 {
    margin-bottom: 15px;
}

.business-hours p {
    margin-bottom: 10px;
}

.contact-form form {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: var(--light-bg);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.faq-section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ================ CART PAGE ================ */
.cart-section {
    padding: 60px 0;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty svg {
    color: var(--light-text);
    margin-bottom: 20px;
}

.cart-empty h2 {
    margin-bottom: 15px;
}

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

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-table th {
    background-color: var(--light-bg);
    font-weight: 600;
}

.product-col {
    width: 50%;
}

.price-col,
.quantity-col,
.subtotal-col {
    width: 15%;
}

.remove-col {
    width: 5%;
}

.cart-product {
    display: flex;
    align-items: center;
}

.cart-product-image {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.cart-product-info h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.cart-product-info p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cart-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: fit-content;
}

.cart-quantity button {
    background-color: var(--light-bg);
    border: none;
    width: 30px;
    height: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-quantity button:hover {
    background-color: var(--border-color);
}

.cart-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.cart-remove {
    color: var(--danger-color);
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove:hover {
    color: #b02a37;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.cart-coupon {
    display: flex;
}

.cart-coupon input {
    width: 200px;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 0.9rem;
}

.btn-apply-coupon {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn-apply-coupon:hover {
    background-color: var(--primary-dark);
}

.btn-update-cart {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-update-cart:hover {
    background-color: var(--border-color);
}

.cart-totals {
    max-width: 400px;
    margin-left: auto;
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
}

.cart-totals h2 {
    margin-bottom: 20px;
}

.totals-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.totals-table th,
.totals-table td {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.totals-table th {
    text-align: left;
    font-weight: 600;
}

.totals-table td {
    text-align: right;
}

.total-row th,
.total-row td {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: none;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.secure-checkout svg {
    margin-right: 8px;
}

.continue-shopping {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.continue-shopping h2 {
    margin-bottom: 15px;
}

.continue-shopping p {
    margin-bottom: 40px;
    color: var(--light-text);
}

.featured-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .featured-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .cart-coupon {
        width: 100%;
    }
    
    .cart-coupon input {
        flex: 1;
    }
    
    .btn-update-cart {
        width: 100%;
    }
    
    .cart-totals {
        max-width: none;
    }
    
    .featured-products {
        grid-template-columns: 1fr;
    }
}

/* ================ CHECKOUT PAGE ================ */
.checkout-section {
    padding: 60px 0;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkout-form-container {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.checkout-form-container h2 {
    margin-bottom: 30px;
}

.order-summary {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    align-self: start;
}

.order-summary h2 {
    margin-bottom: 20px;
}

.order-products {
    margin-bottom: 30px;
}

.order-product {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.order-product-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.order-product-info {
    flex: 1;
}

.order-product-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.order-product-price {
    display: flex;
    justify-content: space-between;
    color: var(--light-text);
    font-size: 0.9rem;
}

.order-totals {
    margin-top: 20px;
}

.order-subtotal,
.order-discount,
.order-total {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.order-subtotal,
.order-discount {
    border-bottom: 1px solid var(--border-color);
}

.order-total {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 10px;
}

.satisfaction-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: var(--success-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.satisfaction-guarantee svg {
    margin-right: 8px;
}

@media (max-width: 992px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }
}

/* ================ SUCCESS PAGE ================ */
.success-section {
    padding: 80px 0;
    text-align: center;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 30px;
}

.success-content h1 {
    margin-bottom: 20px;
    color: var(--success-color);
}

.success-message {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.success-details {
    text-align: left;
    margin-bottom: 40px;
}

.success-details h2 {
    margin: 30px 0 20px;
}

.success-details ol {
    padding-left: 20px;
    margin-bottom: 30px;
}

.success-details ol li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.success-actions {
    margin-top: 40px;
}

.next-steps {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.7;
}

.additional-resources {
    padding: 60px 0;
}

.additional-resources h2 {
    text-align: center;
    margin-bottom: 40px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}
