/* Base Styles */
:root {
    --primary-color: #d62828;
    --primary-dark: #b51b1b;
    --primary-light: #f07470;
    --secondary-color: #003049;
    --accent-color: #fcbf49;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #eaeaea;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --border-color: #dee2e6;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-xxl: 1.5rem;
    --font-size-display: 2.5rem;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

h1 {
    font-size: var(--font-size-display);
}

h2 {
    font-size: var(--font-size-xxl);
}

h3 {
    font-size: var(--font-size-xl);
}

h4 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: var(--spacing-md);
}

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

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

ul, ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-md);
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

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

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

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

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

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

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

.text-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.5rem 0;
}

.text-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.tertiary-btn:hover {
    background-color: #d1d1d1;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-md) 0;
}

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

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

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: var(--spacing-lg);
}

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
}

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

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    width: 30px;
    cursor: pointer;
}

.mobile-menu-btn span {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    margin-bottom: 5px;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 48, 73, 0.85), rgba(0, 48, 73, 0.85)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
    padding: var(--spacing-xxl) 0;
}

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

.hero p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-light);
}

.features h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.feature-card {
    background-color: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.feature-card .icon {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: var(--spacing-xl) 0;
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
}

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

.stat p {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0;
}

.cta-banner {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: var(--spacing-xl);
}

.cta-banner h3 {
    color: white;
    margin-bottom: var(--spacing-md);
}

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

.cta-banner .btn:hover {
    background-color: var(--background-light);
}

/* About Products Section */
.about-products {
    padding: var(--spacing-xxl) 0;
}

.about-products h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

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

.about-products-content p {
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.certification-info, .our-difference {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin: var(--spacing-xl) 0;
}

.our-difference ul {
    list-style-type: none;
    padding-left: 0;
}

.our-difference ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.our-difference ul li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Products Section */
.products {
    padding: var(--spacing-xxl) 0;
}

.products h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    color: var(--text-light);
}

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

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

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

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--spacing-lg);
}

.product-info h3 {
    margin-bottom: var(--spacing-sm);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    min-height: 3em;
}

.product-price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--spacing-xxl) 0;
}

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

.newsletter h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.newsletter p {
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.form-group {
    display: flex;
    margin-bottom: var(--spacing-md);
}

.form-group input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: var(--font-size-md);
}

.form-group button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Customer Letter Section */
.customer-letter {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-light);
}

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

.letter-content h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.letter {
    background-color: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    line-height: 1.8;
}

.letter p {
    margin-bottom: var(--spacing-md);
}

/* Story Section */
.story-section {
    padding: var(--spacing-xxl) 0;
}

.story-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-column h3 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-lg);
}

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

.footer-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
}

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

