/* Base & Reset */
:root {
    --primary-color: #5d9a8a;
    --primary-light: #7fb5a8;
    --primary-dark: #3c7c6c;
    --secondary-color: #f2c48d;
    --secondary-light: #f8e0be;
    --secondary-dark: #e8a959;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #efefef;
    --accent-color: #d88e73;
    --accent-light: #e4b0a0;
    --accent-dark: #c56c51;
    --success-color: #4caf50;
    --error-color: #f44336;
    --border-color: #e0e0e0;
    --border-radius: 6px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
    border: 3px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

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

section {
    padding: 5rem 0;
}

.page-banner {
    background-color: var(--primary-light);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-banner h1 {
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--text-color);
    text-decoration: none;
}

.btn-tertiary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
    background-color: var(--bg-dark);
    text-decoration: none;
}

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

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

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

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

.btn-buy-now {
    background-color: var(--accent-color);
    color: white;
}

.btn-buy-now:hover {
    background-color: var(--accent-dark);
    color: white;
    text-decoration: none;
}

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

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

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

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

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

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

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

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

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

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

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

#cart-count {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

/* Hero Section */
.hero {
    background-color: var(--primary-light);
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93,154,138,0.9) 0%, rgba(93,154,138,0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.feature-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

/* Editor's Note Section */
.editor-note {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

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

.editor-content::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: -30px;
    left: 20px;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.editor-content p:last-child {
    font-weight: 600;
    text-align: right;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

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

.about-products .container {
    max-width: 900px;
}

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

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

.about-products p {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

.product-info {
    padding: 1.5rem;
}

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

.price {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.product-actions .btn {
    flex: 1;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

/* Product Detail Page */
.product-detail {
    padding-top: 2rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

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

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

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

.product-features ul, .product-ingredients ul {
    padding-left: 1.5rem;
}

.product-features li {
    margin-bottom: 0.5rem;
}

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

.quantity-controls {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.quantity-decrease, .quantity-increase {
    width: 36px;
    height: 36px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
}

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

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

.quantity-controls input {
    width: 60px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 1rem;
}

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

.product-actions .btn {
    flex: 1;
}

.product-meta {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.shipping-info, .returns-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-additional-info {
    margin-bottom: 4rem;
}

.tab-container {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.tab-headers {
    display: flex;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.tab-header {
    padding: 1rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    background-color: transparent;
    border: none;
    transition: var(--transition);
    flex: 1;
    text-align: center;
}

.tab-header:hover {
    background-color: var(--bg-dark);
}

.tab-header.active {
    background-color: white;
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    padding: 2rem;
    display: none;
}

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

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

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

.tab-content li {
    margin-bottom: 0.75rem;
}

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

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

/* Cart Page */
.cart-section {
    padding-top: 2rem;
    min-height: 60vh;
}

.cart-empty {
    text-align: center;
    padding: 4rem 0;
}

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

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

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

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-light);
}

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

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

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

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

.cart-quantity .quantity-controls {
    margin-top: 0;
}

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

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

.cart-summary {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.cart-totals {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.cart-subtotal, .cart-shipping, .cart-grand-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

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

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

.cart-recommendations {
    margin-top: 4rem;
}

/* Checkout Page */
.checkout-section {
    padding-top: 2rem;
    min-height: 60vh;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-steps {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

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

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-weight: 600;
}

.step-divider {
    flex: 1;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 1rem;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

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

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

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-group input {
    width: auto;
}

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

.checkout-summary {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    align-self: flex-start;
}

.checkout-summary h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

.checkout-item-quantity {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

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

.checkout-subtotal, .checkout-shipping, .checkout-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

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

/* Success Page */
.success-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 4rem;
}

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

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

.success-info {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.success-recommendations {
    margin-top: 4rem;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    background-color: var(--primary-light);
    color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

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

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    color: white;
}

.info-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.social-contact {
    margin-top: 2.5rem;
}

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

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

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

.contact-form-container {
    padding: 2.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-form button {
    margin-top: 1rem;
}

.faq-section {
    background-color: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

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

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

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

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

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

/* About Page */
.our-story {
    padding: 4rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.story-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.our-values {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

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

.value-card {
    background-color: white;
    padding: 2rem;
    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 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.our-process {
    padding: 4rem 0;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.our-team {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    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: 250px;
    object-fit: cover;
}

.team-member h3, .team-member p {
    padding: 0 1.5rem;
}

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

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

.member-social {
    display: flex;
    padding: 0 1.5rem 1.5rem;
    gap: 0.75rem;
}

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

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

.testimonials {
    padding: 4rem 0;
}

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

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 350px;
}

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

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 3rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    margin-top: 1.5rem;
    text-align: right;
}

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

.stars {
    color: var(--secondary-color);
}

.cta-section {
    background-color: var(--primary-light);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

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

.cta-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

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

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

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

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

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

.footer-links a {
    color: var(--text-color);
}

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

.footer-contact p {
    margin-bottom: 0.75rem;
}

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

.footer-contact .social-icons a {
    background-color: var(--bg-light);
    color: var(--text-light);
}

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

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
}

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

.cookie-more-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-row {
        grid-template-columns: 1fr;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 3fr 1fr 1fr;
    }
    
    .cart-total, .cart-remove {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .cart-price, .cart-quantity {
        justify-content: center;
    }
    
    .cart-product {
        flex-direction: column;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .checkout-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
