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

/* Dark E-commerce Theme */
:root {
    --primary-accent: #007bff;
    --secondary-accent: #28a745;
    --warning-accent: #ffc107;
    --danger-accent: #dc3545;
    --dark-bg: #0f0f0f;
    --darker-bg: #1a1a1a;
    --card-bg: #212529;
    --border-dark: #343a40;
    --text-light: #ffffff;
    --text-muted: #adb5bd;
    --text-gray: #6c757d;
    --accent-gradient: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    --blue-glow: rgba(0, 123, 255, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --shadow-darker: rgba(0, 0, 0, 0.5);
    --luxury-gradient: linear-gradient(135deg, #d4af37 0%, #f1c40f 50%, #ffd700 100%);
    --dark-charcoal: #2c3e50;
    --primary-gold: #d4af37;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-bg);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Dark Premium Style */
header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(25px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-darker);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid var(--border-dark);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 70px;
}

.logo {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--primary-accent);
    font-size: 1.5rem;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 123, 255, 0.1);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(28, 28, 30, 0.98);
    backdrop-filter: blur(20px);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
    display: flex;
    transform: translateY(0);
}

.mobile-nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav a {
    font-size: 1.5rem;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background: var(--luxury-gradient);
    transform: scale(1.05);
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    position: relative;
    border-radius: 8px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

nav a:hover::after {
    width: calc(100% - 32px);
}

nav a:hover {
    color: var(--primary-accent);
    background: rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

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

.btn-icon {
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: var(--text-light);
}

.btn-icon:hover {
    background: var(--primary-accent);
    color: white;
    border-color: var(--primary-accent);
    transform: translateY(-1px);
}

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

/* Main Slider - Full Width */
.main-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    margin-top: 70px;
    overflow: hidden;
    background: var(--darker-bg);
}

.main-slider .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    overflow: hidden;
}

.main-slider .slide.active {
    opacity: 1;
    transform: translateX(0);
}

.main-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.main-slider .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(28, 28, 30, 0.7) 0%, 
        rgba(28, 28, 30, 0.4) 50%, 
        rgba(28, 28, 30, 0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-slider .slide-content {
    color: white;
    text-align: left;
    max-width: 600px;
    animation: slideContentIn 1s ease-out 0.3s both;
}

.main-slider .slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: var(--blue-shimmer);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.main-slider .slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.main-slider .slide-content .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--accent-gradient);
    border: none;
    color: white;
    box-shadow: 0 8px 25px var(--blue-glow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-slider .slide-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6);
    background: linear-gradient(135deg, #66b3ff 0%, #007bff 50%, #0056b3 100%);
}

/* Main Slider Controls */
.main-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slider .slider-btn:hover {
    background: var(--primary-accent);
    color: white;
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary-accent);
    box-shadow: 0 8px 25px var(--blue-glow);
}

.main-slider .prev-btn {
    left: 2rem;
}

.main-slider .next-btn {
    right: 2rem;
}

/* Main Slider Dots */
.main-slider .slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.main-slider .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.main-slider .dot.active {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--blue-glow);
}

.main-slider .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.15);
}

/* Slide Content Animation */
@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section - Updated */
.hero {
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    min-height: auto;
}

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

.hero-content {
    padding: 80px 0;
    width: 100%;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-text h1 span {
    background: var(--blue-shimmer);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 15px var(--shadow-dark);
    border: 1px solid var(--border-dark);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 500px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-gold);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
}

.slide-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--gold-shimmer);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.slide-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px var(--shadow-gold);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}


@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Buttons - Network Style */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn-primary {
    background: var(--luxury-gradient);
    color: var(--dark-charcoal);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #C4941A 0%, #E8A5C8 50%, #F5C6C7 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--dark-charcoal);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--pearl-white);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

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

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 50%, #000 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.announcements {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.announcement {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.announcement:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.announcement i {
    font-size: 1.1rem;
}

.live-stream {
    animation: pulse 2s ease-in-out infinite;
}

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