.social-icons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-icons a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: var(--spacing-lg);
    display: none; /* Hidden by default, shown via JS */
}

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

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.cookie-policy {
    font-size: var(--font-size-sm);
    color: var(--text-lighter);
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

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

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Product Detail Page */
.product-detail {
    padding: var(--spacing-xxl) 0;
}

.breadcrumb {
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
}

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

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

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

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

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.stars {
    color: var(--accent-color);
    display: flex;
    margin-right: var(--spacing-sm);
}

.product-description {
    margin-bottom: var(--spacing-lg);
}

.product-options {
    margin-bottom: var(--spacing-lg);
}

.option-group {
    margin-bottom: var(--spacing-md);
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.option-btn {
    padding: 0.5rem 1rem;
    background-color: var(--background-light);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.option-btn.active, .option-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.checkbox-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

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

.quantity-btn.minus {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.quantity-btn.plus {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

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

#product-quantity {
    width: 60px;
    height: 40px;
    border: 2px solid var(--border-color);
    text-align: center;
    font-size: var(--font-size-md);
    border-left: none;
    border-right: none;
}

.product-meta {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin-top: var(--spacing-lg);
}

.product-meta p {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.product-meta p:last-child {
    margin-bottom: 0;
}

.related-products {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-light);
}

.related-products h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

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

/* About Page */
.about-story {
    padding: var(--spacing-xxl) 0;
}

.about-story-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-xl);
}

.about-story-text h2 {
    margin-bottom: var(--spacing-lg);
}

.about-story-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-values {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-light);
}

.mission-values h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.mission-values-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-box {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.mission-box h3 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.mission-box p {
    font-size: var(--font-size-lg);
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.value-card h4 {
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: var(--font-size-sm);
}

.team-section {
    padding: var(--spacing-xxl) 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

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

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

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

.team-member h3 {
    margin: var(--spacing-md) var(--spacing-lg) var(--spacing-xs);
}

.team-member p {
    padding: 0 var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

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

.team-member .social-icons {
    justify-content: center;
    margin-top: var(--spacing-md);
}

.team-member .social-icons a {
    color: var(--text-light);
}

.team-member .social-icons a:hover {
    color: var(--primary-color);
}

.commitment-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-light);
}

.commitment-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.commitment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-text h3 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.commitment-stats {
    background-color: var(--secondary-color);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
    color: white;
    margin-bottom: var(--spacing-lg);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
}

.cta-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--primary-color);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

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

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

.cta-buttons .secondary-btn {
    background-color: transparent;
    border: 2px solid white;
}

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

/* Contact Page */
.contact-section {
    padding: var(--spacing-xxl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-info h2, .contact-form-container h2 {
    margin-bottom: var(--spacing-lg);
}

.contact-method {
    display: flex;
    margin-bottom: var(--spacing-lg);
}

.contact-icon {
    margin-right: var(--spacing-md);
    color: var(--primary-color);
}

.contact-details h3 {
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-size-lg);
}

.contact-details p {
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.social-contact {
    margin-top: var(--spacing-xl);
}

.social-contact h3 {
    margin-bottom: var(--spacing-md);
}

.contact-form {
    background-color: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
    display: block;
}

.contact-form label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

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

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1em;
}

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

.checkbox-group input {
    width: auto;
    margin-right: var(--spacing-sm);
}

.hours-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-light);
}

.hours-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.hours-column {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.hours-column h3 {
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.faq-section {
    padding: var(--spacing-xxl) 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

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

.faq-item {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
}

.faq-item h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Cart Page */
.cart-section {
    padding: var(--spacing-xxl) 0;
}

.cart-empty {
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.empty-cart-icon {
    color: var(--text-lighter);
    margin-bottom: var(--spacing-lg);
}

.cart-empty h2 {
    margin-bottom: var(--spacing-md);
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.cart-items-container h2, .cart-summary h2 {
    margin-bottom: var(--spacing-lg);
}

.cart-item {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) 0;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    margin-right: var(--spacing-lg);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

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

.cart-item-details h3 {
    margin-bottom: var(--spacing-xs);
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

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

.cart-item-actions {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.remove-item {
    color: var(--text-light);
    cursor: pointer;
    font-size: var(--font-size-sm);
}

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

.cart-summary {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    position: sticky;
    top: 100px;
}

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

.summary-row.total {
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--secondary-color);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    border-bottom: none;
}

.promo-code {
    display: flex;
    margin-bottom: var(--spacing-lg);
}

.promo-code input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.promo-code button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.checkout-btn {
    width: 100%;
    margin-bottom: var(--spacing-sm);
}

.cart-help {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.cart-help h3 {
    margin-bottom: var(--spacing-sm);
}

.cart-help p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.delivery-note {
    font-size: var(--font-size-sm);
    color: var(--text-lighter);
    margin-top: var(--spacing-md);
}

.recommended-products {
    margin-top: var(--spacing-xxl);
}

.recommended-products h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

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

/* Checkout Page */
.checkout-section {
    padding: var(--spacing-xxl) 0;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
}

.checkout-form-container {
    background-color: white;
}

.checkout-form {
    width: 100%;
}

.form-section {
    margin-bottom: var(--spacing-xl);
}

.form-section h2 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.checkout-form .form-group {
    margin-bottom: var(--spacing-md);
    display: block;
}

.checkout-form label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.checkout-form input, .checkout-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: var(--font-size-md);
}

.checkout-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1em;
}

.place-order-btn {
    width: 100%;
    margin-bottom: var(--spacing-sm);
}

.back-to-cart {
    display: block;
    text-align: center;
}

.order-summary-container {
    position: sticky;
    top: 100px;
}

.order-summary {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
}

.order-summary h2 {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.checkout-items {
    margin-bottom: var(--spacing-lg);
}

.checkout-item {
    display: flex;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

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

.checkout-item-image {
    width: 60px;
    height: 60px;
    margin-right: var(--spacing-md);
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

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

.checkout-item-details h3 {
    font-size: var(--font-size-md);
    margin-bottom: 0;
}

.checkout-item-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.checkout-item-quantity {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.order-security {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
}

.security-icon {
    color: var(--success-color);
    margin-right: var(--spacing-md);
}

.order-security p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-bottom: 0;
}

/* Success Page */
.success-section {
    padding: var(--spacing-xxl) 0;
}

.success-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: var(--spacing-lg);
}

.success-container h1 {
    margin-bottom: var(--spacing-md);
}

.success-message {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.success-info {
    background-color: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.success-info p {
    margin-bottom: var(--spacing-sm);
}

.success-info p:last-child {
    margin-bottom: 0;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.additional-info {
    padding: var(--spacing-xxl) 0;
    background-color: var(--background-light);
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.info-column {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.info-icon {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.info-column h3 {
    margin-bottom: var(--spacing-sm);
}

.info-column p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-story-content, 
    .commitment-content {
        grid-template-columns: 1fr;
    }
    
    .about-story-image {
        order: -1;
        margin-bottom: var(--spacing-lg);
    }
    
    .commitment-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .product-detail-image {
        margin-bottom: var(--spacing-lg);
    }
    
    .cart-content, 
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .order-summary-container {
        position: static;
        margin-top: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: var(--font-size-lg);
    }
    
    .feature-card, 
    .product-card, 
    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid, 
    .products-grid, 
    .team-grid, 
    .related-products-grid, 
    .recommended-products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        margin-top: var(--spacing-xl);
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
        margin-bottom: var(--spacing-lg);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cart-item-image {
        margin-right: 0;
        margin-bottom: var(--spacing-md);
    }
    
    .cart-item-actions {
        margin-left: 0;
        margin-top: var(--spacing-md);
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }
    
    .hours-grid, 
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .info-columns {
        grid-template-columns: 1fr;
    }
}

/* Animations and Effects */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.slide-up {
    animation: slideUp 0.5s ease-in-out;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-icon {
    margin-right: var(--spacing-sm);
}

.toast-message {
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: var(--font-size-lg);
    cursor: pointer;
    margin-left: var(--spacing-sm);
}
