:root {
    --primary-color: #ff6600;
    --secondary-color: #4b1d83;
    --tertiary-color: #2c3e50;
    --background-color: #f8f9fa;
    --card-background: #ffffff;
    --text-color: #333333;
    --light-text: #6c757d;
    --border-color: #dee2e6;
    --hover-color: #e65c00;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary-color: #ff6600;
    --secondary-color: #7b46ad;
    --tertiary-color: #2c3e50;
    --background-color: #121212;
    --card-background: #1e1e1e;
    --text-color: #f8f9fa;
    --light-text: #adb5bd;
    --border-color: #343a40;
    --hover-color: #ff8533;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: var(--transition);
    position: relative;
    min-height: 100vh;
}

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

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

ul {
    list-style: none;
}

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

button, .cta-button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition);
}

/* Header Styles */
header {
    background-color: var(--card-background);
    box-shadow: var(--shadow);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.logo-container h1 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin: 0 1rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 4px;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
    background-color: rgba(255, 102, 0, 0.1);
}

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

.cart-count {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-left: 5px;
}

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle span {
    font-size: 0.9rem;
    color: var(--light-text);
}

.theme-toggle button {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.theme-toggle button:hover {
    background-color: var(--border-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(75, 29, 131, 0.7)), url('https://via.placeholder.com/1920x600');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

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

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Advantages Section */
.advantages {
    padding: 4rem 2rem;
    background-color: var(--card-background);
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background-color: var(--background-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.icon {
    margin-bottom: 1.5rem;
}

.icon svg {
    width: 60px;
    height: 60px;
    fill: var(--primary-color);
}

.advantage-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--tertiary-color);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 4rem auto;
    max-width: 1000px;
}

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

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

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

.cta-container {
    text-align: center;
    margin-top: 3rem;
}

.cta-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--tertiary-color);
}

/* About Products Section */
.about-products {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.about-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content h3 {
    font-size: 1.5rem;
    color: var(--tertiary-color);
    margin: 2rem 0 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background-color: var(--card-background);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Products Section */
.products {
    padding: 4rem 2rem;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.tip-of-day {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background-color: rgba(255, 102, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.tip-of-day h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.2rem;
}

.price {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
    padding: 0 1rem;
}

.description {
    padding: 0.5rem 1rem;
    color: var(--light-text);
    font-size: 0.9rem;
    height: 60px;
    overflow: hidden;
}

.product-actions {
    display: flex;
    padding: 1rem;
    gap: 0.5rem;
}

.view-button, .add-to-cart {
    flex: 1;
    padding: 0.8rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
}

.view-button {
    background-color: var(--tertiary-color);
    color: white;
}

.view-button:hover {
    background-color: #34495e;
    color: white;
}

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

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

/* Footer Styles */
footer {
    background-color: var(--tertiary-color);
    color: white;
    padding: 4rem 2rem 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 2rem;
    flex: 1 1 300px;
}

.footer-logo .logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 2 1 600px;
}

.footer-column {
    flex: 1 1 150px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.footer-column ul li a {
    color: #ecf0f1;
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.social-links svg {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transform: translateX(200%);
    transition: transform 0.3s ease;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--card-background);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--tertiary-color);
}

.cookie-content p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

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

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

#accept-cookies {
    background-color: var(--primary-color);
    color: white;
}

#customize-cookies {
    background-color: var(--tertiary-color);
    color: white;
}

#decline-cookies {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.cookie-policy-link {
    font-size: 0.9rem;
}

/* Product Detail Page */
.product-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.product-gallery {
    flex: 1 1 400px;
}

.product-main-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-info {
    flex: 1 1 400px;
}

.product-title {
    font-size: 2rem;
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

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

.product-description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-meta {
    margin-bottom: 2rem;
}

.product-meta div {
    margin-bottom: 0.5rem;
    display: flex;
}

.meta-label {
    font-weight: bold;
    width: 150px;
    color: var(--tertiary-color);
}

.product-actions-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-color);
    font-size: 1.2rem;
    cursor: pointer;
}

#quantity {
    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;
}

.product-buy-now, .product-add-to-cart {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
}

.product-buy-now {
    background-color: var(--primary-color);
    color: white;
}

.product-add-to-cart {
    background-color: var(--tertiary-color);
    color: white;
}

.product-features {
    margin-top: 3rem;
}

.product-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--tertiary-color);
}

.features-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.features-list li {
    margin-bottom: 0.5rem;
}

/* Cart Page */
.cart-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.cart-title {
    font-size: 2rem;
    color: var(--tertiary-color);
    margin-bottom: 2rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cart-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--tertiary-color);
}

.cart-empty .cta-button {
    margin-top: 1rem;
}

.cart-items {
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cart-header {
    display: grid;
    grid-template-columns: 100px 2fr 1fr 1fr 50px;
    padding: 1rem;
    background-color: var(--background-color);
    font-weight: bold;
    color: var(--tertiary-color);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 2fr 1fr 1fr 50px;
    padding: 1rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-weight: bold;
    color: var(--primary-color);
}

.cart-quantity {
    display: flex;
    align-items: center;
    max-width: 120px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
}

.cart-quantity input {
    width: 40px;
    height: 30px;
}

.remove-item {
    color: var(--error-color);
    cursor: pointer;
    background: none;
    font-size: 1.2rem;
}

.cart-summary {
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-top: 2rem;
}

.cart-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--tertiary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-row:last-of-type {
    border-bottom: none;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--tertiary-color);
}

.checkout-button {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Checkout Page */
.checkout-container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.checkout-title {
    font-size: 2rem;
    color: var(--tertiary-color);
    margin-bottom: 2rem;
}

.checkout-form {
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--tertiary-color);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    background-color: var(--background-color);
    color: var(--text-color);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkout-summary {
    margin-top: 2rem;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.checkout-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--tertiary-color);
}

.submit-order {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
}

.submit-order:hover {
    background-color: var(--hover-color);
}

/* Success Page */
.success-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 60px;
    height: 60px;
    fill: white;
}

.success-title {
    font-size: 2rem;
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Contact Page */
.contact-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info-section {
    flex: 1 1 400px;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.contact-form-section {
    flex: 1 1 400px;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.contact-info-section h2, .contact-form-section h2 {
    font-size: 1.8rem;
    color: var(--tertiary-color);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    margin-right: 1rem;
    background-color: rgba(255, 102, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--tertiary-color);
}

.contact-map {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* About Page */
.about-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.about-title {
    font-size: 2.5rem;
    color: var(--tertiary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-text {
    flex: 1 1 500px;
}

.about-image {
    flex: 1 1 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--tertiary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.team-section {
    margin-top: 4rem;
}

.team-title {
    font-size: 2rem;
    color: var(--tertiary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

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

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

.team-member h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.3rem;
    color: var(--tertiary-color);
}

.team-member p {
    color: var(--light-text);
    padding: 0 1rem 1rem;
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
}

.team-social-link {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-social-link:hover {
    background-color: var(--primary-color);
}

.team-social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
}

.team-social-link:hover svg {
    fill: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        width: 100%;
        justify-content: center;
    }
    
    .theme-toggle {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 80px 2fr 1fr 50px;
    }
    
    .cart-item-price {
        display: none;
    }
    
    .product-detail {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-nav li {
        margin: 0 0.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .advantages-container {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 60px 2fr 50px;
        font-size: 0.9rem;
    }
    
    .cart-quantity {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
