/* Global Styles */
:root {
    --primary-color: #6a7b76;
    --primary-dark: #556561;
    --primary-light: #8a9b96;
    --accent-color: #d4b483;
    --accent-hover: #c9a66e;
    --dark-color: #333333;
    --light-color: #f7f7f7;
    --text-color: #333333;
    --text-light: #666666;
    --danger-color: #e74c3c;
    --success-color: #2ecc71;
    --border-color: #e0e0e0;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
    --font-family: 'Helvetica Neue', Arial, sans-serif;
    --header-height: 80px;
}

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

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

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

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: var(--font-family);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: #fff;
}

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

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

.btn-outline {
    background-color: transparent;
    border: 1px solid currentColor;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

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

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-color);
    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: 2px;
    background-color: var(--primary-color);
}

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

.cart-link .icon {
    margin-right: 0.2rem;
}

#cart-count {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    border-radius: 50%;
    margin-left: 0.2rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 5%;
    background-color: var(--light-color);
    font-size: 0.9rem;
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f0f2f1;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(106, 123, 118, 0.7), rgba(106, 123, 118, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

/* Advantages Section */
.advantages {
    padding: 5rem 5%;
    text-align: center;
    background-color: #fff;
}

.advantages h2 {
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

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

.advantage {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.advantage:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

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

.stat p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* About Products Section */
.about-products {
    padding: 5rem 5%;
    background-color: var(--light-color);
}

.about-products h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.about-products h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

/* Products Section */
.products {
    padding: 5rem 5%;
    text-align: center;
    background-color: #fff;
}

.products h2 {
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

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

.product-card {
    position: relative;
    background-color: #fff;
    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-card a {
    display: block;
    color: var(--text-color);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.product-card h3 {
    padding: 1.5rem 1rem 0.5rem;
    font-size: 1.2rem;
}

.product-card .price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 0 1rem;
}

.product-card .description {
    padding: 0 1rem 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    min-height: 60px;
}

.product-card .btn-view {
    display: block;
    width: 100%;
    padding: 1rem;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.product-card .btn-view:hover {
    background-color: var(--primary-dark);
}

/* Fun Facts Section */
.fun-facts {
    padding: 3rem 5%;
    background-color: var(--light-color);
    text-align: center;
}

.fun-facts h2 {
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.fact-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.fact-box p {
    font-style: italic;
    margin-bottom: 0;
}

/* Calculator Section */
.calculator {
    padding: 3rem 5%;
    background-color: #fff;
    text-align: center;
}

.calculator h2 {
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.calculator-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.calculator-inputs {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #fff;
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.calculator-result {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--primary-light);
    color: #fff;
}

.calculator-result h3 {
    margin-bottom: 1rem;
}

#calories-result {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
}

.calculator-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-column {
    margin-right: 2rem;
    margin-bottom: 2rem;
    min-width: 200px;
}

.footer-column:last-child {
    margin-right: 0;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

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

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info li svg {
    margin-right: 0.5rem;
    margin-top: 3px;
}

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

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

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

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.95);
    color: #fff;
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

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

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

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cookie-link {
    color: var(--accent-color);
    margin-left: 1rem;
    align-self: center;
}

.cookie-link:hover {
    text-decoration: underline;
    color: var(--accent-hover);
}

/* Notification */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transform: translateY(-100px);
    opacity: 0;
    transition: var(--transition);
}

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

.notification p {
    margin: 0;
}

/* Product Detail Page */
.product-details {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem 5%;
    gap: 2rem;
}

.product-image {
    flex: 1;
    min-width: 300px;
}

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

.product-info {
    flex: 1;
    min-width: 300px;
    flex-direction: column;
}

.product-info h1 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

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

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

.stars {
    color: var(--accent-color);
    display: flex;
}

.review-count {
    margin-left: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.product-attributes {
    margin-bottom: 2rem;
}

.attribute {
    display: flex;
    margin-bottom: 0.5rem;
}

.attribute-label {
    width: 120px;
    font-weight: 600;
}

.in-stock {
    color: var(--success-color);
}

.out-of-stock {
    color: var(--danger-color);
}

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

.quantity {
    margin-bottom: 1.5rem;
}

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

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

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: #f7f7f7;
    border: none;
    font-size: 1.2rem;
}

.quantity input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    -moz-appearance: textfield;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions button {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

/* Product Tabs */
.product-tabs {
    padding: 3rem 5%;
}

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

.tab-btn {
    padding: 1rem 2rem;
    background-color: transparent;
    border: none;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
}

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

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

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

.tab-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.tab-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tab-content p, .tab-content ul, .tab-content ol {
    margin-bottom: 1.5rem;
}

.tab-content ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

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

.specs-table th {
    width: 30%;
    font-weight: 600;
    background-color: var(--light-color);
}

/* Reviews */
.review-summary {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

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

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

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

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

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

.review-title {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.review-text {
    margin-bottom: 0;
}

/* Related Products */
.related-products, .you-may-like {
    padding: 3rem 5%;
    background-color: var(--light-color);
}

.related-products h2, .you-may-like h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

/* About Us Page */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f0f2f1;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(106, 123, 118, 0.7), rgba(106, 123, 118, 0.3));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

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

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.about-text, .about-mission {
    flex: 1;
    min-width: 300px;
}

.about-text h2, .about-mission h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.values-list li {
    margin-bottom: 1.5rem;
}

.values-list li strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-section {
    padding: 5rem 5%;
    background-color: var(--light-color);
    text-align: center;
}

.team-section h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

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

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

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

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

.team-member h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.25rem;
}

.team-member p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

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

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

/* About Facilities */
.about-facilities {
    padding: 5rem 5%;
    text-align: center;
}

.about-facilities h2 {
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

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

/* Testimonials */
.testimonials {
    padding: 5rem 5%;
    background-color: var(--light-color);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.testimonial-slide {
    display: none; /* Hide all slides by default */
}

.testimonial-slide:first-child {
    display: block; /* Show first slide by default */
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote-icon {
    color: rgba(106, 123, 118, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-content p {
    position: relative;
    font-size: 1.1rem;
    padding-top: 1rem;
}

.testimonial-author {
    margin-top: 2rem;
}

.testimonial-author p {
    margin-bottom: 0;
    padding-top: 0;
}

.testimonial-author p:first-child {
    color: var(--primary-dark);
}

/* CTA Section */
.cta-section {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
}

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

.cta-content h2 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-content .btn {
    background-color: #fff;
    color: var(--primary-color);
}

.cta-content .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Contact Page */
.contact-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f0f2f1;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(106, 123, 118, 0.7), rgba(106, 123, 118, 0.3));
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-main {
    padding: 5rem 5%;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    margin-right: 1rem;
    color: var(--primary-color);
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.social-connect h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form-container h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

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

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

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 3px;
}

.checkbox-group label {
    display: inline;
    margin-bottom: 0;
    font-weight: 400;
}

.form-success {
    background-color: var(--success-color);
    color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.form-success svg {
    margin-bottom: 1.5rem;
}

.form-success h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.form-success p {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background-color: var(--light-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

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

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

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-container h1 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-dark);
}

.empty-cart-message {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.empty-cart-message svg {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.empty-cart-message h2 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.empty-cart-message p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.cart-table th {
    text-align: left;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.cart-table td {
    padding: 1.5rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

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

.product-image {
    width: 100px;
    margin-right: 1.5rem;
}

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

.product-details a {
    font-weight: 600;
    color: var(--text-color);
}

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

.product-price, .product-total {
    font-weight: 600;
}

.product-remove button {
    border: none;
    background: transparent;
    color: var(--danger-color);
    cursor: pointer;
}

.cart-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 3rem;
}

.cart-totals {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.cart-totals > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.subtotal, .shipping, .tax {
    color: var(--text-light);
}

.total {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

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

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

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-container h1 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-dark);
}

.checkout-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.checkout-form-column {
    flex: 3;
    min-width: 300px;
}

.checkout-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.order-summary-column {
    flex: 2;
    min-width: 300px;
}

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

.order-summary h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.checkout-items {
    margin-bottom: 2rem;
}

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

.checkout-item-image {
    width: 80px;
    margin-right: 1rem;
}

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

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

.checkout-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

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

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

.order-totals > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.secure-checkout {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
}

.secure-icon {
    margin-right: 1.5rem;
    color: var(--primary-color);
}

.secure-text h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

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

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

.success-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.success-container h1 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.success-message {
    margin: 2rem 0;
}

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

.recommended-section {
    padding: 5rem 5%;
    background-color: var(--light-color);
    text-align: center;
}

.recommended-container {
    max-width: 1200px;
    margin: 0 auto;
}

.recommended-container h2 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.recommended-container p {
    margin-bottom: 3rem;
    color: var(--text-light);
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .advantages-container {
        gap: 1.5rem;
    }
    
    .product-image, .product-info {
        flex: 100%;
    }
    
    .product-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .advantages-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-method {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .advantages-container {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        margin-right: 0;
    }
    
    .cart-table th:nth-child(2),
    .cart-table td:nth-child(2) {
        display: none;
    }
    
    .product-info {
        flex-direction: column;
    }
    
    .product-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}
