/* Base styles and reset */
:root {
    --primary-color: #e53935;
    --primary-color-light: #ff6f60;
    --primary-color-dark: #ab000d;
    --secondary-color: #4caf50;
    --secondary-color-light: #80e27e;
    --secondary-color-dark: #087f23;
    --accent-color: #ffc107;
    --text-color: #333333;
    --text-color-light: #666666;
    --bg-color: #ffffff;
    --bg-color-light: #f5f5f5;
    --bg-color-dark: #e0e0e0;
    --border-color: #dddddd;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --error-color: #d32f2f;
    --success-color: #388e3c;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --header-height: 80px;
    --container-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px var(--shadow-color);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

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

section {
    padding: 60px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

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

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

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

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

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

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

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

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

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

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

.nav-links li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

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

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

.cart-icon svg {
    margin-right: 5px;
}

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

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Multilingual greeting */
.multilingual-greeting {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color-light);
    font-style: italic;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--primary-color-light);
    color: white;
    text-align: center;
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    text-align: center;
    background-color: var(--bg-color-light);
}

.features h2 {
    margin-bottom: 40px;
}

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

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

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

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

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

.stat {
    padding: 20px;
}

.stat h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.cta {
    margin-top: 30px;
}

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

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

.about-content p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.quality-assurance,
.heritage {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--bg-color-light);
    border-radius: var(--border-radius);
}

/* Products Section */
.products {
    background-color: var(--bg-color-light);
}

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

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

.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: transform 0.5s ease;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.product-info p {
    margin-bottom: 15px;
    color: var(--text-color-light);
    font-size: 15px;
}

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

.product-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
}

/* Product Detail Page */
.product-detail {
    padding-top: 40px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-color-light);
}

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

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

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

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

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

.product-detail-info h2 {
    margin-bottom: 15px;
}

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

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

.review-count {
    color: var(--text-color-light);
    font-size: 14px;
}

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

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

.meta-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.meta-icon {
    color: var(--primary-color);
    margin-right: 5px;
}

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

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.size-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    min-width: 80px;
}

.size-option:hover,
.size-option input:checked + .size-label {
    border-color: var(--primary-color);
    background-color: rgba(229, 57, 53, 0.05);
}

.size-option input {
    display: none;
}

.size-label {
    margin-bottom: 5px;
}

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

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

.quantity-selector {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color-light);
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    font-size: 16px;
    margin: 0 5px;
}

.product-tabs {
    margin-top: 60px;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-header {
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
}

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

.tab-content {
    display: none;
    padding: 20px 0;
}

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

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

.allergen-info {
    padding: 10px;
    background-color: #FFF3E0;
    border-radius: var(--border-radius);
}

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

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

.nutrition-table th {
    background-color: var(--bg-color-light);
}

.review-summary {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--bg-color-light);
    border-radius: var(--border-radius);
}

