/* =============================================
   E-COMMERCE STYLES
   Complete CSS for online store
   ============================================= */

/* ============================================ */
/* HEADER SPECIFIC STYLES                      */
/* ============================================ */

/* Top Bar Links */
.topbar-links {
    display: flex;
    gap: 1.5rem;
}

.topbar-links a {
    color: inherit;
    text-decoration: none;
    font-size: 0.8125rem;
    transition: var(--transition-fast);
}

.topbar-links a:hover {
    opacity: 0.8;
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 2rem;
}

.search-form {
    position: relative;
    display: flex;
}

.search-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: var(--transition-fast);
    background: var(--bg-secondary);
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-search {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* Header Actions */
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    font-size: 0.875rem;
    font-weight: 500;
}

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

.cart-btn {
    position: relative;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-base);
    border-radius: 2px;
}

/* Mobile Submenus */
.mobile-submenu-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.mobile-submenu-list.active {
    max-height: 500px;
}

.mobile-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-submenu > a .fa-chevron-down {
    transition: transform 0.3s ease;
}

.mobile-submenu > a.active .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

/* Navigation */
.main-nav {
    border-top: 1px solid var(--border-color);
    background: white;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 1rem 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-menu > li > a:hover::after,
.nav-menu > li:hover > a::after {
    width: 100%;
}

/* Submenus */
.has-submenu {
    position: relative;
}

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

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    z-index: 1000;
}

.submenu-wide {
    min-width: 300px;
}

.submenu ul {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.submenu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.875rem;
}

.submenu li a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: white;
    transform: translateX(100%);
    transition: var(--transition-base);
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

/* ============================================ */
/* FOOTER SPECIFIC STYLES                      */
/* ============================================ */

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
}

