/* ==========================================
   MODERN V2 LANDING PAGE STYLES
   Bold & Contemporary Design Updates
   ========================================== */

/* ==========================================
   MODERN HERO SECTION V2
   ========================================== */
.hero-section-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-overlay-intro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 0;
}

.hero-text-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-badge i {
    font-size: 1.1rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-title-gradient::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
    100% { top: 8px; opacity: 1; }
}

/* ==========================================
   MODERN SECTION HEADERS V2
   ========================================== */
.section-header-v2 {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-label i {
    font-size: 1rem;
}

.section-title-v2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.title-accent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.6), transparent);
    border-radius: 2px;
}

.section-subtitle-v2 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   MODERN BRANDS SECTION V2
   ========================================== */
.brands-section-v2 {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.brands-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

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

.brand-card-v2 {
    position: relative;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.brand-card-inner {
    position: relative;
    padding: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.brand-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.brand-hover-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.brand-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
}

.brand-card-v2:hover .brand-hover-overlay {
    opacity: 1;
}

.brand-card-v2:hover .brand-hover-content {
    transform: translateY(0);
}

.brand-card-v2:hover .brand-image-wrapper {
    transform: scale(1.05);
}

.brand-card-v2:hover .brand-logo {
    filter: grayscale(0);
}

/* ==========================================
   CATEGORIES SECTION V2
   ========================================== */
.categories-section-v2 {
    padding: 6rem 0;
    background: white;
}

/* ==========================================
   MODERN FEATURES SECTION V2
   ========================================== */
.features-section-v2 {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-section-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.features-section-v2::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.feature-card-v2 {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-v2:hover::before {
    opacity: 1;
}

.feature-card-v2:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.feature-icon-bg.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon-bg.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-icon-bg.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-icon-bg.gradient-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-card-v2:hover .feature-icon-bg {
    opacity: 0.25;
    transform: scale(1.1) rotate(10deg);
}

.feature-icon-wrapper i {
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.feature-card-v2:nth-child(1) .feature-icon-wrapper i {
    color: #667eea;
}

.feature-card-v2:nth-child(2) .feature-icon-wrapper i {
    color: #f093fb;
}

.feature-card-v2:nth-child(3) .feature-icon-wrapper i {
    color: #4facfe;
}

.feature-card-v2:nth-child(4) .feature-icon-wrapper i {
    color: #43e97b;
}

.feature-card-v2:hover .feature-icon-wrapper i {
    transform: scale(1.2);
}

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

.feature-title-v2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-description-v2 {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==========================================
   TESTIMONIALS SECTION V2
   ========================================== */
.testimonials-section-v2 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section-v2 .section-header-v2 {
    color: white;
}

.testimonials-section-v2 .section-label {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonials-section-v2 .section-title-v2 {
    color: white;
}

.testimonials-section-v2 .title-accent {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-section-v2 .title-accent::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.testimonials-section-v2 .section-subtitle-v2 {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   PREMIUM PRODUCTS SECTION V2
   ========================================== */
.premium-products-section-v2 {
    padding: 6rem 0;
    background: white;
}

/* ==========================================
   WHY CHOOSE US SECTION V2
   ========================================== */
.why-choose-section-v2 {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

/* Tablet (768px and below) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section-v2 {
        min-height: 90vh;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .hero-stat-label {
        font-size: 0.85rem;
    }

    .hero-stat-divider {
        height: 30px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* Section Headers */
    .section-header-v2 {
        margin-bottom: 2.5rem;
    }

    .section-label {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
        margin-bottom: 1rem;
    }

    .section-title-v2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle-v2 {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    /* Brands Grid - 2 Columns */
    .brands-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brand-card-inner {
        padding: 0;
    }

    .brand-logo {
        padding: 0.75rem;
    }

    /* Features Grid - 2 Columns */
    .features-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card-v2 {
        padding: 1.5rem 1rem;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-icon-wrapper i {
        font-size: 1.5rem;
    }

    .feature-title-v2 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-description-v2 {
        font-size: 0.85rem;
    }

    /* Categories Grid */
    .categories-grid-modern {
        gap: 1rem;
    }

    .category-row-modern {
        gap: 1rem;
    }

    .category-card-modern {
        min-height: 250px;
    }

    .category-title-modern {
        font-size: 1.2rem;
    }

    /* Premium Products - 2 Columns */
    .premium-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    .premium-product-card {
        margin-bottom: 0;
    }

    .card-content {
        padding: 1rem;
    }

    .product-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .product-description {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .product-features {
        gap: 0.3rem;
        margin-bottom: 0.75rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
    }

    .price-section {
        margin-bottom: 0.5rem;
    }

    .price {
        font-size: 0.95rem;
    }

    .rating-section {
        font-size: 0.8rem;
    }

    .stars i {
        font-size: 0.75rem;
    }

    /* Testimonials */
    .testimonials-section-v2 {
        padding: 4rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-badge {
        font-size: 0.8rem;
    }

    /* Why Choose Us - 2 Columns */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    .why-item {
        padding: 1.5rem 1rem;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .why-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .why-content p {
        font-size: 0.85rem;
    }

    /* Stats Section - 2x2 Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-icon i {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Section Spacing */
    .brands-section-v2,
    .categories-section-v2,
    .features-section-v2,
    .testimonials-section-v2,
    .premium-products-section-v2,
    .why-choose-section-v2 {
        padding: 4rem 0;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    /* Hero Section */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .hero-stat-item {
        flex: 0 0 45%;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Section Headers */
    .section-title-v2 {
        font-size: 1.6rem;
    }

    .section-subtitle-v2 {
        font-size: 0.9rem;
    }

    /* Brands - Keep 2 Columns */
    .brands-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .brand-card-inner {
        padding: 0;
    }

    .brand-logo {
        padding: 0.5rem;
    }

    /* Features - Keep 2 Columns */
    .features-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .feature-card-v2 {
        padding: 1.25rem 0.75rem;
    }

    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .feature-icon-wrapper i {
        font-size: 1.3rem;
    }

    .feature-title-v2 {
        font-size: 0.9rem;
    }

    .feature-description-v2 {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Categories */
    .category-row-modern {
        flex-direction: column;
        gap: 0.75rem;
    }

    .category-card-modern {
        min-height: 200px;
    }

    /* Premium Products - Keep 2 Columns */
    .premium-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .card-content {
        padding: 0.75rem;
    }

    .product-title {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .product-description {
        font-size: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-features {
        flex-wrap: wrap;
        gap: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .feature-tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    .price {
        font-size: 0.9rem;
    }

    .premium-badge,
    .brand-tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    /* Why Choose Us - Keep 2 Columns */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .why-item {
        padding: 1.25rem 0.75rem;
    }

    .why-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .why-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .why-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Stats - Keep 2x2 Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.25rem 0.75rem;
    }

    .stat-icon i {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Testimonials */
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .testimonial-nav {
        gap: 1rem;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Section Spacing */
    .brands-section-v2,
    .categories-section-v2,
    .features-section-v2,
    .testimonials-section-v2,
    .premium-products-section-v2,
    .why-choose-section-v2 {
        padding: 3rem 0;
    }

    /* Container Padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

