/* =========================
   RESET & BASE STYLES
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #667eea;
    --primary-dark: #764ba2;
    --primary-light: #8A2BE2;
    --secondary: #f093fb;
    --secondary-dark: #f5576c;
    --accent: #00d4ff;
    --accent-dark: #0088cc;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1f2937;
    --dark-2: #111827;
    --light: #f8fafc;
    --light-2: #f1f5f9;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    
    --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary-dark));
    --gradient-2: linear-gradient(135deg, var(--primary-light), var(--accent));
    --gradient-3: linear-gradient(135deg, var(--secondary), var(--accent-dark));
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    
    --glow: 0 0 20px rgba(102, 126, 234, 0.5);
    --glow-primary: 0 0 30px rgba(102, 126, 234, 0.6);
    --glow-accent: 0 0 30px rgba(0, 212, 255, 0.6);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================
   PARTICLES BACKGROUND
========================= */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.1;
    animation: floatParticle 20s infinite linear;
}

.particle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.particle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.particle:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-100px) translateX(100px) rotate(90deg);
    }
    50% {
        transform: translateY(0) translateX(200px) rotate(180deg);
    }
    75% {
        transform: translateY(100px) translateX(100px) rotate(270deg);
    }
}

/* =========================
   ENHANCED HERO SECTION
========================= */
.hero-enhanced {
    padding: 50px 30px 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.05));
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.hero-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1900px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}


.hero-title {
    font-size: 55px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}


.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-title .sparkle {
    position: absolute;
    color: var(--accent);
    font-size: 2rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-shape {
    position: absolute;
    border-radius: 20px;
    background: var(--gradient-2);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 0;
    left: 0;
    animation-delay: 3s;
}

.hero-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    color: var(--primary);
    animation: float 4s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
}

/* =========================
   FILTER SECTION
========================= */
.filter-section {
    background: white;
    padding: 2rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filter-header h2 {
    font-size: 1.5rem;
    color: var(--dark);
}

.filter-search {
    position: relative;
    width: 300px;
}

.filter-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-light);
}

.filter-search input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 3rem;
    border: 2px solid var(--light-2);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.filter-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.filter-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 0.6rem 1.2rem;
    background: var(--light-2);
    border: none;
    border-radius: 25px;
    color: var(--dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.filter-tag.active {
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--shadow-md);
}

.tag-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* =========================
   PRODUCTS SECTION
========================= */
.products-section {
    padding: 5rem 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.title-decoration .line {
    width: 80px;
    height: 3px;
    background: var(--gradient-1);
}

.title-decoration i {
    color: var(--warning);
    font-size: 1.5rem;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.view-toggle {
    display: inline-flex;
    background: var(--light-2);
    padding: 0.3rem;
    border-radius: 10px;
    gap: 0.2rem;
}

.view-btn {
    padding: 0.6rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-btn.active {
    background: white;
    box-shadow: var(--shadow-sm);
}

/* =========================
   ENHANCED PRODUCT CARD
========================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.product-item {
    perspective: 1000px;
}

.enhanced-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.enhanced-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    
}
.enhanced-card:hover .product-desc{
    color: #fff;
}

.enhanced-card:hover .price-section{
    background: var(--success);
    color: white;
}
.enhanced-card:hover .price-section .price-period{
    color: white;
}

.enhanced-card:hover .card-hover-effect {
    opacity: 1;
}

.card-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: badgePulse 2s infinite;
}

.sale-badge {
    background: var(--gradient-3);
    color: white;
}

.featured-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--dark);
}

.stock-badge {
    background: var(--success);
    color: white;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.product-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-2), white);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: var(--transition-slow);
}

.enhanced-card:hover .product-img {
    transform: scale(1.1);
}

.product-icon-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.enhanced-card:hover .quick-view-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: none;
    border-radius: 25px;
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.quick-view-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(102,126,234,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.enhanced-card:hover .image-glow {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
}

.product-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.category-tag {
    padding: 0.3rem 0.8rem;
    background: var(--light-2);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.category-tag:hover {
    background: var(--primary);
    color: white;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.title-link {
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.title-link:hover,.cta-actions a.btn-primary.btn-glow  {
    color: #fff;
}

.title-icon {
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition);
}

.title-link:hover .title-icon {
    opacity: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--warning);
}

.review-count {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.product-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.key-features {
    margin-bottom: 1.5rem;
}

.key-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-size: 0.9rem;
}

.feature-icon {
    color: var(--success);
    font-size: 1rem;
}

.price-section {
    background: var(--light-2);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.price-wrapper {
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray-light);
    font-size: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0.3rem 0;
}

.price-period {
    color: var(--gray);
    font-size: 0.9rem;
}

.savings-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--danger);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-add-to-cart {
    flex: 1;
    padding: 1rem;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.btn-add-to-cart .added-icon {
    opacity: 0;
    transition: var(--transition);
}

.btn-add-to-cart.added .added-icon {
    opacity: 1;
    color: var(--success);
}

.btn-view-details {
    flex: 1;
    padding: 1rem;
    background: var(--light-2);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-view-details:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.quick-actions {
    display: flex;
    gap: 0.5rem;
}

.quick-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--light-2);
    background: white;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-action-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
}

.quick-action-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.product-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--light-2);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--gray);
}

.meta-item i {
    color: var(--primary);
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: 20px;
    filter: blur(20px);
}

/* =========================
   FEATURED BANNER
========================= */
.featured-banner {
    background: var(--gradient-2);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem auto;
    max-width: 1900px;
    animation: bannerPulse 3s infinite;
}

@keyframes bannerPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.banner-icon {
    font-size: 3rem;
}

.banner-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    opacity: 0.9;
    font-size: 1rem;
}

.banner-btn {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================
   ENHANCED CTA SECTION
========================= */
.cta-enhanced {
    position: relative;
    padding: 6rem 2rem;
    margin-top: 5rem;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.cta-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.cta-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 4s;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.cta-features .feature i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.cta-features .feature span {
    font-size: 1rem;
    font-weight: 500;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #00d4ff, #667eea);
    z-index: -1;
    border-radius: 12px;
    animation: rotate 3s linear infinite;
    opacity: 0.7;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    z-index: -1;
    border-radius: 10px;
}

@keyframes rotate {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.btn-primary {
    padding: 1.2rem 2.5rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.btn-secondary {
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: white;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.trust-badges .badge i {
    color: var(--accent);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
    }
}

/* =========================
   LOADING ANIMATION
========================= */
.loading-animation {
    display: none;
    justify-content: center;
    padding: 3rem;
}

.loader {
    display: flex;
    gap: 0.5rem;
}

.loader-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-1);
    animation: bounce 1.4s infinite ease-in-out;
}

.loader-circle:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-circle:nth-child(2) {
    animation-delay: -0.16s;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .filter-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .filter-search {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .quick-actions {
        width: 100%;
        justify-content: center;
    }
}