.newsletter-input-group {
    display: flex;
    gap: 0.75rem;
    flex: 1;
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer Links */
.footer-links li a {
    padding: 0.25rem 0;
}

.footer-contact li {
    align-items: flex-start;
}

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

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

/* Payment Methods */
.footer-payment {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.payment-methods i {
    font-size: 2rem;
    color: var(--text-secondary);
}

/* ============================================ */
/* RESPONSIVE DESIGN                           */
/* ============================================ */

@media (max-width: 1024px) {
    .header-search {
        margin: 0 1rem;
        max-width: 400px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-topbar {
        display: none;
    }
    
    .header-search {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-action-btn span {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        gap: 1rem;
    }
    
    .site-logo .logo-text {
        font-size: 1.25rem;
    }
    
    .mobile-menu-content {
        width: 280px;
    }
    
    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================ */
/* THEME-SPECIFIC OVERRIDES                    */
/* ============================================ */

/* Tech Blue Theme Specific */
.tech-theme .header-ecommerce.sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.tech-theme .submenu {
    border-color: #e2e8f0;
}

/* Minimal Dark Theme Specific */
.minimal-theme .header-ecommerce {
    border-bottom: 1px solid var(--border-color);
}

.minimal-theme .header-ecommerce.sticky {
    box-shadow: var(--shadow-sm);
}

.minimal-theme .search-form input {
    background: var(--bg-secondary);
}

/* Vibrant Orange Theme Specific */
.vibrant-theme .header-ecommerce {
    border-bottom: 3px solid var(--primary-color);
}

.vibrant-theme .header-ecommerce.sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.vibrant-theme .cart-count {
    border: 2px solid white;
}

.vibrant-theme .submenu {
    border: 2px solid var(--primary-color);
}

/* public/css/ecommerce-blocks.css */
/* ==========================================
   E-COMMERCE BLOCKS STYLES
   ========================================== */

/* Best Sellers Section */
.best-sellers-section {
    padding: 60px 0;
    background: #f9fafb;
}

.bestseller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.best-seller-card .sales-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

/* Brands Showcase */
.brands-showcase {
    padding: 60px 0;
    background: #fff;
}

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

.brand-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    border-radius: 8px;
    padding: 15px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-name {
    font-weight: 600;
    font-size: 14px;
}

/* Flash Deals with Countdown */
.deals-countdown-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.deals-countdown {
    display: flex;
    align-items: center;
    gap: 20px;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.countdown-item {
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.9;
}

.deal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

.stock-progress {
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #666;
}

/* Product Reviews Section */
.product-reviews-section {
    padding: 60px 0;
    background: #fff;
}

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

.review-card {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

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

.review-rating .fas.fa-star {
    color: #ffd700;
}

.review-rating .far.fa-star {
    color: #ddd;
}

.review-date {
    color: #999;
    font-size: 13px;
}

.review-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-footer {
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e8f5e9;
    color: #4caf50;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.reviewed-product {
    margin-top: 10px;
}

.product-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.product-link img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.product-link span {
    font-size: 13px;
    color: #2196f3;
}

/* Coupon Banner */
.coupon-banner-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
}

.coupon-banner-section .section-title,
.coupon-banner-section .section-subtitle {
    color: white;
}

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

.coupon-card {
    background: white;
    color: #333;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.coupon-left {
    flex: 1;
    padding: 20px;
    display: flex;
    gap: 15px;
}

.coupon-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.coupon-details {
    flex: 1;
}

.coupon-title {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 8px;
}

.coupon-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.coupon-condition,
.coupon-expiry {
    font-size: 12px;
    color: #999;
    margin: 3px 0;
}

.coupon-right {
    background: #f9fafb;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    border-left: 2px dashed #ddd;
}

.coupon-code-box {
    text-align: center;
}

.coupon-code {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 10px 15px;
    background: white;
    border: 2px dashed #ff6b6b;
    border-radius: 8px;
    margin-bottom: 10px;
}

.btn-copy-code {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-copy-code:hover {
    background: #ee5a6f;
}

.btn-copy-code.copied {
    background: #4caf50;
}

/* Trust Badges */
.trust-badges-section {
    padding: 40px 0;
    background: #f9fafb;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.badge-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.badge-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.payment-methods {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.payment-label {
    font-weight: 600;
    margin-right: 15px;
}

.payment-icons {
    display: inline-flex;
    gap: 15px;
    font-size: 32px;
}

.payment-icons i {
    color: #555;
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: #2196f3;
}

/* Continuing ecommerce-blocks.css */

/* Hero Shop Section */
.hero-shop {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content-left {
    text-align: left;
}

.hero-content-center {
    text-align: center;
    margin: 0 auto;
}

.hero-content-right {
    text-align: right;
    margin-left: auto;
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subheadline {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-actions .btn {
    min-width: 180px;
}

/* Products by Category */
.products-by-category {
    padding: 60px 0;
    background: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.btn-view-all {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    color: #1976d2;
    gap: 12px;
}

/* Recently Viewed Products */
.recently-viewed-section {
    padding: 60px 0;
    background: #f9fafb;
}

.products-slider {
    position: relative;
    overflow: hidden;
}

/* Product Search Section */
.product-search-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.search-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.product-search-form {
    position: relative;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-icon {
    position: absolute;
    left: 25px;
    color: #999;
    font-size: 18px;
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 20px 15px 50px;
    font-size: 16px;
    outline: none;
    border-radius: 50px;
}

.btn-search {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    margin-top: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.suggestions-list {
    padding: 10px 0;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.suggestion-item:hover {
    background: #f9fafb;
}

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

.suggestion-name {
    font-weight: 500;
    margin-bottom: 3px;
}

.suggestion-price {
    color: #2196f3;
    font-weight: 600;
}

/* Product Filters Sidebar */
.product-filters-sidebar {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.filters-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.btn-clear-filters {
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.filter-group:last-of-type {
    border-bottom: none;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.filter-checkbox,
.filter-radio {
    cursor: pointer;
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.price-slider {
    display: flex;
    gap: 10px;
}

.slider {
    flex: 1;
    cursor: pointer;
}

.btn-apply-filters {
    margin-top: 20px;
}

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

.rating-filter .fas.fa-star {
    color: #ffd700;
    font-size: 14px;
}

.rating-filter .far.fa-star {
    color: #ddd;
    font-size: 14px;
}

/* Testimonials Slider */
.testimonials-slider-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-rating {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-rating .fas.fa-star {
    color: #ffd700;
    font-size: 20px;
    margin: 0 2px;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 25px;
}

.testimonial-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    text-align: center;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-product {
    font-size: 14px;
    color: #666;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #667eea;
    color: white;
}

.slider-prev {
    left: -25px;
}

.slider-next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    width: 30px;
    border-radius: 6px;
}

/* Newsletter Signup */
.newsletter-signup-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-description {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

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

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 15px;
}

.newsletter-icon {
    position: absolute;
    left: 25px;
    color: #999;
    font-size: 18px;
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 15px 20px 15px 55px;
    font-size: 16px;
    outline: none;
    border-radius: 50px;
}

.btn-subscribe {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-subscribe:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.newsletter-privacy {
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-message {
    margin-top: 15px;
}

/* Order Tracking Section */
.order-tracking-section {
    padding: 60px 0;
    background: #f9fafb;
}

.tracking-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.tracking-header {
    text-align: center;
    margin-bottom: 40px;
}

.tracking-icon {
    font-size: 60px;
    color: #667eea;
    margin-bottom: 20px;
}

.tracking-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.tracking-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tracking-input {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.tracking-input:focus {
    border-color: #667eea;
}

.tracking-result {
    margin-top: 30px;
}

.order-status-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.order-header h3 {
    margin: 0;
    font-size: 24px;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-processing {
    background: #cce5ff;
    color: #004085;
}

.status-shipped {
    background: #d1ecf1;
    color: #0c5460;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    position: relative;
    opacity: 0.4;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 70px;
    width: 2px;
    height: calc(100% - 50px);
    background: #e0e0e0;
}

.timeline-item.completed {
    opacity: 1;
}

.timeline-item.completed::after {
    background: #4caf50;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    z-index: 2;
}

.timeline-item.completed .timeline-icon {
    background: #4caf50;
    color: white;
}

.timeline-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.timeline-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.order-details {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.detail-row .label {
    font-weight: 600;
    color: #666;
}

.detail-row .value {
    font-weight: 500;
}

/* Order History Section */
.order-history-section {
    padding: 60px 0;
    background: #f9fafb;
}

.order-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.no-orders {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
}

.no-orders i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-orders h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.no-orders p {
    color: #666;
    margin-bottom: 25px;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.order-number {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.order-date {
    color: #666;
    font-size: 14px;
}

.order-card-body {
    margin-bottom: 20px;
}

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

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item .label {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

.detail-item .value {
    font-size: 15px;
    font-weight: 600;
}

.order-card-footer {
    display: flex;
    gap: 10px;
}

/* Wishlist Section */
.wishlist-section {
    padding: 60px 0;
    background: #f9fafb;
}

.wishlist-count {
    background: #667eea;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.empty-wishlist {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
}

.empty-wishlist i {
    font-size: 100px;
    color: #ddd;
    margin-bottom: 25px;
}

.empty-wishlist h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.empty-wishlist p {
    color: #666;
    margin-bottom: 30px;
}

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

.wishlist-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.btn-remove-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #ff6b6b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.btn-remove-wishlist:hover {
    background: #ff6b6b;
    color: white;
    transform: rotate(90deg);
}

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

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

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

.wishlist-card .product-info {
    padding: 20px;
}

.wishlist-card .product-brand {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.wishlist-card .product-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.wishlist-card .product-title a {
    text-decoration: none;
    color: inherit;
}

.wishlist-card .product-price {
    margin-bottom: 10px;
}

.stock-status {
    margin-bottom: 15px;
}

.stock-status .in-stock {
    color: #4caf50;
    font-size: 13px;
    font-weight: 600;
}

.stock-status .out-of-stock {
    color: #ff6b6b;
    font-size: 13px;
    font-weight: 600;
}

.wishlist-add-to-cart {
    margin-top: 10px;
}

/* Shipping Info Section */
.shipping-info-section {
    padding: 60px 0;
    background: #fff;
}

.shipping-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.shipping-method-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.shipping-method-card:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.method-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.method-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.method-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.method-time {
    font-size: 13px;
    color: #666;
}

.method-cost {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
}

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

.info-item {
    text-align: center;
    padding: 30px 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-item p {
    color: #666;
    margin-bottom: 5px;
}

.info-item .price {
    font-weight: 700;
    color: #667eea;
    font-size: 16px;
}

.shipping-policies {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
}

.shipping-policies h3 {
    margin-bottom: 20px;
}

.shipping-policies ul {
    list-style: none;
    padding: 0;
}

.shipping-policies li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.shipping-policies li i {
    color: #4caf50;
    font-size: 18px;
}

/* Return Policy Section */
.return-policy-section {
    padding: 60px 0;
    background: #f9fafb;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.policy-header {
    text-align: center;
    margin-bottom: 30px;
}

.policy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.policy-content {
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.policy-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.highlight-item {
    text-align: center;
    padding: 25px 15px;
    background: #f9fafb;
    border-radius: 12px;
}

.highlight-item i {
    font-size: 40px;
    color: #667eea;
    margin-bottom: 15px;
}

.highlight-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.policy-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}
/* Continuing ecommerce-blocks.css */

/* FAQ E-Commerce Section */
.faq-ecommerce-section {
    padding: 60px 0;
    background: #fff;
}

.faq-accordion {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
}

.faq-item.active {
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #667eea;
    font-size: 14px;
}

.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 25px 20px;
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.faq-contact {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
}

.faq-contact p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Stats Counter Section */
.stats-counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
}

/* Social Proof Popup - Already defined in previous section */

/* About Store Section */
.about-store-section {
    padding: 80px 0;
    background: #fff;
}

.about-store-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-store-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

.about-store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
}

.about-store-content .section-title {
    margin-bottom: 25px;
}

.content-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.content-text h3,
.content-text h4 {
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-text p {
    margin-bottom: 15px;
}

.content-text ul,
.content-text ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.about-cta {
    margin-bottom: 40px;
}

.store-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.store-highlights .highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.store-highlights .highlight-content {
    text-align: left;
}

.store-highlights .highlight-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.store-highlights .highlight-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Product Comparison Section */
.product-comparison-section {
    padding: 60px 0;
    background: #f9fafb;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.comparison-table th {
    padding: 0;
    border: none;
}

.feature-column {
    min-width: 150px;
    font-weight: 600;
    text-align: left;
    padding: 20px 25px;
    position: sticky;
    left: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: 10;
}

.product-column {
    min-width: 250px;
    vertical-align: top;
}

.product-header {
    padding: 20px;
    text-align: center;
    position: relative;
}

.btn-remove-compare {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-remove-compare:hover {
    background: #ff6b6b;
    transform: rotate(90deg);
}

.product-header img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.product-header h4 {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

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

.comparison-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.comparison-table td {
    padding: 20px 25px;
    text-align: center;
    vertical-align: middle;
}

.feature-name {
    font-weight: 600;
    text-align: left;
    background: white;
    position: sticky;
    left: 0;
    z-index: 5;
}

.comparison-table tbody tr:nth-child(even) .feature-name {
    background: #f9fafb;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 5px;
}

.rating-stars .fas.fa-star {
    color: #ffd700;
}

.rating-stars .far.fa-star {
    color: #ddd;
}

.rating-text {
    font-size: 13px;
    color: #666;
}

.no-rating {
    color: #999;
    font-size: 13px;
}

.price-sale {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 18px;
    margin-right: 8px;
}

.price-original {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.price-current {
    color: #333;
    font-weight: 700;
    font-size: 18px;
}

.status-badge.in-stock {
    background: #d4edda;
    color: #155724;
}

.status-badge.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-actions .btn {
    white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-store-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-store-image {
        height: 400px;
    }
    
    .comparison-table-wrapper {
        border-radius: 0;
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 36px;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .deals-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .countdown-timer {
        width: 100%;
        justify-content: space-between;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .countdown-value {
        font-size: 24px;
    }
    
    .reviews-grid,
    .coupons-grid,
    .wishlist-grid {
        grid-template-columns: 1fr;
    }
    
    .coupon-card {
        flex-direction: column;
    }
    
    .coupon-right {
        border-left: none;
        border-top: 2px dashed #ddd;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
    }
    
    .search-input-group {
        flex-direction: column;
        padding: 10px;
        border-radius: 12px;
    }
    
    .search-input {
        padding: 15px 20px;
        width: 100%;
    }
    
    .btn-search {
        width: 100%;
        border-radius: 8px;
    }
    
    .product-filters-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .newsletter-title {
        font-size: 28px;
    }
    
    .newsletter-description {
        font-size: 16px;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .newsletter-input {
        padding: 15px 20px;
        border-radius: 8px 8px 0 0;
    }
    
    .btn-subscribe {
        width: 100%;
        border-radius: 0 0 8px 8px;
        justify-content: center;
    }
    
    .tracking-input-group {
        gap: 10px;
    }
    
    .tracking-input-group .btn {
        width: 100%;
    }
    
    .timeline-item {
        gap: 15px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .timeline-item:not(:last-child)::after {
        left: 19px;
        top: 60px;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-card-footer {
        flex-direction: column;
    }
    
    .order-card-footer .btn {
        width: 100%;
    }
    
    .about-store-image {
        height: 300px;
    }
    
    .store-highlights {
        gap: 15px;
    }
    
    .store-highlights .highlight-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .shipping-methods-grid,
    .policy-highlights {
        grid-template-columns: 1fr;
    }
    
    .policy-wrapper {
        padding: 25px;
    }
    
    .policy-cta {
        flex-direction: column;
    }
    
    .policy-cta .btn {
        width: 100%;
    }
    
    .comparison-table {
        min-width: 800px;
    }
    
    .feature-column {
        min-width: 120px;
        padding: 15px;
        font-size: 14px;
    }
    
    .product-column {
        min-width: 200px;
    }
    
    .product-header {
        padding: 15px;
    }
    
    .product-header img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 8px;
    }
    
    .countdown-value {
        font-size: 20px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .deal-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading and Alert Styles */
.loading {
    text-align: center;
    padding: 40px;
    color: #667eea;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.alert i {
    font-size: 18px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.animate-slide-in {
    animation: slideInRight 0.5s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Utility Classes for E-Commerce Blocks */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

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

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

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

.btn-outline:hover {
    background: currentColor;
    color: white;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
}

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

/* Print Styles for Order Pages */
@media print {
    .header-ecommerce,
    .footer-ecommerce,
    .btn,
    button {
        display: none !important;
    }
    
    .order-status-card,
    .order-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .product-card,
    .review-card,
    .coupon-card,
    .trust-badge,
    .wishlist-card,
    .order-card {
        background: #1e1e1e;
        color: #e0e0e0;
    }
    
    .faq-item {
        background: #1e1e1e;
        border-color: #333;
    }
    
    .testimonial-card {
        background: #1e1e1e;
    }
}

/* Accessibility Improvements */
.btn:focus,
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styles */
::selection {
    background: #667eea;
    color: white;
}

::-moz-selection {
    background: #667eea;
    color: white;
}

/* =============================================
   FEATURED PRODUCTS GRID
   ============================================= */

.featured-products {
    padding: 60px 0;
    background: var(--white);
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

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

.product-card.featured {
    border-color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.sale-badge {
    background: var(--danger-color);
    color: var(--white);
}

.product-badge.new-badge {
    background: var(--success-color);
    color: var(--white);
}

.product-image {
    position: relative;
    padding-top: 100%; /* 1:1 aspect ratio */
    overflow: hidden;
    background: var(--light-gray);
}

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

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

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

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

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.product-info {
    padding: 20px;
}

.product-brand {
    font-size: 0.875rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 12px;
}

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

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

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
}

.rating-count {
    font-size: 0.875rem;
    color: #999;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.price-sale {
    color: var(--danger-color);
}

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

.stock-status {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.stock-status.out-of-stock {
    background: #ffebee;
    color: var(--danger-color);
}

.stock-status.low-stock {
    background: #fff3e0;
    color: var(--warning-color);
}

/* =============================================
   PRODUCT CATEGORIES
   ============================================= */

.product-categories {
    padding: 60px 0;
    background: var(--light-gray);
}

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

.category-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

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

.category-link {
    display: block;
    text-decoration: none;
    color: var(--text-color);
}

.category-image {
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-icon {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.category-icon i {
    font-size: 3rem;
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.product-count {
    font-size: 0.875rem;
    color: #999;
}

/* =============================================
   HOMEPAGE BANNER SLIDER
   ============================================= */

.homepage-banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

.banner-slides {
    position: relative;
    width: 100%;
}

.banner-slide {
    position: relative;
    min-height: 500px;
    display: none;
    background-size: cover;
    background-position: center;
    align-items: center;
}

.banner-slide.active {
    display: flex;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 600px;
}

.banner-content.left {
    margin-right: auto;
}

.banner-content.center {
    margin: 0 auto;
    text-align: center;
}

.banner-content.right {
    margin-left: auto;
    text-align: right;
}

.banner-subtitle {
    font-size: 1.25rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: var(--transition);
}

.banner-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

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

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

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

.product-detail {
    padding: 40px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 0.875rem;
}

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

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.product-gallery .main-image img {
    width: 100%;
    height: auto;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
}

.thumbnail {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

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

.product-info-main {
    padding: 20px 0;
}

.product-info-main .product-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 16px 0;
}

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

.product-price-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.product-price-box .price-current,
.product-price-box .price-sale {
    font-size: 2.5rem;
}

.save-amount {
    background: var(--success-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-description {
    margin-bottom: 24px;
    line-height: 1.8;
    color: #666;
}

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

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

.product-option label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.option-values {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.option-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

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

.stock-info {
    margin-bottom: 24px;
}

.stock-info .in-stock {
    color: var(--success-color);
    font-weight: 600;
}

.quantity-selector {
    margin-bottom: 20px;
}

.qty-input {
    display: inline-flex;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.qty-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.btn-add-to-cart {
    flex: 1;
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-features {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

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

/* Product Tabs */
.product-tabs {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 16px 32px;
    border: none;
    background: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    color: #666;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

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

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

.tab-content {
    display: none;
}

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

.content-inner {
    padding: 20px 0;
}

.reviews-list {
    margin-bottom: 30px;
}

.review-item {
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.review-date {
    margin-left: auto;
    font-size: 0.875rem;
    color: #999;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--success-color);
    font-size: 0.875rem;
    margin-top: 12px;
}

/* =============================================
   SHOPPING CART
   ============================================= */

.shopping-cart {
    padding: 40px 0;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 30px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    align-items: center;
}

.item-image img {
    width: 100%;
    border-radius: 8px;
}

.item-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.item-name a {
    color: var(--text-color);
    text-decoration: none;
}

.item-subtotal {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.item-remove {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.item-remove:hover {
    background: var(--danger-color);
    color: var(--white);
    border-color: var(--danger-color);
}

.cart-summary {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.cart-summary h3 {
    margin-top: 0;
    margin-bottom: 24px;
}

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

.summary-row.total-row {
    font-size: 1.5rem;
    padding-top: 16px;
    border-top: 2px solid var(--border-color);
    margin-top: 16px;
}

.free-shipping {
    color: var(--success-color);
    font-weight: 600;
}

.free-shipping-notice {
    background: #e8f5e9;
    padding: 12px;
    border-radius: 8px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success-color);
    font-size: 0.875rem;
}

.coupon-section {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.coupon-section input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

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

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

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

@media (max-width: 992px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }
    
    .item-quantity,
    .item-subtotal {
        grid-column: 2;
    }
    
    .item-remove {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        font-size: 0.875rem;
    }
}