/* Announcement Banner Responsive */
@media (max-width: 1024px) {
    .announcements {
        gap: 25px;
    }
    
    .announcement {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .announcement-banner {
        padding: 15px 0;
    }
    
    .announcements {
        gap: 15px;
        justify-content: center;
    }
    
    .announcement {
        font-size: 0.85rem;
        padding: 8px 12px;
        flex: 1;
        min-width: 0;
        justify-content: center;
        text-align: center;
    }
    
    .announcement span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .announcement-banner {
        padding: 12px 0;
    }
    
    .announcements {
        flex-direction: column;
        gap: 10px;
    }
    
    .announcement {
        font-size: 0.8rem;
        padding: 6px 10px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .announcement span {
        font-size: 0.75rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.2;
    }
    
    .announcement i {
        font-size: 1rem;
        flex-shrink: 0;
    }
}

.section-subtitle {
    text-align: center;
    color: rgba(44, 44, 44, 0.7);
    font-size: 1rem;
    margin: -1rem auto 2rem;
    max-width: 600px;
}

/* Products Section - Dark Style */
#products {
    padding: 80px 0;
    background: var(--darker-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-light);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-accent);
    border-radius: 2px;
}

.products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0;
}

.product-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-dark);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08) 0%, rgba(0, 86, 179, 0.05) 50%, rgba(0, 123, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px var(--blue-glow);
    border-color: var(--primary-accent);
}

.product-card:hover::before {
    opacity: 1;
}

/* Out of Stock Styles */
.product-card.out-of-stock {
    opacity: 0.7;
    border-color: #dc3545;
}

.product-card.out-of-stock:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 53, 69, 0.2);
}

.out-of-stock-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stock Status Styles */
.price-stock-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stock-info {
    text-align: right;
}

.stock-status {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-status.in-stock {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.stock-status.low-stock {
    background: rgba(255, 193, 7, 0.15);
    color: #856404;
    border: 1px solid rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite;
}

.stock-status.out-of-stock {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

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

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.product-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.3;
}

.product-category {
    color: var(--primary-accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--text-muted);
    min-width: fit-content;
}

.quantity-select {
    padding: 10px 16px;
    border: 2px solid var(--border-dark);
    border-radius: 8px;
    background: var(--darker-bg);
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    position: relative;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.quantity-select:hover {
    border-color: var(--primary-accent);
    background: var(--card-bg);
}

.quantity-select:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px var(--blue-glow);
}

.stock-info {
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 500;
}

.out-of-stock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stock-status {
    color: #dc3545;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-disabled {
    background: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.6;
    border: 1px solid #dee2e6 !important;
}

.btn-disabled:hover {
    background: #e9ecef !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 6px;
}

.btn-cart {
    background: var(--dark-gradient);
    color: white;
    flex: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cart:hover::before {
    left: 100%;
}

.btn-cart:hover {
    background: var(--accent-gradient);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 25px var(--blue-glow);
}

/* Disabled Button Styles */
.btn-disabled {
    background: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.btn-disabled:hover {
    background: #e9ecef !important;
    transform: none !important;
    box-shadow: none !important;
    color: #6c757d !important;
}

.no-image {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
}

/* WhatsApp Sidebar */
.whatsapp-sidebar {
    position: fixed;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 500px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 20px 0 0 20px;
    box-shadow: -10px 0 30px var(--shadow-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1500;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.whatsapp-sidebar.open {
    right: 0;
}

.sidebar-toggle {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--luxury-gradient);
    border: none;
    border-radius: 15px 0 0 15px;
    color: var(--dark-charcoal);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 15px var(--shadow-gold);
}

.sidebar-toggle:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: -8px 0 25px var(--shadow-gold);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--pearl-white) 100%);
}

.sidebar-header h4 {
    color: var(--dark-charcoal);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.sidebar-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-gallery {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    align-content: start;
}

.sidebar-gallery::-webkit-scrollbar {
    width: 6px;
}

.sidebar-gallery::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
}

.sidebar-gallery::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 3px;
}

.sidebar-image {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(139, 69, 19, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.image-overlay a:hover {
    transform: scale(1.1);
    background: white;
}

/* About Section - Dark Style */
#about {
    background: var(--dark-bg);
    padding: 80px 0;
}

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

.about-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: var(--darker-bg);
    border-color: var(--primary-accent);
    box-shadow: 0 8px 25px var(--shadow-darker);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-muted);
}

