/* ========================================
   CSS Variables & Design Tokens
======================================== */
:root {
    /* Colors */
    --primary-color: #c9a66b;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-color: #2c2c2c;
    --text-light: #6c6c6c;
    --bg-color: #ffffff;
    --bg-secondary: #f8f8f8;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --overlay-color: rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 300;
    --z-overlay: 400;
    --z-toast: 500;
}

/* Dark Theme */
body.dark-theme {
    --text-color: #e0e0e0;
    --text-light: #a0a0a0;
    --bg-color: #1a1a1a;
    --bg-secondary: #2c2c2c;
    --border-color: #404040;
    --shadow-color: rgba(255, 255, 255, 0.05);
}

/* ========================================
   Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
    min-width: 320px;
}

html {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition-fast);
}

input,
textarea {
    font-family: inherit;
    outline: none;
}

/* ========================================
   Container & Layout
======================================== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ========================================
   Loading Screen
======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: white;
}

.light-bulb {
    font-size: 4rem;
    animation: pulse 1.5s ease-in-out infinite;
    margin-bottom: var(--spacing-md);
}

.loader p {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* ========================================
   Header
======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: var(--bg-color);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

/* Header Top */
.header-top {
    /*background: var(--bg-secondary);*/
    background: #ee7e10;
    padding: var(--spacing-xs) 0;
    font-size: 0.875rem;
}

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

.header-info {
    display: flex;
    gap: var(--spacing-lg);
}

.header-info span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    /*color: var(--text-light);*/
    color: white;
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.social-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    color: var(--text-light);
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

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

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    color: var(--text-color);
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(20deg);
}

/* Header Main */
.header-main {
    padding: var(--spacing-sm) 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.logo h1 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-close {
    display: none;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
    padding: var(--spacing-xs) 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

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

.nav-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    min-width: 200px;
    padding: var(--spacing-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    margin-bottom: var(--spacing-xs);
}

.dropdown a {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    transition: all var(--transition-fast);
}

.dropdown a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Nav Order Button - COMMANDER */
.nav-order-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-lg);
    /*background: linear-gradient(135deg, var(--primary-color), var(--accent-color));*/
    background-color: #dc2626;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    /*border-radius: var(--radius-full);*/
    border-radius: 20px;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.3);
    margin-left: var(--spacing-md);
}

.nav-order-btn i {
    font-size: 1rem;
}

.nav-order-btn:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 166, 107, 0.5);
}

.nav-order-btn::after {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.header-actions button {
    width: 44px;
    height: 44px;
    /*border-radius: var(--radius-full);*/
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-color);
    background: transparent;
    transition: all var(--transition-fast);
}

.header-actions button:hover {
    background: var(--bg-secondary);
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Search Bar */
.search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    padding: var(--spacing-lg) 0;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all var(--transition-normal);
    z-index: 1000;
}

.search-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.search-form {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 1rem;
    background: var(--bg-secondary);
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.search-input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.search-input:focus {
    border-color: var(--primary-color);
    background: var(--bg-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.1), 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.search-input:hover {
    border-color: rgba(201, 166, 107, 0.5);
}

.search-submit,
.search-close {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #c9a66b, #d4af37);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(201, 166, 107, 0.3);
}

.search-submit:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.5);
}

.search-submit:active {
    transform: scale(0.95);
}

