/* Base Styles and Variables */
:root {
    --primary-color: #3f51b5;
    --primary-dark: #2c387e;
    --primary-light: #6573c3;
    --secondary-color: #f44336;
    --accent-color: #ff9800;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --border-color: #e0e0e0;
    --background-light: #f9f9f9;
    --background-lighter: #ffffff;
    --success-color: #4caf50;
    --warning-color: #ffeb3b;
    --error-color: #f44336;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-family: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --container-max-width: 1200px;
    --container-padding: 1rem;
    --header-height: 80px;
    --footer-background: #212121;
    --footer-text: #ffffff;
}

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

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

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: color var(--transition-fast);
}

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

/* Layout */
section {
    padding: 4rem 0;
}

.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumbs ul li:not(:last-child)::after {
    content: "/";
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.7);
}

/* Header & Navigation */
header {
    background-color: var(--background-lighter);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

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

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

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

.main-nav a.active::after, .main-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(1);
    transition: transform var(--transition-normal);
}

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

.header-cart {
    position: relative;
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    position: relative;
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 5rem 0;
}

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

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

/* Feature Section */
.features {
    background-color: var(--background-lighter);
}

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

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

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    background-color: var(--primary-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.feature-item h3 {
    margin-bottom: 1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

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

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

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

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

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

.product-grid.small {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.product-info {
    padding: 1.5rem;
}

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

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

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

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

/* Interesting Facts Section */
.interesting-facts {
    background-color: var(--background-light);
}

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

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

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

/* Complaint Form Section */
.complaint-form {
    background-color: var(--background-lighter);
    padding: 4rem 0;
}

.complaint-form h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.complaint-form > .container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.complaint-form form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

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

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

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

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

.footer-links li:not(:last-child) {
    margin-bottom: 0.75rem;
}

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

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

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

.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: white;
    transition: background-color var(--transition-fast);
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--footer-background);
    color: white;
    z-index: 1000;
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.cookie-buttons a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.cookie-buttons a:hover {
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    text-align: center;
    line-height: 1.4;
}

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

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

.btn-secondary:hover {
    background-color: #d32f2f;
}

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

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

.btn-block {
    display: block;
    width: 100%;
}

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

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

.btn-cookie {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-cookie:hover {
    background-color: white;
    color: var(--text-color);
}

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

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

input:not([type="checkbox"]), 
textarea, 
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: inherit;
    transition: border-color var(--transition-fast);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    margin-right: 0.75rem;
    width: auto;
}

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

/* Product Details Page */
.product-details {
    padding-top: 2rem;
}

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

.product-image-container {
    position: relative;
}

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

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

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

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

.rating-count {
    color: var(--text-light);
}

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

.product-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-bottom: 0;
}

.product-availability {
    background-color: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
}

.product-description h3 {
    margin-bottom: 0.75rem;
}

.product-features {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.product-features li:not(:last-child) {
    margin-bottom: 0.5rem;
}

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

.option-group {
    margin-bottom: 1.25rem;
}

.option-group label {
    margin-bottom: 0.75rem;
}

.color-options {
    display: flex;
    gap: 1rem;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.model-select, .pack-select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    width: 100%;
}

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

.quantity-btn {
    background-color: var(--background-light);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.25rem;
}

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

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

.product-guarantee {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.guarantee-item svg {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.product-tabs {
    margin-bottom: 3rem;
}

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

.tab-btn {
    padding: 1rem 1.5rem;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 500;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

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

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

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

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

.review-author {
    font-weight: 500;
}

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

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

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

.specs-table th {
    width: 30%;
    color: var(--text-light);
}

.installation-steps {
    list-style-position: inside;
    counter-reset: step;
}

.installation-steps li {
    margin-bottom: 1.5rem;
    counter-increment: step;
}

.installation-steps h4 {
    display: inline;
    margin-left: 0.5rem;
}

.installation-steps li::before {
    content: counter(step);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
}

.installation-tips {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    margin-top: 2rem;
}

.installation-tips ul {
    list-style-position: inside;
    margin-top: 0.75rem;
}

.installation-tips li:not(:last-child) {
    margin-bottom: 0.5rem;
}

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

/* Cart Page */
.cart-empty {
    text-align: center;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.cart-items {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

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

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 80px;
    height: 80px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

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

.item-price {
    color: var(--text-light);
}

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

.item-total {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 80px;
    text-align: right;
}

.item-remove {
    background: none;
    border: none;
    color: var(--text-lighter);
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.cart-summary {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    align-self: start;
}

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

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

.summary-row.total {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.cart-summary .btn {
    margin-bottom: 1rem;
}

/* Checkout Page */
.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.checkout-form-container {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
}

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

#checkout-form button {
    margin-top: 1rem;
}

.order-summary {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    align-self: start;
}

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

.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item .item-image {
    width: 60px;
    height: 60px;
}

.order-item .item-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

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

.order-item .item-price {
    font-weight: 500;
    color: var(--text-color);
}

.summary-totals {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
    margin: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    color: var(--success-color);
}

.guaranteed-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge svg {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.badge span {
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.success-message {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

.success-message h1 {
    margin-bottom: 1rem;
}

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

.next-steps, .support-info {
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h2, .support-info h2 {
    margin-bottom: 1rem;
}

.next-steps ol {
    list-style-position: inside;
}

.next-steps li:not(:last-child), .support-info li:not(:last-child) {
    margin-bottom: 0.5rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

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

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

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

.method-icon {
    color: var(--primary-color);
}

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

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

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

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

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

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

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

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

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

.map-section {
    background-color: var(--background-lighter);
}

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

.map-placeholder {
    height: 400px;
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-info {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.map-info h3 {
    margin-bottom: 1rem;
}

.office-hours {
    margin-top: 2rem;
}

.office-hours ul {
    list-style: none;
}

.office-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.office-hours li span {
    font-weight: 500;
}

/* About Us Page */
.about-intro {
    padding-top: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

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

.about-values {
    margin-top: 2.5rem;
}

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

.value-item {
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

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

.value-item h4 {
    margin-bottom: 0.75rem;
}

.about-image {
    position: relative;
}

.main-about-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-stats .stat-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.about-stats .stat-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

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

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    color: white;
    margin-bottom: 2rem;
}

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

.mission-item h3 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.mission-item h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: white;
}

.team-section {
    background-color: var(--background-lighter);
}

.team-section h2, .team-intro {
    text-align: center;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

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

.team-member {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-member img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

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

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

.member-social a {
    color: var(--text-lighter);
}

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

.process-section {
    background-color: var(--background-light);
}

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

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

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.sustainability-section {
    background-color: var(--background-lighter);
}

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

.sustainability-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.sustainability-initiatives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.initiative {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

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

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

.eco-stat {
    background-color: var(--primary-light);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.eco-stat h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.testimonials-section {
    background-color: var(--background-light);
}

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

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

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

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-content::before {
    content: """;
    font-size: 4rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: -1rem;
    left: -1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info .stars {
    margin-right: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .about-grid, .sustainability-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .product-details-grid, .checkout-grid, .map-container {
        grid-template-columns: 1fr;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .sustainability-initiatives, .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .cart-item {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
    
    .item-quantity, .item-total {
        margin-top: 1rem;
    }
    
    .item-remove {
        margin-top: 0.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}