/* Contact Section */
#contact {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 80px 0;
}

#contact .section-title {
    color: var(--text-light);
}

#contact .section-title::after {
    background: var(--primary-accent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-accent);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-dark);
}

.contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

/* Contact form styles - exclude admin login page */
body:not(.admin-login-page) .form-group input,
body:not(.admin-login-page) .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

body:not(.admin-login-page) .form-group input::placeholder,
body:not(.admin-login-page) .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

body:not(.admin-login-page) .form-group input:focus,
body:not(.admin-login-page) .form-group textarea:focus {
    outline: none;
    border-color: #e60012;
    background: rgba(255, 255, 255, 0.1);
}

/* Footer - Dark Style */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-dark);
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--primary-accent);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.footer-logo i {
    color: var(--primary-accent);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-accent);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--card-bg);
    box-shadow: -10px 0 30px var(--shadow-darker);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
    background: var(--darker-bg);
}

.cart-header h3 {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-close:hover {
    background: var(--border-dark);
    color: var(--text-light);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-dark);
    animation: fadeIn 0.3s ease;
}

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

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
    flex-shrink: 0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
}

.btn-quantity {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-dark);
    background: var(--card-bg);
    color: var(--text-light);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-quantity:hover:not(:disabled) {
    background: var(--primary-gold);
    color: white;
    border-color: var(--primary-gold);
}

.btn-quantity:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-remove {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff5555;
}

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem 1rem;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: var(--text-muted);
}

.cart-footer {
    border-top: 1px solid var(--border-dark);
    padding: 1.5rem;
    background: var(--card-bg);
}

.cart-total {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 10px;
    border-radius: 8px;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 3000;
    padding-top: 100px;
}

.search-modal.open {
    display: flex;
}

.search-container {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-input-container {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.search-input-container input {
    flex: 1;
    border: none;
    font-size: 1.2rem;
    padding: 10px;
    outline: none;
    color: #1a1a1a;
    font-family: inherit;
}

.search-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
}

/* Loading and Messages */
.loading {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #e60012;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error {
    background: #ffe6e6;
    color: #d63384;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #d63384;
}

.success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #28a745;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.checkout-modal.open {
    opacity: 1;
    visibility: visible;
}

.checkout-container {
    background: var(--dark-bg);
    color: var(--text-light);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90%;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.checkout-modal.open .checkout-container {
    transform: translateY(0);
}

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e1e8ed;
}

.checkout-header h3 {
    margin: 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.2s;
}

.checkout-close:hover {
    background: #f8f9fa;
}

.checkout-content {
    padding: 1.5rem;
}

.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.checkout-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #e1e8ed;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    position: relative;
    z-index: 2;
}

.step span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e1e8ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.step.completed span {
    background: #28a745;
    color: white;
}

.checkout-step h4 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.2rem;
}

.order-summary {
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

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

.item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-info img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details h5 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
}

.item-details small {
    color: #666;
}

.order-total {
    border-top: 2px solid #e1e8ed;
    padding-top: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.total-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
    border-top: 1px solid #e1e8ed;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e8ed;
}

/* Checkout modal form overrides */
.checkout-modal .form-group input,
.checkout-modal .form-group textarea {
    background: var(--card-bg) !important;
    color: var(--text-light) !important;
    border: 1px solid var(--border-dark) !important;
}

.checkout-modal .form-group input::placeholder,
.checkout-modal .form-group textarea::placeholder {
    color: var(--text-muted) !important;
}

.checkout-modal .form-group input:focus,
.checkout-modal .form-group textarea:focus {
    background: var(--darker-bg) !important;
    border-color: var(--primary-accent) !important;
    box-shadow: 0 0 0 3px var(--blue-glow) !important;
}

