:root {
    --primary-color: #d62828;
    --primary-dark: #9e1a1a;
    --primary-light: #f44336;
    --secondary-color: #fcbf49;
    --accent-color: #f77f00;
    --dark-color: #003049;
    --light-color: #eae2b7;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --grey-light: #f5f5f5;
    --grey: #e0e0e0;
    --grey-dark: #9e9e9e;
    --black: #000000;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --header-height: 80px;
    --max-width: 1200px;
    
    /* Dark theme colors (will be activated on scroll) */
    --dark-bg: #121212;
    --dark-card-bg: #1e1e1e;
    --dark-text: #e0e0e0;
    --dark-border: #333;
    --dark-accent: #ff6b35;
}

/* Dark Theme - Will be activated via JavaScript on scroll */
body.dark-theme {
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

body.dark-theme header {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--dark-border);
}

body.dark-theme .product-card,
body.dark-theme .cart-items,
body.dark-theme .cart-summary,
body.dark-theme .checkout-form-container,
body.dark-theme .order-summary,
body.dark-theme .contact-form-section .form-container,
body.dark-theme .map-container,
body.dark-theme .team-member,
body.dark-theme .testimonial,
body.dark-theme .value-item,
body.dark-theme .quality-item,
body.dark-theme .faq-item,
body.dark-theme .location-item {
    background-color: var(--dark-card-bg);
    border-color: var(--dark-border);
}

body.dark-theme .btn-primary {
    background-color: var(--dark-accent);
}

body.dark-theme .fun-fact {
    background-color: var(--dark-card-bg);
}

body.dark-theme .footer-content {
    border-color: var(--dark-border);
}

body.dark-theme input,
body.dark-theme textarea,
body.dark-theme select {
    background-color: var(--dark-card-bg);
    border-color: var(--dark-border);
    color: var(--dark-text);
}

body.dark-theme .btn-outline {
    border-color: var(--dark-text);
    color: var(--dark-text);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease;
}

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

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

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.main-nav a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
}

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1600x900/?pizza');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    margin-bottom: 60px;
}

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

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

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

/* Advantages Section */
.advantages {
    padding: 60px 0;
    background-color: var(--grey-light);
    text-align: center;
}

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

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

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

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

.advantage-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    border-radius: 50%;
    color: var(--primary-color);
}

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

.stat-item {
    text-align: center;
    padding: 20px;
}

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

.cta {
    margin-top: 40px;
}

/* About Products Section */
.about-products {
    padding: 60px 0;
}

.product-story {
    max-width: 800px;
    margin: 0 auto;
}

.product-story h3 {
    margin-top: 30px;
}

/* Products Section */
.products {
    padding: 60px 0;
}

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

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

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

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

.product-card a {
    display: block;
    color: var(--text-color);
}

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

.product-card h3 {
    padding: 15px 20px 0;
    margin-bottom: 0.5rem;
}

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

.product-card .description {
    padding: 0 20px 15px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    padding: 15px 20px 20px;
    gap: 10px;
}

.product-actions button {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
}

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

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

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

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

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

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

.stars {
    color: var(--accent-color);
    margin-right: 10px;
}

.review-count {
    color: var(--light-text);
}

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

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

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
    background-color: var(--grey-light);
    border-radius: var(--border-radius);
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-weight: 600;
    color: var(--light-text);
    font-size: 0.9rem;
}

.meta-value {
    font-weight: 600;
}

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

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

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

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

.quantity-selector input {
    width: 70px;
    height: 40px;
    border: 1px solid var(--grey);
    text-align: center;
    font-size: 1rem;
}

.product-delivery {
    margin-top: 30px;
    color: var(--light-text);
}

.product-delivery p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-delivery svg {
    margin-right: 10px;
    color: var(--primary-color);
}

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

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

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

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

.tab-pane {
    display: none;
}

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

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

.nutrition-table th,
.nutrition-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--grey);
}

.nutrition-table th {
    width: 40%;
}

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

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

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

.reviewer {
    font-weight: 600;
    margin-right: 15px;
}

.review-date {
    color: var(--light-text);
    margin-right: 15px;
}

.related-products h2 {
    margin-bottom: 30px;
}

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

