/* ---- Basic Reset and Typography ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #d62828;
    --primary-dark: #a11d1d;
    --secondary-color: #247734;
    --accent-color: #ffc107;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #dee2e6;
    --gray-dark: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --body-font: 'Helvetica Neue', Arial, sans-serif;
    --heading-font: 'Georgia', 'Times New Roman', serif;
    --border-radius: 6px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    margin-bottom: 1rem;
    line-height: 1.2;
    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;
}

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

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

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

/* ---- Layout & Container ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 4rem 0;
}

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

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

.logo {
    max-width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}

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

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

.main-nav a {
    display: block;
    padding: 0.5rem 0;
    color: var(--dark-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
}

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

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

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

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

#cart-count {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 0.8rem;
    margin-left: 5px;
}

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

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

/* ---- Hero Section ---- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 8rem 0;
}

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

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

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

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

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

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

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

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

/* ---- Advantages Section ---- */
.advantages {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

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

.advantage-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.advantage-card .icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.advantage-card .icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.advantage-card h3 {
    margin-bottom: 1rem;
}

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

.stat {
    text-align: center;
    padding: 1rem;
}

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

.stat .label {
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.cta {
    text-align: center;
}

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

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

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

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

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

/* ---- Products Section ---- */
.products {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

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

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

.product-card:hover {
    transform: translateY(-10px);
    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.1);
}

.product-info {
    padding: 1.5rem;
}

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

.product-info h3 a {
    color: var(--dark-color);
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

.product-description {
    margin-bottom: 1rem;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

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

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

/* ---- Interesting Facts Section ---- */
.interesting-facts {
    padding: 5rem 0;
    background-color: #f1f1f1;
}

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

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

.fact-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.fact-card .icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.fact-card .icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.fact-card h3 {
    margin-bottom: 1rem;
}

/* ---- Daily Inspiration Section ---- */
.daily-inspiration {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.daily-inspiration h2 {
    color: white;
    margin-bottom: 2rem;
}

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

.inspiration-content .quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.inspiration-content .author {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.inspiration-image svg {
    color: var(--accent-color);
}

/* ---- Footer ---- */
footer {
    background-color: #333;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo img {
    width: 120px;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #ccc;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-contact p svg {
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

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

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

.social-icons svg {
    color: white;
}

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

.footer-legal {
    margin-bottom: 1rem;
}

.footer-legal a {
    color: #ccc;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: white;
}

.copyright {
    font-size: 0.9rem;
    color: #999;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cookie-more {
    font-size: 0.8rem;
}

.cookie-more a {
    color: var(--accent-color);
}

/* ---- Notification ---- */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

/* ---- Product Detail Page ---- */
.product-detail {
    padding: 5rem 0;
}

.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.breadcrumbs a {
    color: var(--gray-dark);
}

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

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

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

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

.product-detail-info h1 {
    margin-bottom: 1rem;
}

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

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

.rating-count {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

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

.product-size,
.product-crust {
    margin-bottom: 1.5rem;
}

.product-size h3,
.product-crust h3,
.product-quantity h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.size-options,
.crust-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.size-option,
.crust-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.size-option input,
.crust-option input {
    margin-right: 0.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

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

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

.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-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--gray-color);
    border-left: none;
    border-right: none;
}

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

.product-description,
.product-reviews,
.related-products {
    margin-bottom: 4rem;
}

.product-description h2,
.product-reviews h2,
.related-products h2 {
    margin-bottom: 2rem;
}

.product-description h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.product-description ul {
    margin-bottom: 2rem;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

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

.nutrition-table th {
    font-weight: 700;
    background-color: #f9f9f9;
}

.review {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

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

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

.review-author .name {
    font-weight: 700;
}

.review-author .date {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

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

/* ---- Cart Page ---- */
.cart-section {
    padding: 5rem 0;
}

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

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cart-empty svg {
    color: var(--gray-dark);
}

.cart-content {
    display: none;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

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

.cart-table th {
    font-weight: 700;
    background-color: #f9f9f9;
}

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

.cart-product-name {
    margin-left: 1rem;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    transition: var(--transition);
}

.remove-btn:hover {
    transform: scale(1.2);
}

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
}

.cart-totals {
    flex: 1;
    min-width: 300px;
}

.subtotal,
.tax,
.delivery,
.total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-color);
}

.total {
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: none;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
    min-width: 300px;
}

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

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

.checkout-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.checkout-form h2,
.order-summary h2 {
    margin-bottom: 2rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

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

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

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

.checkbox-label input {
    width: auto;
    margin-right: 0.5rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.order-summary {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: var(--border-radius);
}

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

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

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

.success-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon svg {
    width: 80px;
    height: 80px;
    color: var(--success-color);
}

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

.estimated-time {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-info {
    margin-bottom: 2rem;
}

.success-actions {
    margin-top: 2rem;
}

/* ---- Contact Page ---- */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/5.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.contact-hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-section {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

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

.contact-methods {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 1rem;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.contact-details .note {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.social-links h3 {
    margin-bottom: 1rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.map-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.responsive-map {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    min-height: 400px;
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e9e9e9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--gray-dark);
}

.map-placeholder svg {
    margin-bottom: 1rem;
}

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

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

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

.faq-item {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.modal-content {
    position: relative;
    background-color: white;
    max-width: 500px;
    margin: 10% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-icon {
    margin-bottom: 1.5rem;
}

.modal-icon svg {
    width: 60px;
    height: 60px;
    color: var(--success-color);
}

/* ---- About Page ---- */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/2.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.about-hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

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

.story-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.value-card {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    text-align: center;
}

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.about-quality {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

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

.quality-item {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.quality-icon {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quality-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.about-team {
    padding: 5rem 0;
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.team-member {
    text-align: center;
    padding-bottom: 2rem;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

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

.team-member p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f9f9f9;
    border-radius: 50%;
    transition: var(--transition);
}

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

.member-social a:hover svg {
    color: white;
}

.member-social svg {
    color: var(--dark-color);
}

.about-achievements {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

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

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

.achievement-card {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.achievement-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.achievement-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

.achievement-card h3 {
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: var(--gray-dark);
}

.about-testimonials {
    padding: 5rem 0;
}

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

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

.testimonial {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial-content {
    position: relative;
    padding: 1.5rem 0;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-author {
    text-align: right;
    font-style: italic;
}

.about-cta {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/3.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.about-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.about-cta p {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Responsive Design ---- */
@media (max-width: 992px) {
    .container {
        padding: 0 2rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        display: none;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav li {
        margin: 0;
    }
    
    .main-nav a {
        padding: 1rem 2rem;
    }
    
    .advantages-grid,
    .quality-content,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat {
        margin-bottom: 2rem;
    }
    
    .cart-actions,
    .form-actions {
        flex-direction: column;
    }
    
    .cart-actions a,
    .form-actions button,
    .form-actions a {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .product-detail-image {
        min-height: 300px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions button {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo,
    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .about-cta h2 {
        font-size: 1.8rem;
    }
}
