/* Base Styles & Variables */
:root {
    --primary-color: #D94F2B; /* Warm orange-red */
    --secondary-color: #2B2B2B; /* Deep charcoal */
    --tertiary-color: #F9F5F0; /* Warm off-white */
    --accent-color: #738C79; /* Sage green */
    --text-color: #333333;
    --light-text: #FFFFFF;
    --border-color: #E6E6E6;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FF9800;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --deep-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --btn-radius: 4px;
    --max-width: 1200px;
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

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

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

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

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

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

a:hover {
    color: #B73E20; /* Darker shade of primary */
}

ul {
    list-style: none;
}

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

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.6rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    font-size: 1.6rem;
    line-height: 1.5;
    border-radius: var(--btn-radius);
    transition: var(--transition);
}

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

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

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

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

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

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

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

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

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

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.6rem;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    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 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-icon {
    display: inline-block;
    position: relative;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(43, 43, 43, 0.7), rgba(43, 43, 43, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5.6rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

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

.benefit-item h3 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

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

.stat {
    text-align: center;
    flex: 1;
    min-width: 15rem;
}

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

.stat p {
    font-size: 1.8rem;
    font-weight: 500;
}

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

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

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

.about-products p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-products h3 {
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.certification-badge {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 3rem;
    background-color: var(--accent-color);
    color: var(--light-text);
    font-size: 1.4rem;
    font-weight: 600;
}

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

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

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--deep-shadow);
}

.product-image {
    position: relative;
    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: 2rem;
}

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

.product-info p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.6rem;
}

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

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

.product-actions .btn {
    padding: 1rem 1.5rem;
    flex: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background-color: var(--tertiary-color);
}

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

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

.testimonial {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-stars {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.6rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 5rem 0 2rem;
}

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

.footer-logo img {
    height: 5rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h3,
.footer-contact h3 {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.footer-links ul li a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

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

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

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

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

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

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

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

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

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

.cookie-buttons .btn {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

.cookie-link {
    font-size: 1.4rem;
    text-decoration: underline;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: var(--light-text);
    padding: 1.5rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 9999;
    display: flex;
    align-items: center;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.breadcrumbs {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #666;
}

.breadcrumbs a {
    color: #666;
}

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.product-detail-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px;
}

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

.product-detail-info h1 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
}

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

.stars {
    color: var(--primary-color);
    font-size: 1.8rem;
}

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

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

.product-description p {
    font-size: 1.6rem;
    line-height: 1.7;
}

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

.product-features ul {
    list-style: disc;
    margin-left: 2rem;
}

.product-features li {
    margin-bottom: 0.8rem;
}

.nutritional-info {
    margin-bottom: 3rem;
}

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

.nutritional-info table td {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.quantity-btn {
    background-color: var(--tertiary-color);
    border: none;
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.heat-level {
    margin-bottom: 3rem;
}

.heat-meter {
    display: flex;
    gap: 0.5rem;
}

.heat-dot {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--border-color);
}

.heat-dot.active {
    background-color: var(--primary-color);
}

.heat-label {
    margin-top: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.tooltip-container {
    position: relative;
}

.info-icon {
    font-size: 1.4rem;
    color: #666;
    cursor: help;
}

.info-icon[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: var(--light-text);
    font-size: 1.2rem;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
}

.product-tabs {
    margin-bottom: 6rem;
}

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

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.tab-btn.active {
    border-bottom-color: var(--primary-color);
    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; }
}

.reviews {
    display: grid;
    gap: 2rem;
}

.review {
    background-color: var(--tertiary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
}

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

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

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

.ingredients-list, .preparation-steps {
    margin-left: 2rem;
}

.ingredients-list li, .preparation-steps li {
    margin-bottom: 1rem;
}

.ingredients-note, .preparation-note {
    margin-top: 2rem;
    font-style: italic;
    color: #666;
}

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

/* Cart Page */
.cart-section {
    padding: 6rem 0;
    min-height: 60vh;
}

.cart-section h1 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.cart-empty svg {
    margin: 0 auto 2rem;
    color: #666;
}

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

.cart-empty p {
    margin-bottom: 3rem;
    color: #666;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.cart-items {
    display: grid;
    gap: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    align-items: center;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-quantity {
    width: 4rem;
    height: 3rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

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

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

.cart-summary {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    align-self: start;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 2.4rem;
}

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

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

.cart-total-row.total {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

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

.recommended-products {
    margin-top: 6rem;
}

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

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

.checkout-section h1 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.checkout-form h2, .order-summary h2 {
    margin-bottom: 3rem;
    font-size: 2.4rem;
}

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

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

label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

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

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

.form-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.order-summary {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    align-self: start;
    position: sticky;
    top: 100px;
}

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

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

.order-item-name {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-item-quantity {
    background-color: var(--tertiary-color);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 600;
}

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

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

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

.order-total-row.total {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

/* Success Page */
.success-section {
    padding: 8rem 0;
    min-height: 60vh;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 6rem;
}

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

.success-content h1 {
    margin-bottom: 2rem;
}

.success-message {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.success-details {
    margin-bottom: 3rem;
    font-size: 1.6rem;
}

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

/* About Us Page */
.about-hero {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 10rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(43, 43, 43, 0.7), rgba(43, 43, 43, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 6rem;
}

.about-hero h1 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 2rem;
    opacity: 0.9;
}

.about-story {
    padding: 6rem 0;
}

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

.about-content h2 {
    margin-bottom: 3rem;
}

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

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

.about-philosophy {
    padding: 6rem 0;
    background-color: var(--tertiary-color);
}

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

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

.philosophy-item {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--deep-shadow);
}

.philosophy-icon {
    margin: 0 auto 2rem;
    color: var(--primary-color);
}

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

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    font-size: 1.8rem;
}

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

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

.team-member img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow);
}

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

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

.team-member p:last-of-type {
    margin-bottom: 2rem;
}

.team-member .social-icons {
    justify-content: center;
}

.about-process {
    padding: 8rem 0;
    background-color: var(--tertiary-color);
}

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

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 2px;
    height: calc(100% - 3rem);
    background-color: var(--accent-color);
}

.step-number {
    width: 5rem;
    height: 5rem;
    background-color: var(--accent-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
}

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

.cta-section {
    padding: 8rem 0;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.cta-section h2 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page */
.contact-hero {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 10rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(43, 43, 43, 0.7), rgba(43, 43, 43, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 6rem;
}

.contact-hero h1 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 2rem;
    opacity: 0.9;
}

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

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

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

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

.info-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 0.5rem;
}

.social-connect {
    margin-top: 4rem;
}

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

.contact-form {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

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

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

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 2rem;
}

.toggle-icon {
    font-size: 2rem;
    font-weight: 700;
    transition: var(--transition);
}

.faq-question.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: 2rem;
    display: none;
}

.faq-question.active + .faq-answer {
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    header .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-toggle {
        display: flex;
        position: absolute;
        top: 2rem;
        right: 2rem;
    }
    
    .cart-content,
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
    }
    
    .cart-item-controls {
        grid-column: span 2;
        justify-content: flex-end;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 55%;
    }
    
    .hero h1 {
        font-size: 4.2rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
    }
}