.checkout-modal .form-group label {
    color: var(--text-light) !important;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

/* Fashion-specific decorative elements */
.luxury-accent {
    position: relative;
}

.luxury-accent::before {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Smooth scroll reveal animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced button interactions */
.btn:active {
    transform: translateY(1px);
    transition: transform 0.1s ease;
}

/* Elegant loading animation */
@keyframes elegantPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.fashion-divider {
    width: 100px;
    height: 2px;
    background: var(--luxury-gradient);
    margin: 2rem auto;
    border-radius: 1px;
    position: relative;
}

.fashion-divider::before,
.fashion-divider::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.fashion-divider::before {
    left: -10px;
}

.fashion-divider::after {
    right: -10px;
}

/* Premium badge for products */
.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--luxury-gradient);
    color: var(--dark-charcoal);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .header-content {
        justify-content: space-between;
        padding: 1rem 0;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0.8rem 0;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .btn-icon {
        min-width: 44px;
        min-height: 44px;
        font-size: 1.2rem;
    }
    
    .main-slider {
        height: 60vh;
        min-height: 400px;
        margin-top: 70px;
    }
    
    .main-slider .slide-content {
        padding: 0 1rem;
    }
    
    .main-slider .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .main-slider .slide-content p {
        font-size: 1.1rem;
    }
    
    .main-slider .prev-btn,
    .main-slider .next-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .main-slider .prev-btn {
        left: 1rem;
    }
    
    .main-slider .next-btn {
        right: 1rem;
    }
    
    .hero {
        margin-top: 0;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-slider {
        width: 100%;
        height: 300px;
        margin: 0 auto;
    }
    
    .announcements {
        flex-direction: column;
        gap: 15px;
    }
    
    .announcement {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-product-showcase {
        width: 300px;
        height: 300px;
    }
    
    .floating-card {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 10px;
        animation: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .whatsapp-sidebar {
        width: 280px;
        height: 450px;
    }
    
    .sidebar-toggle {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-container {
        width: 95%;
        margin: 1rem;
    }
    
    .checkout-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .checkout-steps::before {
        display: none;
    }
    
    .checkout-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .search-container {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .main-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .main-slider .slide-content {
        padding: 0 1rem;
    }
    
    .main-slider .slide-content h2 {
        font-size: 2rem;
    }
    
    .main-slider .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .main-slider .slide-content .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .main-slider .prev-btn,
    .main-slider .next-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .main-slider .prev-btn {
        left: 0.5rem;
    }
    
    .main-slider .next-btn {
        right: 0.5rem;
    }
    
    .main-slider .slider-dots {
        bottom: 1rem;
    }
    
    .main-slider .dot {
        width: 12px;
        height: 12px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Cart Page Styles */
.cart-page {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    background: var(--dark-bg);
    padding: 2rem 0;
}

.cart-page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cart-page-header h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.empty-cart-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.empty-cart-content {
    text-align: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-dark);
}

.empty-cart-content i {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

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

.cart-page-content {
    display: block;
}

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

.cart-items-section h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.cart-item-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-radius: 15px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    align-items: center;
}

.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary-accent);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cart-item-unit-price {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--darker-bg);
    border-radius: 8px;
    padding: 0.25rem;
}

.quantity-btn {
    background: var(--primary-accent);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary-accent);
    transform: scale(1.05);
}

.quantity-btn:disabled {
    background: var(--text-gray);
    cursor: not-allowed;
    transform: none;
}

.quantity-display {
    color: var(--text-light);
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: var(--danger-accent);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #c82333;
    transform: scale(1.05);
}

.cart-forms-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-summary-card,
.form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-radius: 15px;
    padding: 1.5rem;
}

.order-summary-card h3,
.form-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-light);
}

.summary-item.total {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-accent);
    padding-top: 1rem;
    border-top: 2px solid var(--border-dark);
}

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

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

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--darker-bg);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px var(--blue-glow);
}

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

