/* Base Styles */
:root {
    --primary-color: #e53935;
    --secondary-color: #388e3c;
    --accent-color: #f9a825;
    --text-color: #333333;
    --light-text: #ffffff;
    --light-bg: #f5f5f5;
    --dark-bg: #212121;
    --border-color: #e0e0e0;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', Arial, sans-serif;
}

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

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

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

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: #c62828;
}

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

ul {
    list-style: none;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: #c62828;
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

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

.btn-tertiary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
    background-color: var(--light-bg);
    color: var(--text-color);
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

/* Header Styles */
header {
    background-color: var(--light-text);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.main-nav {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

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

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    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;
    color: var(--light-text);
    text-align: center;
    padding: 120px 0;
    position: relative;
}

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

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--light-text);
}

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

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

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

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

.benefit-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
}

.benefit-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.stat {
    text-align: center;
    padding: 20px;
    min-width: 150px;
}

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

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

.cta-container {
    text-align: center;
}

/* About Products Section */
.about-products {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

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

.about-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--light-text);
}

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

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

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

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

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

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.product-card .price {
    padding: 0 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-card .description {
    padding: 0 20px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #666;
}

.product-actions {
    padding: 0 20px 20px;
    display: flex;
    justify-content: space-between;
}

.product-actions .btn {
    flex: 1;
    margin: 0 5px;
    padding: 10px 15px;
    font-size: 0.85rem;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
    background-color: var(--light-text);
}

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

.product-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: #666;
}

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

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

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

.star {
    color: #ddd;
    font-size: 1.2rem;
}

.star.filled {
    color: #f9a825;
}

.star.half-filled {
    position: relative;
    color: #ddd;
}

.star.half-filled:before {
    content: "★";
    position: absolute;
    color: #f9a825;
    width: 50%;
    overflow: hidden;
}

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

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

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

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

.meta-item {
    margin-bottom: 20px;
}

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

.size-options {
    display: flex;
}

