/* Base Styles & Typography */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #e53935;
    --secondary-color: #4CAF50;
    --accent-color: #FF9800;
    --dark-color: #222;
    --light-color: #f9f9f9;
    --text-color: #333;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    text-align: center;
}

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

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 3.5rem 0;
}

/* Buttons */
.btn-primary, .btn-secondary, button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

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

.btn-primary:hover {
    background-color: #c62828;
    color: white;
}

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

.btn-secondary:hover {
    background-color: #ffebee;
}

.btn-view {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

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

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--dark-color);
    padding: 0.5rem;
    position: relative;
}

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

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

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

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

.cart-link svg {
    margin-right: 0.25rem;
}

#cart-count {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.25rem 0.4rem;
    border-radius: 50%;
    margin-left: 0.25rem;
}

/* Hero Section */
.hero {
    background-color: #f5f5f5;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    color: white;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Section */
.advantages {
    background-color: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

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

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.advantage-item h3 {
    margin-bottom: 0.75rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

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

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

/* About Products Section */
.about-products {
    background-color: #f8f8f8;
    padding: 4rem 0;
}

.about-products h2 {
    margin-bottom: 2rem;
}

.about-products p {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quality-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
}

.badge {
    text-align: center;
}

.badge svg {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Products Section */
.products {
    background-color: white;
}

.products h2 {
    margin-bottom: 2.5rem;
}

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

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

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

.product-image {
    height: 220px;
    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-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.25rem;
}

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

.description {
    padding: 0.5rem 1rem 1rem;
    font-size: 0.95rem;
    color: #666;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f9f9f9;
}

/* Testimonials Section */
.testimonials {
    background-color: #f8f8f8;
}

.testimonials h2 {
    margin-bottom: 2.5rem;
}

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

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: left;
    position: relative;
}

.testimonial .quote {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.customer {
    font-weight: 500;
    text-align: right;
    color: var(--dark-color);
    margin-bottom: 0;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.newsletter h2 {
    color: white;
}

.newsletter p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 4rem 0 2rem;
}

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

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

.footer-column p, .footer-column address {
    color: #aaa;
    font-style: normal;
    text-align: left;
}

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

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

.footer-column a {
    color: #aaa;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #777;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin-bottom: 1rem;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

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

.btn-cookie.customize, .btn-cookie.decline {
    background-color: #333;
    color: white;
}

.cookie-policy-link {
    color: #aaa;
    text-decoration: underline;
    margin-left: 1rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification p {
    margin: 0;
}

/* Product Details Page */
.product-details {
    padding: 4rem 0;
}

.breadcrumbs {
    margin-bottom: 2rem;
    color: #777;
    text-align: left;
}

.breadcrumbs a {
    color: #777;
}

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

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-info {
    text-align: left;
}

.product-info h1 {
    text-align: left;
    margin-bottom: 0.5rem;
}

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

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

.stars {
    color: #FFD700;
    margin-right: 0.5rem;
}

.rating-count {
    color: #777;
    font-size: 0.9rem;
}

.product-description {
    margin-bottom: 1.5rem;
}

.product-description p {
    text-align: left;
}

.product-details-list {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.product-details-list h3 {
    text-align: left;
    margin-bottom: 1rem;
}

.product-details-list ul {
    margin-bottom: 0;
}

.product-size-selection, .quantity-selection {
    margin-bottom: 1.5rem;
}

.product-size-selection h3, .quantity-selection h3 {
    text-align: left;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.size-option {
    display: block;
    background-color: #f9f9f9;
    padding: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.size-option:hover {
    background-color: #f0f0f0;
}

.size-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.size-option input:checked + .size-label {
    color: var(--primary-color);
    font-weight: 700;
}

.size-label {
    display: block;
    margin-bottom: 0.25rem;
}

.size-price {
    color: var(--primary-color);
    font-weight: 500;
}

.quantity-input {
    display: flex;
    align-items: center;
    max-width: 150px;
}

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

.quantity-input input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 1rem;
}

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

.btn-add-to-cart, .btn-buy-now {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-add-to-cart:hover {
    background-color: #ffebee;
}

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

.btn-buy-now:hover {
    background-color: #c62828;
}

.delivery-info {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.delivery-info svg {
    margin-right: 1rem;
    color: var(--primary-color);
}

.delivery-info p {
    margin: 0;
    text-align: left;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 4rem;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #777;
    position: relative;
}

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

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

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-panel {
    display: none;
}

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

.tab-panel h3 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.nutrition-table th, .nutrition-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.nutrition-table th {
    font-weight: 500;
}

.review {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.review:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.reviewer-name {
    font-weight: 500;
    margin-right: 1rem;
}

.review-rating {
    color: #FFD700;
    margin-right: 1rem;
    display: flex;
}

.review-date {
    font-size: 0.9rem;
    color: #777;
    margin-left: auto;
}

.review-text {
    text-align: left;
}

/* Related Products */
.related-products h2 {
    margin-bottom: 2rem;
}

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

.related-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding-bottom: 1rem;
    transition: var(--transition);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.related-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-item h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
}

.related-price {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.cart-section h1 {
    margin-bottom: 3rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 0;
}

.cart-empty svg {
    color: #ddd;
    margin-bottom: 1.5rem;
}

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

.cart-empty p {
    margin-bottom: 2rem;
    color: #777;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart-table th, .cart-table td {
    padding: 1rem;
    text-align: left;
    vertical-align: middle;
}

.cart-table th {
    border-bottom: 2px solid #eee;
    font-weight: 500;
}

.cart-table td {
    border-bottom: 1px solid #eee;
}

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

.cart-product-image {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    overflow: hidden;
    border-radius: 4px;
}

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

.cart-product-details h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

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

.cart-quantity button {
    background-color: #f0f0f0;
    border: none;
    color: var(--dark-color);
    font-size: 1.25rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.cart-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    margin: 0 0.5rem;
}

.cart-remove {
    color: #e53935;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.cart-totals {
    margin-bottom: 2rem;
}

.cart-subtotal, .cart-delivery, .cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.cart-total {
    padding-top: 0.75rem;
    border-top: 1px solid #ddd;
    font-weight: 700;
}

.cart-promo {
    margin-bottom: 2rem;
}

.cart-promo p {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cart-promo form {
    display: flex;
}

.cart-promo input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.cart-promo button {
    border-radius: 0 4px 4px 0;
}

.cart-actions {
    display: flex;
    gap: 1rem;
}

.cart-actions a {
    flex: 1;
    text-align: center;
}

/* Recommended Section */
.recommended {
    background-color: #f8f8f8;
    padding: 4rem 0;
}

.recommended h2 {
    margin-bottom: 2rem;
}

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

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

.checkout-section h1 {
    margin-bottom: 3rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

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

.checkout-form h2, .checkout-summary h2 {
    text-align: left;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: left;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.required {
    color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: 400;
}

input[type="checkbox"] {
    margin-right: 0.5rem;
}

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

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

.order-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    overflow: hidden;
    border-radius: 4px;
}

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

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

.order-item-details h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    text-align: left;
}

.order-item-details .price {
    padding: 0;
    font-size: 1rem;
    text-align: left;
}

.order-quantity {
    color: #777;
    font-size: 0.9rem;
    text-align: left;
}

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

.order-subtotal, .order-delivery, .order-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.order-total {
    padding-top: 0.75rem;
    border-top: 1px solid #ddd;
    font-weight: 700;
}

.delivery-estimate {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: white;
    border-radius: 4px;
}

.delivery-estimate svg {
    margin-right: 1rem;
    color: var(--primary-color);
}

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

.success-message {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.success-message h1 {
    margin-bottom: 1rem;
}

.delivery-info {
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.success-details {
    margin-bottom: 2rem;
}

.success-actions {
    margin-top: 2rem;
}

/* Special Offers */
.special-offers {
    background-color: #f8f8f8;
    padding: 4rem 0;
}

.special-offers h2 {
    margin-bottom: 2rem;
}

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

.offer {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.offer-content {
    padding: 2rem;
    text-align: center;
}

.offer h3 {
    margin-bottom: 0.5rem;
}

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

/* Contact Page */
.page-header {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.page-header p {
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2, .contact-form h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-info p {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    margin-right: 1.5rem;
    color: var(--primary-color);
}

.contact-details h3 {
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p, .contact-details address {
    margin-bottom: 0.25rem;
    text-align: left;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    text-align: left;
    margin-bottom: 1rem;
}

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

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

.map-container h2 {
    margin-bottom: 2rem;
}

.map {
    height: 400px;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777;
}

.faq-section h2 {
    margin-bottom: 2rem;
}

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

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

.faq-item h3 {
    text-align: left;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    text-align: left;
    margin-bottom: 0;
    color: #555;
}

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

.story-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.story-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.story-content p {
    text-align: left;
    margin-bottom: 1rem;
}

.about-values {
    background-color: #f8f8f8;
    padding: 5rem 0;
}

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

.value-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-item p {
    margin-bottom: 0;
}

.about-team {
    padding: 5rem 0;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-member p {
    margin-bottom: 0.75rem;
}

.team-member p:nth-child(3) {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member .social-icons {
    justify-content: center;
    margin-top: 1rem;
}

.about-achievements {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0;
}

.about-achievements h2 {
    color: white;
}

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

.achievement {
    text-align: center;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-testimonials {
    padding: 5rem 0;
}

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

.about-franchise {
    background-color: #f8f8f8;
    padding: 5rem 0;
}

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

.franchise-content h2 {
    margin-bottom: 1.5rem;
}

.franchise-content p, .franchise-content ul {
    margin-bottom: 1.5rem;
}

.franchise-content .btn-primary {
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .main-nav {
        flex-wrap: wrap;
    }
    
    .main-nav li {
        margin-left: 1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .advantages-grid, .stats {
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: 4px;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cart-table, .cart-table tbody, .cart-table tr, .cart-table td, .cart-table th {
        display: block;
    }
    
    .cart-table thead {
        display: none;
    }
    
    .cart-table td {
        padding: 0.5rem 1rem;
        text-align: right;
        position: relative;
    }
    
    .cart-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        font-weight: 500;
    }
    
    .cart-product {
        justify-content: flex-end;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-actions a {
        margin-bottom: 1rem;
    }
    
    .order-item {
        flex-direction: column;
        align-items: center;
    }
    
    .order-item-details {
        text-align: center;
    }
    
    .order-item-details h3, .order-item-details .price, .order-quantity {
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .size-options {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-policy-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
}