.btn-full {
    width: 100%;
}

/* Responsive Design for Cart Page */
@media (max-width: 768px) {
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cart-item-card {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cart-page-header h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Ana sayfa mobile - 480px altında daha da büyük kartlar */
    #products .products-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        max-width: 350px;
        margin: 0 auto;
    }
    
    #products .product-card {
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }
    
    #products .product-image {
        height: 280px;
        border-radius: 20px 20px 0 0;
    }
    
    #products .product-info {
        padding: 1.8rem 1.5rem;
    }
    
    #products .product-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    #products .product-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0.8rem 0;
    }
    
    #products .product-price {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-gold);
    }
    
    #products .btn-cart {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 12px;
    }
    
    .whatsapp-sidebar {
        width: 250px;
        height: 400px;
        right: -250px;
    }
    
    .sidebar-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .sidebar-gallery {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .image-overlay a {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
}

/* Product Filters */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-dark);
    border: 1px solid var(--border-dark);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.filter-group select {
    padding: 12px 16px;
    border: 2px solid var(--border-dark);
    border-radius: 8px;
    background: var(--darker-bg);
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px var(--blue-glow);
}

.filter-group select:hover {
    border-color: var(--primary-accent);
    background: var(--card-bg);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

@media (max-width: 768px) {
    .product-filters {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .filter-group {
        min-width: unset;
    }
    
    .filter-group:last-child {
        align-self: center;
        margin-top: 0.5rem;
    }
}

/* Page Hero */
.page-hero {
    background: var(--accent-gradient);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

/* Products Page */
.products-page {
    padding: 4rem 0;
    min-height: 60vh;
}

/* Products Layout - Sidebar + Main */
.products-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Filters Sidebar */
.filters-sidebar {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow-dark);
    border: 1px solid var(--border-dark);
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-dark);
}

.filters-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 700;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-accent);
    padding: 4px 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: var(--text-light);
    background: var(--primary-accent);
    border-radius: 4px;
}

.filter-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-section h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-dark);
    border-radius: 8px;
    background: var(--darker-bg);
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px var(--blue-glow);
}

.filter-select:hover {
    border-color: var(--primary-accent);
    background: var(--card-bg);
}

/* Price Inputs */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-input-group {
    flex: 1;
}

.price-input-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--border-dark);
    border-radius: 6px;
    background: var(--darker-bg);
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.price-input:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 2px var(--blue-glow);
}

.price-input:hover {
    border-color: var(--primary-accent);
    background: var(--card-bg);
}