.search-close {
    background: var(--bg-secondary);
    color: var(--text-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-close:hover {
    transform: scale(1.05) rotate(90deg);
    background: #ef4444;
    color: white;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    position: relative;
    margin-top: 0;
}

.hero-swiper {
    height: 90vh;
    min-height: 600px;
}

@media (max-width: 768px) {
    .hero-swiper {
        height: auto;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-swiper {
        min-height: 450px;
    }
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-2xl) var(--spacing-xl);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.gradient-text {
    background: linear-gradient(90deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper {
    width: 500px;
    height: 500px;
    position: relative;
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        max-width: 300px;
    }
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transform: rotate(-5deg);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: white !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    /*border-radius: var(--radius-full);*/
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 166, 107, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-dark {
    background: #1e293b;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
}

.btn-dark:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Section Styles
======================================== */
section {
    /*padding: var(--spacing-2xl) 0;*/
    padding-bottom: var(--spacing-2xl);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-2xl);
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Categories Section
======================================== */
.categories-section {
    background: var(--bg-secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-lg);
}

.category-content {
    color: white;
}

.category-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.category-count {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-md);
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--transition-normal);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Products Section
======================================== */
.products-swiper {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}

/* Best Sellers & Trending Sections */
.bestsellers-section,
.trending-section {
    background: var(--bg-secondary);
}

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

.bestsellers-carousel,
.trending-carousel {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}

/* Owl Carousel Custom Styles */
.owl-carousel .owl-nav {
    margin-top: var(--spacing-lg);
}

.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: var(--radius-full) !important;
    font-size: 1.5rem !important;
    transition: all var(--transition-fast) !important;
    margin: 0 5px !important;
}

.owl-carousel .owl-nav button:hover {
    background: var(--accent-color) !important;
    transform: scale(1.1);
}

.owl-carousel .owl-dots {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: var(--border-color) !important;
    display: block;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.owl-carousel .owl-dot.active span,
.owl-carousel .owl-dot:hover span {
    background: var(--primary-color) !important;
    transform: scale(1.3);
}

.product-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

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

@media (max-width: 768px) {
    /* Disable hover effects on mobile/touch devices */
    .product-card:hover {
        transform: none;
    }
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .product-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 250px;
    }
}

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

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

.product-badges {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.product-badges span {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.badge-new {
    background: #22c55e;
}

.badge-sale {
    background: #ef4444;
}

.badge-hot {
    background: #f97316;
}

.product-actions {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    /* Show actions by default on mobile */
    .product-actions {
        opacity: 1;
        transform: translateX(0);
    }
    
    .action-btn {
        width: 40px;
        height: 40px;
    }
}

.action-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.action-btn[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 10px);
    background: var(--text-color);
    color: white;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    font-size: 0.75rem;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-md);
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    opacity: 0;
    transform: translateY(100%);
    transition: all var(--transition-normal);
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

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

/* Override for buttons in product content */
.product-content .add-to-cart-btn {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    width: 100%;
}


.product-info {
    padding: var(--spacing-md);
}

.product-category {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.product-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: var(--spacing-sm);
    color: #fbbf24;
}

.product-rating span {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-left: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

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

.price-old {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* ========================================
   Promo Banner
======================================== */
.promo-banner {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-2xl);
}

.promo-text {
    flex: 1;
    color: white;
    z-index: 2;
}

.promo-subtitle {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(201, 166, 107, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.promo-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.promo-title span {
    color: var(--primary-color);
}

.promo-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.promo-countdown {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    min-width: 100px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.countdown-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.promo-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Services Section
======================================== */
.services-section {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Newsletter Section
======================================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

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

.newsletter-text h2 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: var(--spacing-xl);
}

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

.form-group {
    /*display: flex;*/
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.form-input {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.875rem;
    opacity: 0.9;
    cursor: pointer;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--secondary-color);
    color: white;
}

.footer-main {
    padding: var(--spacing-2xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    opacity: 0.8;
}

.footer-bottom-content i.fa-heart {
    color: #ef4444;
}

.payment-methods {
    display: flex;
    gap: var(--spacing-md);
    font-size: 1.5rem;
    opacity: 0.8;
}

/* ========================================
   Cart Sidebar
======================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--bg-color);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-modal);
    display: flex;
    flex-direction: column;
    transition: right var(--transition-normal);
}

.cart-sidebar.active {
    right: 0;
}

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

.cart-header h3 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.cart-close {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

.cart-close:hover {
    background: var(--bg-secondary);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-lg);
}

.cart-empty {
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

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

.cart-footer {
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
    font-weight: 600;
}

.total-price {
    color: var(--primary-color);
}

/* ========================================
   Overlay
======================================== */
.overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

/* ========================================
   WhatsApp Floating Button
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all var(--transition-normal);
    animation: whatsappBounce 2s infinite;
}

.whatsapp-float i {
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Pulse effect */
.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: #25D366;
    opacity: 0;
    animation: whatsappPulse 2s infinite;
    z-index: 1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes whatsappBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Adjust scroll to top position to avoid overlap */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: var(--z-sticky);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* ========================================
   Toast Notification
======================================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text-color);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-xl);
    z-index: var(--z-toast);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.toast.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast i {
    color: #22c55e;
    font-size: 1.5rem;
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--spacing-2xl) 0;
}

body.dark-theme .testimonials-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.testimonials-carousel {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}

.testimonial-card {
    background: var(--bg-color);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: var(--spacing-sm);
    transition: all var(--transition-normal);
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-author-image {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-author-image img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid var(--primary-color);
    flex-shrink: 0;
}

.testimonial-author-info {
    margin-bottom: var(--spacing-lg);
}

.testimonial-author-info h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.testimonial-quote {
    margin-bottom: var(--spacing-sm);
}

.testimonial-quote i {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.3;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
    font-style: italic;
}

/* ========================================
   SEARCH PAGE STYLES
   =================================== */

.search-results-section {
    padding: 4rem 0;
    background: #f8fafc;
}

/* Search Filter Bar */
.search-filter-bar {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-form-full {
    width: 100%;
}

.search-input-wrapper-full {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    background: #f8fafc;
    border-radius: 50px;
    padding: 0.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.search-input-wrapper-full:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(201, 166, 107, 0.1);
}

.search-input-wrapper-full i {
    position: absolute;
    left: 1.75rem;
    color: var(--text-light);
    font-size: 1.1rem;
    z-index: 1;
}

.search-input-full {
    flex: 1;
    padding: 1rem 1rem 1rem 3.5rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-color);
    outline: none;
}

.search-input-full::placeholder {
    color: var(--text-light);
}

.btn-search {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.search-input {
    flex: 1;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

.search-form .btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    white-space: nowrap;
}

/* Search Results Grid */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Search Result Item (for non-product posts) */
.search-result-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.search-result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.result-thumbnail {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.search-result-item:hover .result-thumbnail img {
    transform: scale(1.1);
}

.result-content {
    padding: 1.5rem;
}

.result-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.result-type {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #c9a66b, #d4af37);
    color: white;
    border-radius: 20px;
    font-weight: 500;
}

.result-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.result-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.result-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.result-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.result-link:hover {
    gap: 0.75rem;
}

/* Search Pagination */
.search-pagination {
    margin-top: 3rem;
}

.search-pagination .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}

.search-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    padding: 0 1.25rem;
    background: white;
    color: var(--text-color);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.search-pagination .page-numbers i {
    font-size: 0.875rem;
}

.search-pagination .page-numbers:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 166, 107, 0.2);
}

.search-pagination .page-numbers.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* No Results */
.no-results {
    background: white;
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
}

.no-results-content {
    max-width: 600px;
    margin: 0 auto;
}

.no-results-content > i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.no-results-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.no-results-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.search-form-large {
    margin-bottom: 3rem;
}

.search-form-large .search-input-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Search Suggestions */
.search-suggestions {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.search-suggestions h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.search-suggestions li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.search-suggestions li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Popular Products Section in No Results */
.popular-products {
    margin-bottom: 3rem;
}

.popular-products h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

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

/* Responsive Search Page */
@media (max-width: 992px) {
    .search-results-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .products-grid-small {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .search-filter-bar {
        padding: 1.5rem;
    }
    
    .btn-search {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .search-pagination .page-numbers {
        min-width: 45px;
        height: 45px;
        padding: 0 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .search-results-section {
        padding: 3rem 0;
    }
    
    .search-filter-bar {
        padding: 1rem;
    }
    
    .search-input-wrapper-full {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
        border-radius: 15px;
    }
    
    .search-input-wrapper-full i {
        position: static;
        display: none;
    }
    
    .search-input-full {
        padding: 1rem 1.5rem;
        text-align: center;
    }
    
    .btn-search {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .search-input-wrapper {
        flex-direction: column;
    }
    
    .search-form .btn {
        width: 100%;
    }
    
    .search-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 0.75rem;
        font-size: 0.85rem;
    }
    
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid-small {
        grid-template-columns: 1fr;
    }
    
    .no-results {
        padding: 3rem 1.5rem;
    }
    
    .no-results-content > i {
        font-size: 3rem;
    }
    
    .no-results-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .result-thumbnail {
        height: 180px;
    }
    
    .search-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .promo-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    /* Menu fullscreen pour mobile */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        padding: 5rem 2rem 2rem;
        z-index: 9999;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Fond sombre derrière le menu */
    .nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        pointer-events: none;
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mobile-close {
        display: flex;
        position: fixed;
        top: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--primary-color);
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-close:active {
        transform: scale(0.95);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .nav-list > li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1rem;
        width: 100%;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-color);
        background: transparent;
        border: none;
        text-align: left;
        cursor: pointer;
        transition: all 0.3s ease;
        min-height: 60px;
    }
    
    .nav-link:active {
        background: rgba(201, 166, 107, 0.1);
        transform: scale(0.98);
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Dropdowns en accordéon simple */
    .has-dropdown > .nav-link::after {
        content: '+';
        font-family: Arial, sans-serif;
        font-size: 1.75rem;
        font-weight: 300;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        line-height: 1;
    }
    
    .has-dropdown.active > .nav-link::after {
        content: '−';
    }
    
    .dropdown {
        position: static;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: none;
        box-shadow: none;
        background: rgba(201, 166, 107, 0.05);
        border-radius: 0;
        margin: 0;
        padding: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s ease,
                    padding 0.4s ease;
    }
    
    .dropdown.mobile-open {
        max-height: 800px;
        opacity: 1;
        padding: 0.5rem 0;
    }
    
    .dropdown li {
        border-bottom: none;
        width: 100%;
    }
    
    .dropdown a {
        display: block;
        padding: 1rem 1.5rem 1rem 2rem;
        font-size: 1rem;
        font-weight: 400;
        color: var(--text-color);
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
        min-height: 52px;
        display: flex;
        align-items: center;
    }
    
    .dropdown a:active {
        background: rgba(201, 166, 107, 0.15);
        border-left-color: var(--primary-color);
    }
    
    /* Nav Order Button Mobile */
    .nav-order-btn {
        margin: var(--spacing-md) var(--spacing-md) var(--spacing-lg);
        justify-content: center;
        padding: 1rem var(--spacing-xl);
        font-size: 1rem;
        width: calc(100% - 2rem);
        box-shadow: 0 6px 20px rgba(201, 166, 107, 0.4);
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1002;
        position: relative;
    }
    
    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-wrapper {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .header-info {
        display: none;
    }
    
    .social-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-swiper {
        height: auto;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .promo-title {
        font-size: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-countdown {
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group .btn {
        width: 100%;
    }
    
    .cart-sidebar {
        max-width: 100%;
    }
}

/* ========================================
   Utility Classes
======================================== */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ========================================
   Page Header (for all pages)
======================================== */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: -1;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.page-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
    opacity: 0.9;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb span {
    opacity: 0.7;
}

/* ========================================
   Collections Page Styles
======================================== */
.collections-showcase {
    padding: var(--spacing-2xl) 0;
}

.collection-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
}

.collection-item.reverse {
    direction: rtl;
}

.collection-item.reverse > * {
    direction: ltr;
}

.collection-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.collection-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.collection-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

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

.collection-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.collection-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.collection-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.collection-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.collection-stats {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item strong {
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.stat-item span {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   Promotions Page Styles
======================================== */
.promo-countdown {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 3rem 0;
    color: white;
}

.countdown-banner {
    text-align: center;
}

.countdown-label {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.countdown-banner h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.timer-value {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timer-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.featured-deals {
    padding: var(--spacing-2xl) 0;
}

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

.deal-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.deal-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.deal-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ef4444;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.deal-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.deal-card.featured .deal-image {
    height: 500px;
}

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

.deal-card:hover .deal-image img {
    transform: scale(1.1);
}

.deal-content {
    padding: 1.5rem;
}

.deal-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.deal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.deal-rating i {
    color: #f59e0b;
    font-size: 0.875rem;
}

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

.deal-prices {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

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

.deal-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.deal-features span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.deal-features i {
    color: var(--primary-color);
    font-size: 1rem;
}

.stock-info {
    margin-bottom: 1.5rem;
}

.stock-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.stock-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 1s ease;
}

.stock-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.newsletter-promo {
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-promo h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.newsletter-promo > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form-inline {
    display: flex;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    gap: 1rem;
}

.newsletter-form-inline input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form-inline .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    white-space: nowrap;
}

.newsletter-notice {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ========================================
   About Page Styles
======================================== */
.company-story {
    padding: var(--spacing-2xl) 0;
}

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

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.story-text h2 {
    font-family: var(--font-secondary);
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

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

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

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.story-images {
    position: relative;
}

.story-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.story-image-secondary {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    width: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid white;
}

.story-image-secondary img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.values-section {
    padding: var(--spacing-2xl) 0;
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section {
    padding: var(--spacing-2xl) 0;
}

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

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

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

.member-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.team-member:hover .member-social {
    opacity: 1;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

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

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.timeline-section {
    padding: var(--spacing-2xl) 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding-left: 120px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-year {
    position: absolute;
    left: -120px;
    top: 0;
    width: 100px;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    text-align: center;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -62px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.why-choose-us {
    padding: var(--spacing-2xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ========================================
   Contact Page Styles
======================================== */
.contact-section {
    padding: var(--spacing-2xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-family: var(--font-secondary);
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
}

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

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

.contact-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
}
.contact-form label i {
    margin-right: 0.5rem;
}

.contact-form label i {
    color: var(--primary-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.form-notice {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.form-notice i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-info-card a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.info-link:hover {
    gap: 0.75rem;
}

.info-hours {
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span {
    color: var(--text-light);
}

.hours-row strong {
    color: var(--text-color);
}

.contact-social {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-social h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

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

.map-section {
    margin: 0;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.faq-section {
    padding: var(--spacing-2xl) 0;
}

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

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-color);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.75rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* ========================================
   CTA Sections
======================================== */
.cta-banner,
.cta-section {
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

/* ========================================
   Activities Page Styles
======================================== */
.activites-page .intro-section .section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.3);
}

.activities-section {
    padding: 5rem 0;
    position: relative;
}

.activity-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    /*margin-bottom: 8rem;*/
    /*padding: 4rem 0;*/
    position: relative;
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-item::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4rem;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.activity-item:last-child::before {
    display: none;
}

.activity-item.reverse {
    direction: rtl;
}

.activity-item.reverse > * {
    direction: ltr;
}

.activity-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 500px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.activity-image:hover::before {
    opacity: 1;
}

.activity-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 20px;
    transition: border-color 0.4s ease;
}

.activity-image:hover::after {
    border-color: var(--primary-color);
}

.activity-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) saturate(1.1);
}

.activity-image:hover img {
    transform: scale(1.08);
    filter: brightness(1) saturate(1.2);
}

.activity-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    box-shadow: 0 10px 30px rgba(201, 166, 107, 0.4);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-image:hover .activity-overlay {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(201, 166, 107, 0.6);
}

.activity-content {
    position: relative;
    padding: 2rem 0;
}

.activity-number {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(201, 166, 107, 0.12);
    font-family: var(--font-secondary);
    line-height: 1;
    margin-bottom: -1.5rem;
    transition: color 0.3s ease;
}

.activity-item:hover .activity-number {
    color: rgba(201, 166, 107, 0.2);
}

.activity-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
}

.activity-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #d4af37);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.activity-item:hover .activity-title::after {
    width: 100px;
}

.activity-description {
    font-size: 1.075rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.activity-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    background: #f8fafc;
    border-radius: 15px;
}

.activity-features li {
    padding: 0.9rem 0;
    color: var(--text-color);
    font-size: 1.025rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.activity-features li:last-child {
    border-bottom: none;
}

.activity-features li:hover {
    padding-left: 0.5rem;
    color: var(--primary-color);
}

.activity-features li i {
    color: var(--primary-color);
    font-size: 1.35rem;
    min-width: 24px;
    transition: transform 0.3s ease;
}

.activity-features li:hover i {
    transform: scale(1.2);
}

.activity-content .btn {
    background-color: #dc2626;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(201, 166, 107, 0.3);
}

.activity-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 166, 107, 0.4);
}

.activity-content .btn i {
    transition: transform 0.3s ease;
}

.activity-content .btn:hover i {
    transform: translateX(5px);
}

/* Stats Section Enhanced */
.stats-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.1), transparent);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(201, 166, 107, 0.3);
}

.stat-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    color: #d4af37;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ========================================
   Responsive Design for New Pages
======================================== */
@media (max-width: 1024px) {
    .activity-item {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
        margin-bottom: 5rem;
    }
    
    .activity-item.reverse {
        direction: ltr;
    }
    
    .activity-image {
        height: 400px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .stat-card {
        padding: 2.5rem 1.5rem;
    }
    
    .collection-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .collection-item.reverse {
        direction: ltr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline {
        padding-left: 80px;
    }
    
    .timeline-year {
        left: -80px;
        width: 60px;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .activity-title {
        font-size: 1.75rem;
    }
    
    .activity-number {
        font-size: 3rem;
    }
    
    .activity-image {
        height: 300px;
    }
    
    .activity-features {
        padding: 1.5rem;
    }
    
    .activity-features li {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }
    
    .activity-overlay {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .collection-title {
        font-size: 2rem;
    }
    
    .collection-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .collection-stats {
        gap: 1.5rem;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .deal-card.featured .deal-image {
        height: 300px;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .timer-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }
    
    .timer-value {
        font-size: 2rem;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
    }
    
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .values-grid,
    .team-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-year {
        position: relative;
        left: 0;
        width: 100%;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .timeline-item {
        padding-left: 3rem;
    }
    
    .timeline-item::before {
        left: 12px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .activity-item {
        margin-bottom: 4rem;
        gap: 2rem;
    }
    
    .activity-title {
        font-size: 1.5rem;
    }
    
    .activity-number {
        font-size: 2.5rem;
    }
    
    .activity-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .activity-overlay {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: 1rem;
        right: 1rem;
    }
    
    .activity-features {
        padding: 1.25rem;
    }
    
    .activity-content .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .collection-image img {
        height: 300px;
    }
    
    .story-image-secondary {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
        margin-top: 1.5rem;
        border: 4px solid white;
    }
}

/* ========================================
   Product Detail Page Styles
======================================== */
.product-detail-section {
    padding: var(--spacing-2xl) 0;
    background: #f8fafc;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.main-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.image-badges {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 2;
}

.wishlist-btn-large {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.wishlist-btn-large:hover,
.wishlist-btn-large.active {
    color: #ef4444;
    transform: scale(1.1);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    cursor: pointer;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid transparent;
    transition: var(--transition-fast);
    background: white;
}

.thumbnail:hover {
    border-color: var(--primary-color);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

/* Product Info Detail */
.product-info-detail {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.product-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.product-category-detail {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.product-title-detail {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    margin: 0;
}

.product-share .share-btn {
    width: 45px;
    height: 45px;
    background: var(--bg-secondary);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.product-rating-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.product-rating-detail .stars {
    display: flex;
    gap: 0.25rem;
    color: #f59e0b;
    font-size: 1.25rem;
}

.rating-text {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.125rem;
}

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

.view-reviews {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: auto;
    transition: var(--transition-fast);
}

.view-reviews:hover {
    text-decoration: underline;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.price-old-detail {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-current-detail {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-secondary);
}

.price-save {
    background: #dcfce7;
    color: #166534;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-description-short {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

/* Product Options */
.product-options {
    margin-bottom: 2.5rem;
}

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

.option-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.option-label i {
    color: var(--primary-color);
}

/* Color Options */
.color-options {
    display: flex;
    gap: 1rem;
}

.color-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-radius: var(--radius-full);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.color-btn span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
}

.color-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.25rem;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.color-btn.active i {
    opacity: 1;
}

.color-btn:hover {
    transform: scale(1.1);
}

/* Size Options */
.size-options {
    display: flex;
    gap: 1rem;
}

.size-btn {
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.size-name {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-color);
}

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

.size-btn:hover {
    border-color: var(--primary-color);
}

.size-btn.active {
    border-color: var(--primary-color);
    background: rgba(201, 166, 107, 0.1);
}

/* Quantity Selector */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: white;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .qty-btn {
        width: 48px;
        height: 48px;
    }
}

.qty-btn:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.quantity-selector input {
    width: 70px;
    height: 45px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-color);
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
    color: #059669;
    font-weight: 600;
}

.stock-status i {
    font-size: 1.25rem;
}

/* Action Buttons */
.product-actions-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.product-actions-detail .add-to-cart-btn {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

/* Payment Methods Box */
.payment-methods-box {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 2px solid #e2e8f0;
}

.payment-methods-box h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.payment-methods-box h4 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.payment-method {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.payment-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.payment-icon.orange-money {
    background: linear-gradient(135deg, #ff7900, #ff5a00);
}

.payment-icon.mtn-money {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
}

.payment-icon.moov-money {
    background: linear-gradient(135deg, #0066cc, #0052a3);
}

.payment-icon.visa {
    background: linear-gradient(135deg, #1a1f71, #0f1349);
}

.payment-icon.mastercard {
    background: linear-gradient(135deg, #eb001b, #f79e1b);
}

.payment-icon.paypal {
    background: linear-gradient(135deg, #003087, #009cde);
}

.payment-method span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

/* Product Features Box */
.product-features-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-inline {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.feature-item-inline i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-item-inline strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

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

/* Product Tabs */
.product-tabs-section {
    padding: var(--spacing-2xl) 0;
    background: white;
}

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

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

.tab-btn:hover {
    color: var(--text-color);
}

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

.tabs-content {
    background: white;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

.tab-content h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.tab-content h4 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.tab-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.tab-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.tab-content ul li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 1.25rem 0;
    font-size: 1rem;
}

.specs-table td:first-child {
    width: 40%;
    color: var(--text-color);
}

.specs-table td:last-child {
    color: var(--text-light);
}

/* Installation Guide */
.installation-guide {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.installation-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem 0;
    color: var(--text-color);
}

.step-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.installation-note {
    background: #dbeafe;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid #3b82f6;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.installation-note i {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.installation-note p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1e40af;
}

/* Reviews Section */
.reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
}

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

.big-rating {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-secondary);
    line-height: 1;
    margin-bottom: 1rem;
}

.stars-large {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.reviews-rating p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.reviews-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    gap: 1rem;
    align-items: center;
}

.rating-bar span:first-child {
    font-size: 0.875rem;
    color: var(--text-light);
}

.rating-bar .bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
}

.rating-bar span:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--text-color);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.review-author h4 {
    font-size: 1.125rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    color: #f59e0b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

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

.review-content h5 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

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

.review-helpful {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

.review-helpful button {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.review-helpful button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.load-more-reviews {
    margin-top: 2rem;
}

/* Related Products */
.related-products-section {
    padding: var(--spacing-2xl) 0;
    background: #f8fafc;
}

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

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* Responsive Design for Product Detail */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-title-detail {
        font-size: 2rem;
    }
    
    .price-current-detail {
        font-size: 2.5rem;
    }
    
    .main-image img {
        height: 400px;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .thumbnail img {
        height: 70px;
    }
    
    .product-info-detail {
        padding: 2rem;
    }
    
    .tabs-navigation {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        padding: 1rem 1.5rem;
        white-space: nowrap;
    }
    
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .size-options {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .product-actions-detail {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
        z-index: 100;
        margin: 0;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .color-btn {
        width: 40px;
        height: 40px;
    }
}




.category-overlay h3, .category-overlay p {
    color: white;
    font-weight: 600;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.promo-content {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}
/* ========================================
   Features Section
======================================== */
.features-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

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

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px var(--shadow-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-section {
        padding: 3rem 0;
    }
}

/* Footer Menu Styles */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Footer Menu Icons */
.footer-menu a i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 16px;
    display: inline-block;
}

/* ===================================
   PRODUCT DETAIL PAGE STYLES
   =================================== */

/* Product Detail Section */
.product-detail-section {
    padding: 3rem 0;
}

/* Product Detail Grid */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-gallery .main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--background-light);
}

.product-gallery .main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.wishlist-btn-large {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 10;
}

.wishlist-btn-large i {
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.wishlist-btn-large:hover,
.wishlist-btn-large.active {
    background: var(--primary-color);
}

.wishlist-btn-large:hover i,
.wishlist-btn-large.active i {
    color: white;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.thumbnail {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Product Info Detail */
.product-info-detail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-header-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.product-category-detail {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title-detail {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Product Rating Detail */
.product-rating-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-rating-detail .stars {
    display: flex;
    gap: 0.25rem;
}

.product-rating-detail .stars i {
    color: #FFB800;
    font-size: 1.1rem;
}

.rating-text {
    font-weight: 600;
    color: var(--text-color);
}

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

/* Product Price Detail */
.product-price-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-old-detail {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.price-current-detail {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-save {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Product Description Short */
.product-description-short {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Product Options */
.product-options {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

.option-label i {
    color: var(--primary-color);
}

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

.quantity-selector .qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.quantity-selector .qty-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.quantity-selector input {
    width: 80px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-weight: 500;
}

.stock-status i {
    font-size: 1.1rem;
}

.stock-status.out-of-stock {
    color: #dc3545;
}

/* Product Actions Detail */
.product-actions-detail {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Payment Methods Box */
.payment-methods-box {
    background: var(--background-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.payment-methods-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: var(--text-color);
}

.payment-methods-box h4 i {
    color: var(--primary-color);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.payment-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.payment-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.payment-icon.orange-money { background: linear-gradient(135deg, #FF6B00, #FF8533); }
.payment-icon.mtn-money { background: linear-gradient(135deg, #FFCC00, #FFD633); }
.payment-icon.moov-money { background: linear-gradient(135deg, #0066CC, #3399FF); }
.payment-icon.visa { background: linear-gradient(135deg, #1A1F71, #2E3A8C); }
.payment-icon.mastercard { background: linear-gradient(135deg, #EB001B, #F79E1B); }
.payment-icon.paypal { background: linear-gradient(135deg, #003087, #009CDE); }

.payment-method span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
}

/* Product Features Box */
.product-features-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item-inline {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    transition: all 0.3s;
}

.feature-item-inline:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-item-inline > i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.feature-item-inline > div {
    flex: 1;
}

.feature-item-inline strong {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.feature-item-inline span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Product Tabs Section */
.product-tabs-section {
    padding: 3rem 0;
    background: var(--background-light);
}

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

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    bottom: -2px;
}

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

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

.tabs-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tab-content {
    display: none;
}

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

.tab-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tab-content h4 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
}

.tab-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tab-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.tab-content ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 1rem;
    color: var(--text-secondary);
}

.specs-table td:first-child {
    width: 35%;
    color: var(--text-color);
}

/* Installation Guide */
.installation-guide {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.installation-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--text-color);
}

.step-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.installation-note {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #E3F2FD;
    border-left: 4px solid #2196F3;
    border-radius: 8px;
    margin-top: 1rem;
}

.installation-note i {
    font-size: 1.5rem;
    color: #2196F3;
    margin-top: 0.25rem;
}

.installation-note p {
    margin: 0;
    color: #1565C0;
    line-height: 1.6;
}

.installation-note strong {
    display: block;
    margin-bottom: 0.5rem;
}

/* Related Products Section */
.related-products-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.related-products-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.related-products-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-navigation {
        overflow-x: auto;
    }
    
    .tab-btn {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .product-title-detail {
        font-size: 1.5rem;
    }
    
    .price-current-detail {
        font-size: 1.5rem;
    }
    
    .thumbnail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions-detail {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1rem;
        background: white;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 100;
    }
}

/* ===================================
   COLLECTIONS PAGE STYLES
   =================================== */

.collections-showcase {
    padding: 4rem 0;
}

.collection-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.collection-item:last-child {
    margin-bottom: 0;
}

.collection-item.reverse {
    direction: rtl;
}

.collection-item.reverse > * {
    direction: ltr;
}

.collection-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.collection-image:hover {
    transform: scale(1.02);
}

.collection-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.collection-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.collection-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1.25rem;
    background: #10b981;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.collection-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.2;
}

.collection-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.collection-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.collection-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.collection-features .feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.collection-features .feature-item span {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.collection-stats {
    display: flex;
    gap: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-item strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.collection-content .btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.collection-content .btn i {
    transition: transform 0.3s;
}

.collection-content .btn:hover i {
    transform: translateX(5px);
}

.no-collections {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* CTA Banner */
.cta-banner {
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .collection-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .collection-item.reverse {
        direction: ltr;
    }
    
    .collection-image img {
        height: 400px;
    }
    
    .collection-title {
        font-size: 2rem;
    }
    
    .collection-stats {
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .collections-showcase {
        padding: 2rem 0;
    }
    
    .collection-item {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .collection-image img {
        height: 300px;
    }
    
    .collection-title {
        font-size: 1.75rem;
    }
    
    .collection-description {
        font-size: 1rem;
    }
    
    .collection-features {
        gap: 1rem;
    }
    
    .collection-features .feature-item {
        flex-basis: 100%;
    }
    
    .collection-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-banner {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
}

/* ===================================
   CATEGORY PAGE STYLES
   =================================== */

.category-page {
    min-height: 100vh;
}

.category-info-bar {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.category-info-bar .results-count {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.category-info-bar .results-count strong {
    color: var(--primary-color);
    font-weight: 700;
}

.pagination-wrapper {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-numbers.dots {
    border: none;
    pointer-events: none;
}

.related-categories-section {
    background: var(--background-light);
    padding: 4rem 0;
}

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

.category-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s;
}

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

.category-card-image {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.category-card-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: white;
}

.category-card-content h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.category-card-content p {
    margin: 0.5rem 0 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .category-info-bar {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card-image {
        height: 200px;
    }
}

/* ===================================
   PROMOTIONS PAGE STYLES
   =================================== */

.promotions-page {
    background: var(--background-light);
}

/* Countdown Timer Section */
.promo-countdown {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.countdown-banner {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.countdown-content .countdown-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dc2626;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.countdown-content h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 1rem 0 1.5rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.timer-value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.timer-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
}

/* Featured Deals Section */
.featured-deals {
    padding: 4rem 0;
}

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

.deal-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.deal-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.deal-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.deal-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.deal-card.featured .deal-image {
    height: 500px;
}

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

.deal-card:hover .deal-image img {
    transform: scale(1.1);
}

.deal-content {
    padding: 1.5rem;
}

.deal-category {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.deal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.deal-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.deal-rating i {
    color: #FFB800;
    font-size: 0.9rem;
}

.deal-rating span {
    margin-left: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.deal-prices {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.new-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
}

.deal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.deal-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.deal-features i {
    color: var(--primary-color);
}

.stock-info {
    margin-bottom: 1.5rem;
}

.stock-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.stock-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 4px;
    transition: width 0.3s;
}

.stock-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Newsletter Promo */
.newsletter-promo {
    padding: 4rem 0;
    background: linear-gradient(135deg, #c9a66b, #d4af37);
    color: white;
    text-align: center;
}

.newsletter-promo-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-promo h2 {
    margin-bottom: 1rem;
    color: white;
    font-size: 2rem;
}

.newsletter-promo p {
    margin-bottom: 2rem;
    opacity: 0.95;
    font-size: 1.1rem;
}

.newsletter-form-inline {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.newsletter-form-inline input[type="email"] {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: none;
    min-width: 300px;
    font-size: 1rem;
}

.newsletter-notice {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .deal-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .deal-card.featured .deal-image {
        height: 300px;
    }
    
    .deals-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .timer-item {
        min-width: 60px;
    }
    
    .timer-value {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .deals-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-deals {
        padding: 2rem 0;
    }
    
    .countdown-content h3 {
        font-size: 1.2rem;
    }
    
    .newsletter-form-inline {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form-inline input[type="email"] {
        min-width: 100%;
    }
    
    .newsletter-form-inline .btn {
        width: 100%;
    }
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* Company Story Section */
.company-story {
    padding: 6rem 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text .section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #c9a66b, #d4af37);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.story-text p.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.story-stats .stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    transition: all 0.3s;
}

.story-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.story-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c9a66b, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.story-stats .stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.story-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.story-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.story-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.story-image-secondary {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.story-image-secondary img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: white;
}

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

.team-member {
    text-align: center;
    transition: transform 0.3s;
}

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

.member-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.member-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1rem 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.team-member:hover .member-social {
    opacity: 1;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s;
}

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

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Timeline Section */
.timeline-section {
    padding: 6rem 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #c9a66b, #d4af37);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
}

.timeline-year {
    text-align: right;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c9a66b, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -1.65rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #c9a66b;
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-year::after {
    right: auto;
    left: -1.65rem;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c9a66b, #d4af37);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section (About Page) */
.cta-section {
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid currentColor;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #1e293b;
    color: white !important;
    border-color: #1e293b;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-left: 5rem;
    }
    
    .timeline-item:nth-child(even) {
        direction: ltr;
    }
    
    .timeline-year {
        text-align: left !important;
        font-size: 2rem;
    }
    
    .timeline-year::after {
        left: -3.5rem !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .company-story,
    .team-section,
    .timeline-section,
    .why-choose-us,
    .cta-section {
        padding: 3rem 0;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .story-text p.lead {
        font-size: 1rem;
    }
    
    .story-stats .stat-number {
        font-size: 2rem;
    }
    
    .timeline {
        padding: 0 1rem;
    }
    
    .timeline-item {
        padding-left: 3.5rem;
    }
    
    .timeline-year {
        font-size: 1.5rem;
    }
    
    .timeline-year::after {
        left: -2.7rem !important;
        width: 15px;
        height: 15px;
    }
    
    .member-image img {
        height: 280px;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: #f8fafc;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.form-header p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

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

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

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.contact-form label i {
    margin-right: 0.5rem;
}

.contact-form label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

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

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-block {
    width: 100%;
}

.form-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.form-notice i {
    color: #10b981;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.contact-info-card .info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c9a66b, #d4af37);
    border-radius: 12px;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.contact-info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: #d4af37;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.info-link:hover {
    gap: 0.75rem;
}

.info-hours {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.opening-hours {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span {
    color: var(--text-secondary);
}

.hours-row strong {
    color: var(--text-color);
}

/* Social Links Contact */
.contact-social {
    background: linear-gradient(135deg, #c9a66b, #d4af37);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.contact-social h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links-contact .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links-contact .social-link:hover {
    background: var(--text-color);
    color: white;
    transform: translateY(-5px);
}

/* Map Section */
.map-section {
    margin: 0;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    cursor: pointer;
    background: white;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 600;
    padding-right: 2rem;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-section,
    .faq-section {
        padding: 3rem 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-social {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
    }
    
    .map-container {
        height: 300px;
    }
}


/* ===================================
   CHECKOUT PAGE STYLES
   =================================== */

.checkout-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Checkout Form */
.checkout-form-wrapper {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.checkout-section-box {
    padding: 2.5rem;
    border-bottom: 2px solid #f1f5f9;
}

.checkout-section-box:last-of-type {
    border-bottom: none;
}

.checkout-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #c9a66b, #d4af37);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Form Styles */
.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .checkout-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.checkout-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkout-form .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.checkout-form .form-group label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.checkout-form .form-group input,
.checkout-form .form-group select,
.checkout-form .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus,
.checkout-form .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}

.checkout-form .checkbox-group {
    margin-bottom: 1rem;
}

.checkout-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkout-form .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Payment Methods */
.payment-methods-select {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method-option {
    position: relative;
    cursor: pointer;
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s;
}

.payment-method-option input[type="radio"]:checked + .payment-method-card {
    border-color: var(--primary-color);
    background: #fef3c7;
}

.payment-method-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.payment-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c9a66b, #d4af37);
    border-radius: 12px;
    color: white;
    font-size: 1.8rem;
}

.payment-icon.orange-money {
    background: linear-gradient(135deg, #ff7900, #f96302);
}

.payment-icon.mtn-money {
    background: linear-gradient(135deg, #ffcb05, #f9b607);
}

.payment-icon.wave-money {
    background: linear-gradient(135deg, #00bfff, #0099cc);
}

.payment-info h4 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.payment-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Checkout Submit Button */
.checkout-submit {
    margin-top: 2rem;
}

.checkout-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.checkout-notice i {
    color: #10b981;
}

/* Order Summary */
.order-summary-wrapper {
    position: relative;
}

.order-summary {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.sticky-summary {
    position: sticky;
    top: 100px;
}

.summary-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.summary-title i {
    color: var(--primary-color);
}

.summary-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 0.5rem;
}

.summary-items::-webkit-scrollbar {
    width: 6px;
}

.summary-items::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.summary-items::-webkit-scrollbar-thumb {
    background: #c9a66b;
    border-radius: 10px;
}

.summary-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.summary-item-image {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

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

.item-quantity {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid white;
}

.summary-item-details h4 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.4;
}

.item-price {
    margin: 0;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.summary-totals {
    border-top: 2px solid #f1f5f9;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.summary-row.total-row {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 2px solid #f1f5f9;
    margin-top: 0.75rem;
    padding-top: 1rem;
}

.summary-features {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.empty-cart-message {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem 0;
}

/* Cart Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-color);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.cart-close:hover {
    color: var(--text-color);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.cart-empty i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

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

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    position: relative;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.cart-item-details h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
}

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

.qty-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    font-weight: 600;
}

.cart-item-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #dc2626;
}

.cart-footer {
    padding: 2rem;
    border-top: 2px solid #f1f5f9;
    background: #f8fafc;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

/* Responsive */
@media (max-width: 1200px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 3rem 0;
    }
    
    .checkout-section-box {
        padding: 2rem 1.5rem;
    }
    
    .checkout-section-title {
        font-size: 1.25rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .payment-method-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .order-summary {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .checkout-section-box {
        padding: 1.5rem 1rem;
    }
    
    .checkout-section-title {
        font-size: 1.1rem;
    }
    
    .payment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .summary-title {
        font-size: 1.25rem;
    }
}



.owl-carousel .owl-item img {
    display: block;
    width: auto;
}

/* ========================================
   RESPONSIVE GLOBAL IMPROVEMENTS
======================================== */

/* Amélioration des zones tactiles sur mobile */
@media (max-width: 768px) {
    /* Boutons plus grands et plus faciles à toucher */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        justify-content: center;
    }
    
    .btn-lg {
        padding: 1.125rem 2rem;
        font-size: 1.125rem;
        min-height: 56px;
    }
    
    /* Inputs et selects plus grands */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    select,
    textarea {
        min-height: 48px;
        font-size: 16px; /* Empêche le zoom sur iOS */
        padding: 0.75rem 1rem;
    }
    
    textarea {
        min-height: 120px;
    }
    
    /* Espacements réduits mais respirants */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    /* Grilles responsives */
    .products-grid,
    .categories-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    /* Images responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Cartes produits */
    .product-card {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.125rem;
    }
    
    /* Formulaires sur 1 colonne */
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        width: 100%;
    }
    
    /* Tables responsive */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Pagination */
    .pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .page-numbers {
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Très petits écrans (320px - 480px) */
@media (max-width: 480px) {
    /* Typographie encore plus adaptée */
    h1, .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    h2, .section-title {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Padding réduit */
    .container {
        padding: 0 0.75rem;
    }
    
    /* Grilles 1 colonne */
    .products-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Boutons pleine largeur */
    .btn-block,
    .checkout-section .btn,
    .contact-form .btn {
        width: 100%;
    }
    
    /* Hero content */
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    /* Product detail */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-gallery,
    .product-info-detail {
        width: 100%;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* WhatsApp & Scroll buttons */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        font-size: 1.75rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 90px;
    }
    
    .scroll-to-top i {
        font-size: 1rem;
    }
}

/* Orientation paysage sur mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-swiper {
        min-height: 400px;
    }
    
    .nav {
        padding: 3rem 1.5rem 1.5rem;
    }
}

/* Amélioration du scroll */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }
    
    /* Smooth scroll sur mobile */
    * {
        -webkit-tap-highlight-color: rgba(201, 166, 107, 0.2);
    }
    
    /* Remove hover effects on touch devices */
    @media (hover: none) {
        .btn:hover,
        .product-card:hover,
        .category-card:hover {
            transform: none;
        }
    }
}