.size-btn {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    margin-right: 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover,
.size-btn.active {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

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

.quantity-btn {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.quantity-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

.quantity-selector input {
    width: 60px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
}

.feature svg {
    margin-right: 8px;
    color: var(--primary-color);
}

.product-details-tabs {
    margin-bottom: 80px;
}

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

.tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    color: #666;
}

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

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

.tab-panel {
    display: none;
}

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

.ingredients-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.ingredients-list li {
    margin-bottom: 8px;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table td {
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

.nutrition-table tr:last-child td {
    border-bottom: none;
}

.nutrition-table td:first-child {
    font-weight: 600;
}

.review {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-stars {
    display: flex;
    margin-right: 15px;
}

.reviewer-name {
    font-weight: 600;
}

.review-text {
    margin-bottom: 10px;
}

.review-date {
    font-size: 0.9rem;
    color: #666;
}

.related-products {
    margin-top: 80px;
}

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

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

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

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

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

.related-product h3 {
    padding: 15px 15px 5px;
    font-size: 1.2rem;
}

.related-product .price {
    padding: 0 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.related-product .btn {
    margin: 0 15px 15px;
    width: calc(100% - 30px);
}

/* Cart Section */
.cart-section {
    padding: 80px 0;
    background-color: var(--light-text);
}

.cart-section h1 {
    text-align: center;
    margin-bottom: 40px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    text-align: center;
}

.cart-empty svg {
    color: #bdbdbd;
    margin-bottom: 20px;
}

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

.cart-empty p {
    margin-bottom: 30px;
    max-width: 400px;
    color: #666;
}

.cart-items {
    display: none;
}

.cart-headers {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

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

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

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

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

.cart-item-size {
    font-size: 0.9rem;
    color: #666;
}

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

.cart-item-quantity span {
    margin: 0 10px;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove button:hover {
    color: var(--primary-color);
}

.cart-summary {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

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

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-total-row.total {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: 20px;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    width: 300px;
}

.promo-section {
    margin-top: 80px;
}

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

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.promo-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-text);
    border-radius: 50%;
    box-shadow: var(--shadow);
}

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

.promo-card h3 {
    margin-bottom: 10px;
}

/* Checkout Section */
.checkout-section {
    padding: 80px 0;
    background-color: var(--light-text);
}

.checkout-section h1 {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.checkout-form-container h2,
.order-summary h2 {
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-checkbox label {
    font-weight: normal;
}

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

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

#order-items {
    margin-bottom: 30px;
}

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

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

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

.order-item-quantity {
    margin-right: 10px;
    font-weight: 600;
}

.order-item-name {
    margin-right: 10px;
}

.order-item-size {
    font-size: 0.9rem;
    color: #666;
}

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

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

.order-total-row.total {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: 20px;
}

.order-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.order-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.order-info-item svg {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Success Section */
.success-section {
    padding: 80px 0;
    background-color: var(--light-text);
}

.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.success-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4caf50;
    color: var(--light-text);
    border-radius: 50%;
}

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

.success-details {
    margin-bottom: 30px;
    color: #666;
}

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

.tracking-steps {
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
}

.tracking-steps:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: var(--border-color);
    left: 21px;
    top: 0;
}

.tracking-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.tracking-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--light-bg);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}

.tracking-step.active .step-icon {
    background-color: #4caf50;
    border-color: #4caf50;
    color: var(--light-text);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 5px;
}

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

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

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

.recommendation-card h3 {
    padding: 20px 20px 10px;
}

.recommendation-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: #666;
}

.recommendation-card .btn {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* Contact Section */
.page-banner {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 60px 0;
}

.page-banner h1 {
    margin-bottom: 15px;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--light-text);
}

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

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

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

.contact-details h3 {
    margin-bottom: 5px;
}

.social-contact h3 {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
}

.form-success svg {
    color: #4caf50;
    margin-bottom: 20px;
}

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

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

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

.faq-item {
    background-color: var(--light-text);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

/* About Section */
.about-story {
    padding: 80px 0;
    background-color: var(--light-text);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 30px;
}

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

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.about-values {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-values h2 {
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

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

.value-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-team {
    padding: 80px 0;
    background-color: var(--light-text);
}

.about-team h2,
.team-intro {
    text-align: center;
}

.team-intro {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
}

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

.team-member {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    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: 250px;
    object-fit: cover;
}

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

.team-member p {
    padding: 0 20px;
}

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

.team-member .social-links {
    padding: 0 20px 20px;
    justify-content: center;
}

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

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

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
    left: 50px;
    top: 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    width: 100px;
    text-align: right;
    padding-right: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.timeline-content {
    flex: 1;
    background-color: var(--light-text);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-left: 30px;
    position: relative;
}

.timeline-content:before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: -38px;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-content h3 {
    margin-bottom: 10px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-text);
}

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

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

.testimonial {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.author-name {
    font-weight: 600;
}

.author-location {
    font-size: 0.9rem;
    color: #666;
}

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

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn-primary {
    background-color: var(--light-text);
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--light-bg);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--light-text);
}

.cta-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer Styles */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-links a {
    color: #bdbdbd;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--light-text);
}

.footer-section .social-links {
    margin-top: 20px;
}

.footer-section .social-links a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
}

.footer-section .social-links a:hover {
    background-color: var(--primary-color);
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.5s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    flex: 1;
    margin: 0 20px 10px 0;
    font-size: 0.95rem;
}

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

.cookie-link {
    color: #bdbdbd;
    font-size: 0.9rem;
    text-decoration: underline;
    margin-left: 10px;
}

.cookie-link:hover {
    color: var(--light-text);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: translateX(200%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

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

.notification p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--light-text);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav li {
        margin: 0;
        padding: 10px 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .product-detail-grid,
    .checkout-container,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        grid-row: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .benefits-grid,
    .products-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-headers {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cart-item-price,
    .cart-item-quantity,
    .cart-item-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .cart-item-price:before {
        content: 'Price:';
        font-weight: 600;
    }
    
    .cart-item-quantity:before {
        content: 'Quantity:';
        font-weight: 600;
    }
    
    .cart-item-total:before {
        content: 'Total:';
        font-weight: 600;
    }
    
    .cart-item-remove {
        text-align: right;
    }
    
    .cart-summary {
        flex-direction: column;
        align-items: center;
    }
    
    .cart-totals {
        width: 100%;
    }
    
    .cart-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        margin: 5px;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        margin-top: 15px;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        flex: 1;
    }
}

/* Print Styles */
@media print {
    header, footer, .btn, .cookie-consent, .notification {
        display: none !important;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
}