.review-average {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.average-score {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.average-stars {
    margin: 10px 0;
}

.total-reviews {
    font-size: 14px;
    color: var(--text-color-light);
}

.customer-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review {
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

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

.review-date {
    font-size: 14px;
    color: var(--text-color-light);
}

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

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

.related-products h3 {
    margin-bottom: 30px;
    text-align: center;
}

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

.related-product {
    text-align: center;
    padding: 15px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.related-product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.related-product h4 {
    margin-bottom: 5px;
}

.related-product-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

/* About Us Page */
.page-header {
    background-color: var(--primary-color-light);
    color: white;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 40px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
}

.about-story {
    margin-bottom: 60px;
}

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

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

.about-text h2 {
    margin-bottom: 20px;
}

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

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

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

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

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

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

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-section {
    padding: 60px 0;
}

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

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

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

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

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

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

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

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

.social-links a {
    color: var(--text-color-light);
    transition: var(--transition);
}

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

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

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

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

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

.milestone {
    position: relative;
    padding: 20px;
    width: 45%;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.milestone:nth-child(odd) {
    left: 0;
}

.milestone:nth-child(even) {
    left: 55%;
}

.milestone-year {
    position: absolute;
    top: -15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.milestone:nth-child(odd) .milestone-year {
    right: -15px;
}

.milestone:nth-child(even) .milestone-year {
    left: -15px;
}

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

.cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: white;
}

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

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

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

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

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

.contact-info h2 {
    margin-bottom: 30px;
}

.info-block {
    display: flex;
    margin-bottom: 30px;
}

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

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

.info-content p {
    margin-bottom: 5px;
}

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

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

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

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

.contact-form-container h2 {
    margin-bottom: 30px;
}

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

.form-group {
    width: calc(50% - 10px);
}

.full-width {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

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

textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

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

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 18px;
}

.faq-toggle {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

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

.cart-empty {
    text-align: center;
    padding: 60px 0;
}

.empty-cart-icon {
    margin: 0 auto 30px;
    color: var(--text-color-light);
}

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

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

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

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

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

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

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

.cart-item-name {
    margin-bottom: 5px;
}

.cart-item-size {
    font-size: 14px;
    color: var(--text-color-light);
}

.cart-item-price,
.cart-item-subtotal {
    font-weight: 600;
}

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

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color-light);
    border: none;
    cursor: pointer;
}

.cart-item-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.cart-item-action button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color-light);
}

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

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

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

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

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

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

.promo-code {
    margin-top: 30px;
    margin-bottom: 30px;
}

.promo-code h4 {
    margin-bottom: 10px;
}

.promo-input {
    display: flex;
}

.promo-input input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.promo-input button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.checkout-button {
    margin-bottom: 30px;
}

.checkout-button .btn {
    width: 100%;
}

.payment-methods {
    margin-top: 30px;
    text-align: center;
}

.payment-methods p {
    margin-bottom: 10px;
    color: var(--text-color-light);
    font-size: 14px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--text-color-light);
}

.features-banner {
    background-color: var(--bg-color-light);
    padding: 40px 0;
}

.features-banner .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 0;
}

.feature {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.feature-text h3 {
    margin-bottom: 5px;
}

.feature-text p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Checkout Page */
.checkout-section {
    padding: 60px 0;
}

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

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

.checkout-form-container h3 {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

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

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

.order-summary h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

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

.checkout-item-details {
    display: flex;
    gap: 5px;
}

.checkout-item-quantity {
    background-color: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 10px;
}

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

.order-totals {
    margin-top: 20px;
}

.back-to-cart {
    margin-top: 30px;
}

.back-to-cart .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

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

.success-icon {
    margin-bottom: 20px;
}

.success-message {
    font-size: 18px;
    margin-bottom: 20px;
}

.success-info {
    margin-bottom: 30px;
}

.next-steps {
    text-align: left;
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-color-light);
    border-radius: var(--border-radius);
}

.next-steps ul {
    list-style: disc;
    margin-left: 20px;
    margin-top: 10px;
}

.next-steps li {
    margin-bottom: 10px;
}

.success-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.related-products {
    background-color: var(--bg-color-light);
    padding: 60px 0;
    text-align: center;
}

.feedback-cta {
    text-align: center;
    padding: 60px 0;
    background-color: white;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-links ul li a {
    color: #ddd;
}

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

.footer-contact p {
    margin-bottom: 15px;
    color: #ddd;
}

.footer-contact .social-icons {
    margin-top: 20px;
}

.footer-contact .social-icons a {
    color: #ddd;
}

.footer-contact .social-icons a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #aaa;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
}

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
    margin-top: 10px;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

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

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

.notification-content p {
    margin-bottom: 0;
    margin-right: 20px;
}

#close-notification {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color-light);
}

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

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin-bottom: 0;
}

.close-modal {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color-light);
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .milestone {
        width: 80%;
        left: 10% !important;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .milestone-year {
        left: -15px !important;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0 0 30px 0;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .cart-header-product {
        display: none;
    }
    
    .cart-header-price {
        display: none;
    }
    
    .cart-header-quantity {
        display: none;
    }
    
    .cart-header-subtotal {
        display: none;
    }
    
    .cart-header-action {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .cart-item-product {
        width: 100%;
    }
    
    .cart-item-price,
    .cart-item-quantity,
    .cart-item-subtotal,
    .cart-item-action {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .cart-item-price::before {
        content: 'Price:';
    }
    
    .cart-item-quantity::before {
        content: 'Quantity:';
    }
    
    .cart-item-subtotal::before {
        content: 'Subtotal:';
    }
}

@media screen and (max-width: 576px) {
    .btn {
        padding: 10px 20px;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .success-content {
        padding: 20px;
    }
    
    .success-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
