/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #8b5a2b;
    --primary-light: #a67c52;
    --primary-dark: #6b4420;
    --secondary-color: #d7c9b0;
    --accent-color: #e07a5f;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #f9f5f0;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f0f0f0;
    --gray: #cccccc;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --container-width: 1200px;
    --header-height: 80px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
}

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

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

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

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

button {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

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

section {
    padding: 4rem 0;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

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

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

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

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    padding-bottom: 5px;
    position: relative;
}

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

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

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

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

#cart-count {
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

/* Hero Banner */
.hero-banner {
    background-image: url('https://source.unsplash.com/random/1600x900/?kitchen,vintage');
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: overlay;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

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

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

/* Benefits Section */
.benefits {
    text-align: center;
    padding: 5rem 2rem;
    background-color: var(--white);
}

.benefits h2 {
    margin-bottom: 3rem;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    flex: 1 1 250px;
    max-width: 300px;
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

.stat-item {
    text-align: center;
}

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

.cta {
    margin-top: 3rem;
}

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

/* About Products Section */
.about-products {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-products p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quality-guarantee, .brand-story {
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.quality-guarantee h3, .brand-story h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Did You Know Section */
.did-you-know {
    background-color: var(--secondary-color);
    padding: 4rem 2rem;
}

.did-you-know h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.facts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.fact-item {
    flex: 1 1 300px;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.statistics h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.statistics ul {
    list-style-type: none;
}

.statistics li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.statistics li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Product Catalog */
.product-catalog {
    padding: 5rem 2rem;
    text-align: center;
}

.product-catalog h2 {
    margin-bottom: 3rem;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.product-card {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

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

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

.price {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

.product-actions {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.add-to-cart-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background-color: var(--primary-dark);
}

.view-product-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    display: block;
}

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

/* Product Detail Page */
.product-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-image {
    flex: 1 1 400px;
    max-width: 500px;
}

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

.product-info {
    flex: 1 1 400px;
    max-width: 600px;
}

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

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

.stars {
    color: var(--warning-color);
    margin-right: 0.5rem;
}

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

.availability {
    color: var(--success-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

.product-description ul {
    list-style-type: none;
    margin-left: 0;
}

.product-description li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.buy-now-btn {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    margin-left: 0.5rem;
}

.buy-now-btn:hover {
    background-color: #d0694e;
}

/* Product Details Tabs */
.product-details-tabs {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

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

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

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

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

.tab-btn.active::after {
    width: 100%;
}

.tab-panel {
    display: none;
}

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

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

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

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

/* Reviews */
.review {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-light);
}

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

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

.reviewer-name {
    font-weight: 600;
    margin-right: 1rem;
}

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

.review-text {
    line-height: 1.6;
}

/* Related Products */
.related-products {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--background-color);
}

.related-products h2 {
    margin-bottom: 3rem;
}

.products-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Cart Page */
.cart-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.empty-cart i {
    font-size: 3rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.empty-cart h2 {
    margin-bottom: 1rem;
}

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

.cart-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.cart-items {
    flex: 2 1 600px;
}

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

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

.cart-table th {
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--gray-light);
}

.product-col {
    width: 50%;
}

.price-col, .quantity-col, .subtotal-col {
    width: 15%;
}

.remove-col {
    width: 5%;
}

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

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

.cart-product-name {
    font-weight: 500;
}

.cart-quantity {
    display: flex;
    align-items: center;
    width: 100px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: none;
    border: 1px solid var(--gray);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--gray);
    margin: 0 5px;
}

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

.cart-totals {
    flex: 1 1 300px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    align-self: flex-start;
}

.cart-totals h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.totals-table {
    margin-bottom: 2rem;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.totals-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.continue-shopping {
    text-align: center;
    color: var(--primary-color);
}

.checkout-btn {
    width: 100%;
}

/* Checkout Page */
.checkout-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.checkout-form {
    flex: 2 1 600px;
}

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

.form-group {
    margin-bottom: 1.5rem;
    flex: 1 1 calc(50% - 1rem);
}

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

.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 1rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

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

.required {
    color: var(--error-color);
}

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

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

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

.place-order-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.order-summary {
    flex: 1 1 400px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    align-self: flex-start;
}

.order-summary h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.order-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 1rem;
}

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

.order-item-name {
    font-weight: 500;
}

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

.order-item-quantity {
    margin-left: auto;
    background-color: var(--gray-light);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

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

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

.order-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-top: 1rem;
}

/* Success Page */
.success-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.success-container {
    text-align: center;
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.success-container h1 {
    margin-bottom: 1.5rem;
}

.success-container p {
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.next-steps {
    background-color: var(--background-color);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.step {
    flex: 1 1 200px;
    max-width: 300px;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Contact Page */
.page-banner {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info {
    flex: 1 1 400px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.social-connect {
    margin-top: 2rem;
    border-top: 1px solid var(--gray-light);
    padding-top: 2rem;
}

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

.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: var(--gray-light);
    color: var(--primary-color);
    transition: var(--transition);
}

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

.contact-form {
    flex: 1 1 600px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.submit-btn {
    padding: 1rem 2rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--white);
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.2rem;
}

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* About Page */
.story-section {
    padding: 4rem 2rem;
}

.story-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-image {
    flex: 1 1 400px;
    max-width: 500px;
}

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

.story-content {
    flex: 1 1 600px;
}

.values-section {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
    text-align: center;
}

.values-section h2 {
    margin-bottom: 3rem;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-section h2 {
    margin-bottom: 1rem;
}

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

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.team-member {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

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

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

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

.team-member p {
    margin: 0 1rem 1rem;
    font-size: 0.9rem;
}

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

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

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

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

.testimonials-section {
    padding: 4rem 2rem;
    background-color: var(--background-color);
    text-align: center;
}

.testimonials-section h2 {
    margin-bottom: 3rem;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1 1 300px;
    max-width: 400px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    color: var(--gray-light);
}

.testimonial-text {
    margin: 2rem 0;
    font-style: italic;
    line-height: 1.8;
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

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

.recognition-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.recognition-section h2 {
    margin-bottom: 3rem;
}

.awards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.award {
    flex: 1 1 250px;
    max-width: 300px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.award-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

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

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

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

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
    transition: var(--transition);
}

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

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

.cookie-btn.customize, .cookie-btn.decline {
    background-color: var(--gray-light);
    color: var(--text-color);
}

.cookie-btn.customize:hover, .cookie-btn.decline:hover {
    background-color: var(--gray);
}

.cookie-policy-link {
    font-size: 0.9rem;
    text-decoration: underline;
}

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

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

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto 2rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

.links-section li {
    margin-bottom: 0.8rem;
}

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

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

.footer-section i {
    margin-right: 0.5rem;
}

.footer .social-icons {
    margin-top: 1.5rem;
}

.footer .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

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

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

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links li {
        margin-left: 1rem;
    }
    
    .benefit-card, .product-card, .team-member, .value-card, .award {
        max-width: 100%;
    }
    
    .product-detail {
        gap: 2rem;
    }
    
    .product-details-tabs {
        padding: 0 1rem;
    }
    
    .tab-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .cart-table th, .cart-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .cart-product img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .benefit-card, .fact-item, .step {
        padding: 1rem;
    }
    
    .product-detail {
        padding: 2rem 1rem;
    }
    
    .product-info h1 {
        font-size: 1.75rem;
    }
    
    .cart-table thead {
        display: none;
    }
    
    .cart-table tbody tr {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border: none;
    }
    
    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
    }
    
    .cart-product {
        display: block;
        text-align: center;
    }
    
    .cart-product img {
        margin: 0 auto 1rem;
    }
    
    .checkout-section {
        padding: 2rem 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .contact-container, .checkout-container {
        gap: 2rem;
    }
    
    footer {
        padding: 3rem 1rem 1rem;
    }
}