.price-separator {
    color: var(--text-light);
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Price Quick Filters */
.price-quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.price-tag {
    padding: 6px 12px;
    background: var(--darker-bg);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.price-tag:hover, .price-tag.active {
    background: var(--primary-accent);
    color: white;
    border-color: var(--primary-accent);
    transform: translateY(-1px);
}

/* Radio Options */
.sort-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.radio-option:hover {
    background: rgba(0, 123, 255, 0.1);
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-accent);
    background: var(--primary-accent);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* Filter Actions */
.filter-actions {
    margin-top: 2rem;
}

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

/* Products Main */
.products-main {
    min-height: 400px;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.results-info {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.no-products p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.load-more-container {
    margin: 3rem 0;
}

.btn-outline {
    background: transparent;
    color: var(--primary-accent);
    border: 2px solid var(--primary-accent);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--primary-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--blue-glow);
}

/* Navigation Active State */
nav a.active {
    color: var(--primary-accent) !important;
    font-weight: 600;
}

/* Responsive adjustments for products page */
@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .filters-sidebar {
        position: static;
        max-height: none;
        display: none;
    }
    
    .filters-sidebar.mobile-open {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 5000;
        background: var(--pearl-white);
        border-radius: 0;
        padding: 2rem;
        overflow-y: auto;
    }
    
    .mobile-filter-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .mobile-filter-toggle {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .price-inputs {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .price-separator {
        text-align: center;
        margin: 0;
    }
    
    .price-quick-filters {
        justify-content: center;
    }
    
    .filters-sidebar.mobile-open {
        padding: 1.5rem;
    }
    
    .filters-header h3 {
        font-size: 1.1rem;
    }
}

/* Mobile Filter Overlay */
@media (max-width: 1024px) {
    .filters-sidebar.mobile-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .filters-sidebar.mobile-open .filters-header {
        position: sticky;
        top: 0;
        background: var(--pearl-white);
        z-index: 10;
        margin: -2rem -2rem 2rem -2rem;
        padding: 2rem 2rem 1rem 2rem;
    }
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2rem;
}

.pagination-info {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    background: var(--card-bg);
    border: 2px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-number:hover {
    border-color: var(--primary-accent);
    background: var(--darker-bg);
    color: var(--text-light);
}

.page-number.active {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
    color: white;
}

.page-number:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Make products grid exactly 3x3 for homepage */
#products .products-grid {
    grid-template-columns: repeat(3, 1fr);
    max-height: none;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-numbers {
        order: 1;
    }
    
    #prev-page {
        order: 0;
    }
    
    #next-page {
        order: 2;
    }
    
    /* Make grid responsive on mobile - Ana sayfa ürünleri tek kolon */
    #products .products-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Ana sayfada mobile ürün kartlarını büyüt */
    #products .product-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    #products .product-image {
        height: 300px;
    }
    
    #products .product-info {
        padding: 2rem 1.5rem;
    }
    
    #products .product-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    #products .product-price {
        font-size: 1.4rem;
        font-weight: 700;
    }
    
    #products .stock-status {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet: 2 columns */
    #products .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Product Detail Page Styles */
.loading-overlay {
    position: fixed;
    top: 80px; /* Header altında başlasın */
    left: 0;
    width: 100%;
    height: calc(100% - 80px); /* Header yüksekliğini çıkar */
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    color: var(--text-light);
}

.loading-content i {
    font-size: 3rem;
    color: var(--primary-accent);
    margin-bottom: 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.error-state {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px; /* Header altında kalmaması için */
}

.error-content {
    max-width: 500px;
    padding: 2rem;
}

.error-content i {
    font-size: 4rem;
    color: var(--danger-accent);
    margin-bottom: 1.5rem;
}

.error-content h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.error-actions .btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    justify-content: center;
}

.error-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-accent), #0056b3);
    color: white;
    border: none;
}

.error-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.error-actions .btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-dark);
}

.error-actions .btn-outline:hover {
    background: var(--card-bg);
    border-color: var(--primary-accent);
    transform: translateY(-2px);
}

.breadcrumb-section {
    background: var(--darker-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-dark);
    margin-top: 80px; /* Header altında kalmaması için boşluk bırak */
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb span:not(.breadcrumb-item) {
    color: var(--text-gray);
}

.product-detail {
    padding: 2.5rem 0; /* %17 küçültüldü */
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* %25 küçültüldü */
    align-items: start;
}

.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    position: relative;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.main-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.main-image:hover .image-zoom-overlay {
    opacity: 1;
}

.image-zoom-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-zoom-overlay i {
    margin-right: 0.5rem;
}

.product-info {
    padding: 1rem 0;
}

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

.product-header h1 {
    font-size: 2.2rem; /* %12 küçültüldü */
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.8rem; /* %20 küçültüldü */
    line-height: 1.2;
}

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

.product-category, .product-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--border-dark);
}

.product-category i, .product-brand i {
    color: var(--primary-accent);
}

.product-price {
    margin: 2rem 0;
}