.related-product {
    border: 1px solid var(--grey);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.related-product a {
    display: block;
    color: var(--text-color);
}

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

.related-product h3 {
    padding: 10px 15px 0;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

/* Fun Fact Section */
.fun-fact {
    background-color: var(--light-color);
    padding: 40px 0;
    text-align: center;
    margin: 60px 0;
}

.fun-fact h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.fun-fact p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact svg {
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 3px;
}

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

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

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

.footer-bottom {
    text-align: center;
    color: var(--grey);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.cookie-policy {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}

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

/* Cart Page */
.cart-section {
    padding: 60px 0;
}

.cart-container {
    margin-bottom: 40px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.empty-cart-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--grey-dark);
}

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

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 15px 20px;
    background-color: var(--grey-light);
    font-weight: 600;
}

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

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

.product-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

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

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

.product-remove button {
    background: none;
    border: none;
    color: var(--grey-dark);
    cursor: pointer;
    transition: var(--transition);
}

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

.cart-actions {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.cart-update {
    display: flex;
    gap: 10px;
}

.cart-summary {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

.cart-summary h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--grey);
    padding-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 1px solid var(--grey);
    padding-top: 15px;
    margin-top: 15px;
}

.checkout-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-notes {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.checkout-notes p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkout-notes svg {
    margin-right: 10px;
    color: var(--primary-color);
}

.cart-recommendations {
    padding: 60px 0;
}

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

/* Checkout Page */
.checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--grey);
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 10px;
}

.progress-step.active .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.progress-step.completed .step-number {
    background-color: var(--accent-color);
    color: var(--white);
}

.progress-line {
    width: 100px;
    height: 2px;
    background-color: var(--grey);
    margin: 0 20px;
}

.progress-line.completed {
    background-color: var(--accent-color);
}

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

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

.checkout-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 0 calc(50% - 10px);
}

.form-group.full-width {
    flex: 1 0 100%;
}

.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(--grey);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

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

.order-summary {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.order-item {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid var(--grey);
}

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

.order-item-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

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

.order-item-details h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

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

.summary-totals {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--grey);
}

.order-notes {
    margin-top: 40px;
}

.note-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

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

.note-item svg {
    margin-right: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.note-content h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

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

/* Success Page */
.success-section {
    padding: 60px 0;
}

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

.success-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background-color: #e6f7e8;
    border-radius: 50%;
    color: #28a745;
    margin-bottom: 30px;
}

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

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

.detail-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--grey);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

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

.detail-icon {
    margin-right: 20px;
    color: var(--primary-color);
}

.detail-content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

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

.recommendations {
    padding: 60px 0;
}

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

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

.contact-info {
    padding-bottom: 60px;
}

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

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

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

.contact-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-form-section {
    padding-bottom: 60px;
}

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

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

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

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

.map-placeholder {
    height: 300px;
    background-color: var(--grey-light);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.location-info h3 {
    margin-bottom: 15px;
}

.location-info ul {
    list-style: disc;
    padding-left: 20px;
}

.location-info li {
    margin-bottom: 10px;
}

.faq {
    padding-bottom: 60px;
}

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

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

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

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

.locations {
    padding-bottom: 60px;
}

.locations h2 {
    text-align: center;
    margin-bottom: 10px;
}

.locations-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--light-text);
}

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

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

.location-item h3 {
    margin-bottom: 15px;
}

.location-item p {
    margin-bottom: 20px;
}

.form-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.form-success.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.success-content svg {
    color: #28a745;
    margin-bottom: 20px;
}

.success-content h3 {
    margin-bottom: 15px;
}

/* About Page */
.about-story {
    padding-bottom: 60px;
}

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

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

.mission-values {
    padding: 60px 0;
    background-color: var(--grey-light);
}

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

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

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

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

.value-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team {
    padding: 60px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 10px;
}

.team-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--light-text);
}

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

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

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

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

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

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

.team-member p:nth-of-type(1) {
    font-weight: 600;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px 20px;
}

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

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

.quality-commitment {
    padding: 60px 0;
    background-color: var(--grey-light);
}

.quality-commitment h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.quality-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.testimonials {
    padding: 60px 0;
}

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

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    max-width: 350px;
    transition: var(--transition);
}

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

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

.testimonial-author {
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav li {
        margin: 15px 0;
        width: 100%;
    }
    
    .advantage-items,
    .product-grid,
    .values-grid,
    .team-grid,
    .quality-content,
    .faq-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cart-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-price,
    .product-quantity,
    .product-total,
    .product-remove {
        justify-self: flex-start;
    }
    
    .product-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-info img {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .checkout-progress {
        flex-direction: column;
        gap: 20px;
    }
    
    .progress-line {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    
    .form-group {
        flex: 1 0 100%;
    }
}
