/* Base Styles */
:root {
    --primary-color: #3a7bd5;
    --primary-dark: #2e64b5;
    --secondary-color: #f8f9fa;
    --accent-color: #00bf9a;
    --text-color: #333333;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --background-color: #ffffff;
    --background-secondary: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 4px;
    --radius-lg: 8px;
    --container-width: 1200px;
    --header-height: 80px;
    --footer-bg: #1d1d1d;
    --footer-text: #ffffff;
}

.dark-theme {
    --primary-color: #4e8df5;
    --primary-dark: #3579f6;
    --secondary-color: #2d2d2d;
    --accent-color: #00d9b1;
    --text-color: #f0f0f0;
    --text-light: #b0b0b0;
    --border-color: #444444;
    --background-color: #1a1a1a;
    --background-secondary: #252525;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --footer-bg: #111111;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

ul {
    list-style: none;
}

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

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

section {
    padding: 60px 0;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-decoration: none;
}

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

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

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

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

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: var(--radius);
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

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

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

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--background-secondary);
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.2);
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
    text-align: center;
    background-color: var(--background-color);
}

.features h2 {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    background-color: var(--background-secondary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat {
    padding: 20px;
    border-radius: var(--radius);
    background-color: var(--background-secondary);
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.cta-container {
    margin-top: 40px;
}

/* About Photos Section */
.about-photos {
    background-color: var(--background-secondary);
}

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

.quality-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--background-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.badge svg {
    color: var(--primary-color);
}

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

.products h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
}

.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: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

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

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.product-actions .btn {
    padding: 8px 12px;
    font-size: 0.9rem;
}

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

.view-details:hover {
    background-color: var(--border-color);
}

/* Newsletter Section */
.newsletter {
    background-color: var(--background-secondary);
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 15px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 1rem;
    background-color: var(--background-color);
    color: var(--text-color);
}

.newsletter-form button {
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.2rem;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    border-radius: var(--radius);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-column ul a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px);
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    min-width: 280px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 8px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

#accept-cookies {
    background-color: var(--primary-color);
    color: white;
}

#accept-cookies:hover {
    background-color: var(--primary-dark);
}

#customize-cookies, #decline-cookies {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

#customize-cookies:hover, #decline-cookies:hover {
    background-color: var(--border-color);
}

/* Glossary */
.glossary {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
    transition: var(--transition);
}

.glossary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.glossary-header h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.glossary-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
}

.glossary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.glossary-content.show {
    max-height: 400px;
    overflow-y: auto;
}

.glossary-content dl {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
}

.glossary-content dt {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.glossary-content dd {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Product Detail Page */
.product-detail {
    padding-top: 40px;
}

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

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

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

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-image-container {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

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

.product-info-container h1 {
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

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

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

.product-description {
    margin-bottom: 30px;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.option-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 1rem;
}

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

.quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-secondary);
    border: 1px solid var(--border-color);
    font-size: 1.2rem;
    cursor: pointer;
}

.quantity-btn:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
}

.quantity-btn:last-child {
    border-radius: 0 var(--radius) var(--radius) 0;
}

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

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.product-details-tabs {
    margin-top: 40px;
}

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

.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

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

.tab-content {
    display: none;
}

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

.tab-content ul {
    list-style: disc;
    padding-left: 20px;
}

.tab-content li {
    margin-bottom: 8px;
}

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

.related-products h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

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

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

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

.related-product h3 {
    padding: 10px 15px 5px;
    font-size: 1rem;
    margin-bottom: 5px;
}

.related-price {
    padding: 0 15px 10px;
    color: var(--primary-color);
    font-weight: 600;
}

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

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

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

.cart-empty h2 {
    margin-bottom: 10px;
}

.cart-empty p {
    max-width: 500px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cart-items-container {
    background-color: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

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

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

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

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

.cart-product-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-product-options {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cart-product-options span {
    display: block;
}

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

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

.cart-summary {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.cart-totals {
    width: 300px;
}

.cart-subtotal, .cart-shipping, .cart-total-amount {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

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

.cart-actions {
    display: flex;
    gap: 15px;
}

/* Checkout Page */
.checkout-section {
    min-height: 70vh;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.checkout-order-summary {
    background-color: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: 25px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    box-shadow: var(--shadow);
}

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

.checkout-items {
    margin-bottom: 20px;
}

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

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

.checkout-item-details {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.checkout-item-quantity {
    color: var(--text-light);
    margin: 0 15px;
}

.checkout-totals {
    margin-top: 20px;
}

.checkout-subtotal, .checkout-shipping {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid var(--border-color);
}

.secure-checkout {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

.secure-checkout-icon {
    color: var(--success-color);
}

.checkout-form-container {
    background-color: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.checkout-form-container h2 {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

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

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms-checkbox input {
    width: auto;
    margin-top: 5px;
}

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

/* Success Page */
.success-section {
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 20px;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

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

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

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

.featured-products h2 {
    text-align: center;
    margin-bottom: 30px;
}

/* Contact Page */
.page-header {
    background-color: var(--background-secondary);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background-color: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-details {
    margin: 30px 0;
}

.contact-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

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

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.contact-social {
    display: flex;
    gap: 10px;
}

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

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

.business-hours h3 {
    margin-bottom: 15px;
}

.business-hours ul {
    border-left: 2px solid var(--primary-color);
    padding-left: 15px;
}

.business-hours li {
    margin-bottom: 10px;
}

.business-hours span {
    font-weight: 600;
}

.contact-form-container {
    background-color: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form-container h2 {
    margin-bottom: 25px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background-color: var(--background-secondary);
}

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

.faq-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

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

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px 20px;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-content h3 {
    margin-top: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

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

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

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 20px 5px;
}

.team-member p {
    padding: 0 20px;
}

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

.member-social {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
    margin-top: 15px;
}

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

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

.about-stats {
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background-color: var(--background-secondary);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-light);
}

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

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.testimonial {
    background-color: var(--background-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
}

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

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

.author-info h4 {
    margin-bottom: 5px;
}

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

.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

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

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

.cta-buttons .secondary-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .product-image-container {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-order-summary {
        position: static;
        margin-bottom: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 1fr 0.5fr;
    }
    
    .cart-header-item.cart-price, .cart-price {
        display: none;
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 20px;
    }
    
    .cart-totals {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--radius);
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: var(--radius);
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 30px 20px;
    }
    
    .feature-card, .product-card, .related-product {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 0.5fr;
    }
    
    .cart-header-item.cart-quantity, .cart-quantity {
        display: none;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}