.current-price {
    font-size: 2.6rem; /* %13 küçültüldü */
    font-weight: 800;
    color: var(--primary-accent);
    background: linear-gradient(135deg, var(--primary-accent), #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-description {
    margin: 1.6rem 0; /* %20 küçültüldü */
    padding: 1.2rem; /* %20 küçültüldü */
    background: var(--card-bg);
    border-radius: 10px; /* %17 küçültüldü */
    border: 1px solid var(--border-dark);
}

.product-description h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-description h3 i {
    color: var(--primary-accent);
}

.product-description p {
    color: var(--text-muted);
    line-height: 1.8;
}

.product-stock {
    margin: 2rem 0;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

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

.stock-info i {
    color: var(--secondary-accent);
}

.stock-available {
    color: var(--secondary-accent);
    font-weight: 600;
}

.stock-out {
    color: var(--danger-accent);
    font-weight: 600;
}

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

.product-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    overflow: hidden;
    background: var(--card-bg);
}

.quantity-btn {
    width: 44px;
    height: 44px;
    background: var(--darker-bg);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover:not(:disabled) {
    background: var(--primary-accent);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#quantity-input {
    width: 60px;
    height: 44px;
    border: none;
    background: var(--card-bg);
    color: var(--text-light);
    text-align: center;
    font-weight: 600;
    border-left: 1px solid var(--border-dark);
    border-right: 1px solid var(--border-dark);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 180px;
}

.product-sharing {
    margin: 3rem 0;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
}

.product-sharing h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-sharing h4 i {
    color: var(--primary-accent);
}

.sharing-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn.whatsapp {
    background: #25D366;
    color: white;
}

.share-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.share-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.share-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.share-btn.copy-link {
    background: var(--darker-bg);
    color: var(--text-light);
    border: 1px solid var(--border-dark);
}

.share-btn.copy-link:hover {
    background: var(--primary-accent);
    transform: translateY(-2px);
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-accent);
    width: 40px;
    text-align: center;
}

.feature strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.25rem;
}

.feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.related-products {
    padding: 4rem 0;
    background: var(--darker-bg);
    border-top: 1px solid var(--border-dark);
}

.related-products .section-title {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.related-products .section-title i {
    color: var(--danger-accent);
}

.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.zoom-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.zoom-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

#zoomed-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 5000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.notification.success {
    border-left: 4px solid var(--secondary-accent);
}

.notification.success i {
    color: var(--secondary-accent);
}

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

/* Responsive Design for Product Detail */
@media (max-width: 768px) {
    .loading-overlay {
        top: 60px; /* Mobile header için ayarla */
        height: calc(100% - 60px);
    }
    
    .breadcrumb-section {
        margin-top: 60px; /* Mobile header için ayarla */
    }
    
    .error-state {
        padding-top: 80px; /* Mobile için padding */
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-images {
        position: relative;
        top: auto;
    }
    
    .product-header h1 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .sharing-buttons {
        justify-content: center;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .product-detail {
        padding: 2rem 0;
    }
    
    .product-header h1 {
        font-size: 1.75rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .btn-large {
        width: 100%;
        min-width: auto;
    }
}

/* New Clean Product Card Styles */
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-color: var(--primary-accent);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.no-image {
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.out-of-stock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.product-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.product-brand-header {
    background: linear-gradient(135deg, var(--primary-gold), #f1c40f);
    color: var(--dark-bg);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

.product-category-tag {
    background: var(--darker-bg);
    color: var(--primary-accent);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--border-dark);
}

.product-price-section {
    text-align: center;
    margin: 0.5rem 0;
}

.price-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-accent);
    background: linear-gradient(135deg, var(--primary-accent), #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-label {
    font-size: 0.7rem;
    color: var(--secondary-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 0.2rem;
}

.product-stock-section {
    text-align: center;
    margin: 0.5rem 0;
}

.stock-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stock-status.out-of-stock {
    background: rgba(220, 53, 69, 0.1);
    color: var(--danger-accent);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.stock-status.low-stock {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning-accent);
    border: 1px solid rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite;
}

.stock-status.in-stock {
    background: rgba(40, 167, 69, 0.1);
    color: var(--secondary-accent);
    border: 1px solid rgba(40, 167, 69, 0.3);
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}

.product-actions {
    margin-top: auto;
    padding-top: 0.5rem;
}

.btn-view-product {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-accent), #0056b3);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-view-product:hover {
    background: linear-gradient(135deg, #0056b3, var(--primary-accent));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.btn-view-product i {
    font-size: 0.9rem;
}