/* ==========================================
   HERO SECTION - EXACT LAYOUT MATCH
   ========================================== */
   
   
   
 /* ==========================================
   HERO SECTION - SHOW/HIDE LOGIC
   ========================================== */

/* Desktop/Tablet: Show desktop hero, hide mobile */
.ans-mart-v-hero-desktop {
    display: block;
}

.ans-mart-v-hero-mobile-section {
    display: none;
}

/* Mobile: Hide desktop hero, show mobile */
@media (max-width: 768px) {
    .ans-mart-v-hero-desktop {
        display: none !important;
    }
    
    .ans-mart-v-hero-mobile-section {
        display: block;
    }
}  

.ans-mart-v-hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 0;
    margin-top: 0;
    overflow: hidden;
}

.ans-mart-v-hero-slider {
    width: 100%;
    position: relative;
    height: 500px;
}

/* Slides */
.ans-mart-v-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}

.ans-mart-v-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide backgrounds - Based on slide index */
.ans-mart-v-hero-slide:nth-child(1) {
    background: linear-gradient(135deg, #B8D8D8 0%, #A8CCC8 100%);
}

.ans-mart-v-hero-slide:nth-child(2) {
    background: linear-gradient(135deg, #FFB6D8 0%, #FF9CC5 100%);
}

.ans-mart-v-hero-slide:nth-child(3) {
    background: linear-gradient(135deg, #FFE4B5 0%, #FFD9A0 100%);
}

/* Pattern overlay */
.ans-mart-v-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="30" fill="none" stroke="rgba(0,0,0,0.15)" stroke-width="2"/></svg>');
    background-size: 120px 120px;
    pointer-events: none;
}

/* Container - 2 column grid */
.ans-mart-v-hero-slide .ans-mart-v-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    gap: 60px;
}

/* LEFT - Content */
.ans-mart-v-hero-content {
    z-index: 2;
    padding: 40px 0;
}

/* Badge */
.ans-mart-v-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

/* Title */
.ans-mart-v-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #2C3E50;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

/* Description */
.ans-mart-v-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #5A6C7D;
    margin: 0 0 30px 0;
}

/* Buttons */
.ans-mart-v-hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.ans-mart-v-hero-buttons .ans-mart-v-btn-primary {
    padding: 16px 36px;
    border: 3px solid #FFFFFF;
    border-radius: 12px;
    background: transparent;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.ans-mart-v-hero-buttons .ans-mart-v-btn-primary:hover {
    background: #FFFFFF;
    color: #2C3E50;
    transform: translateY(-2px);
}

.ans-mart-v-hero-buttons .ans-mart-v-btn-secondary {
    padding: 16px 36px;
    border: 3px solid #FFFFFF;
    border-radius: 12px;
    background: #FFFFFF;
    color: #2C3E50;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ans-mart-v-hero-buttons .ans-mart-v-btn-secondary:hover {
    background: transparent;
    color: #FFFFFF;
}

/* RIGHT - Image */
.ans-mart-v-hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.ans-mart-v-hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
}

/* Navigation Controls */
.ans-mart-v-hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.ans-mart-v-hero-prev,
.ans-mart-v-hero-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ans-mart-v-hero-prev:hover,
.ans-mart-v-hero-next:hover {
    background: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.ans-mart-v-hero-prev i,
.ans-mart-v-hero-next i {
    color: #2C3E50;
    font-size: 20px;
}

/* Dots Navigation */
.ans-mart-v-hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.ans-mart-v-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ans-mart-v-dot.active {
    background: #FFFFFF;
    width: 32px;
    border-radius: 6px;
}

/* ==========================================
   MOBILE RESPONSIVE - IMAGE BELOW CONTENT
   ========================================== */

@media (max-width: 768px) {
    .ans-mart-v-hero-section {
        min-height: auto;
    }
    
    .ans-mart-v-hero-slider {
        height: auto;
        min-height: 600px;
    }
    
    /* Container - VERTICAL STACK */
    .ans-mart-v-hero-slide .ans-mart-v-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 0;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    /* Content - FULL WIDTH ON TOP */
    .ans-mart-v-hero-content {
        position: relative;
        z-index: 3;
        padding: 50px 0 30px;
        max-width: 100%;
        width: 100%;
        text-align: center;
        order: 1; /* Content comes first */
    }
    
    /* Badge */
    .ans-mart-v-hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 16px;
        display: inline-block;
    }
    
    /* Title - FULL WIDTH */
    .ans-mart-v-hero-title {
        font-size: 32px;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 16px;
        line-height: 1.2;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    /* Description */
    .ans-mart-v-hero-desc {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 24px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    /* Buttons - CENTERED */
    .ans-mart-v-hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        max-width: 100%;
    }
    
    .ans-mart-v-hero-buttons .ans-mart-v-btn-primary {
        padding: 14px 28px;
        font-size: 15px;
        border: 2px solid #FFFFFF;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .ans-mart-v-hero-buttons .ans-mart-v-btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
        border: 2px solid #FFFFFF;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Image - BELOW CONTENT, CENTERED */
    .ans-mart-v-hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 300px;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2; /* Image comes second */
        padding: 0 0 40px 0;
    }
    
    .ans-mart-v-hero-image img {
        width: 100%;
        max-width: 400px;
        height: 100%;
        object-fit: contain;
        object-position: center;
        border-radius: 12px;
    }
    
    /* Navigation arrows */
    .ans-mart-v-hero-controls {
        padding: 0 12px;
    }
    
    .ans-mart-v-hero-prev,
    .ans-mart-v-hero-next {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .ans-mart-v-hero-prev i,
    .ans-mart-v-hero-next i {
        font-size: 16px;
    }
    
    /* Dots */
    .ans-mart-v-hero-dots {
        bottom: 16px;
        gap: 10px;
    }
    
    .ans-mart-v-dot {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.5);
    }
    
    .ans-mart-v-dot.active {
        width: 28px;
        background: #FFFFFF;
    }
}

@media (max-width: 480px) {
    .ans-mart-v-hero-slider {
        min-height: 550px;
    }
    
    .ans-mart-v-hero-content {
        padding: 40px 0 20px;
    }
    
    /* Title smaller for small phones */
    .ans-mart-v-hero-title {
        font-size: 28px;
    }
    
    .ans-mart-v-hero-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .ans-mart-v-hero-buttons .ans-mart-v-btn-primary,
    .ans-mart-v-hero-buttons .ans-mart-v-btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
        max-width: 240px;
    }
    
    /* Image */
    .ans-mart-v-hero-image {
        height: 250px;
        padding: 0 0 30px 0;
    }
    
    .ans-mart-v-hero-image img {
        max-width: 320px;
    }
}

@media (max-width: 375px) {
    .ans-mart-v-hero-title {
        font-size: 24px;
    }
    
    .ans-mart-v-hero-desc {
        font-size: 12px;
    }
    
    .ans-mart-v-hero-image {
        height: 220px;
    }
    
    .ans-mart-v-hero-image img {
        max-width: 280px;
    }
}

/* ==========================================
   MOBILE HERO SECTION - BANNER STYLE
   ========================================== */

.ans-mart-v-hero-mobile-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* ==========================================
   HERO SECTION - SHOW/HIDE LOGIC
   ========================================== */

/* Desktop/Tablet: Show desktop hero, hide mobile */
.ans-mart-v-hero-desktop {
    display: block;
}

.ans-mart-v-hero-mobile-section {
    display: none;
}

/* Mobile: Hide desktop hero, show mobile */
@media (max-width: 768px) {
    .ans-mart-v-hero-desktop {
        display: none !important;
    }
    
    .ans-mart-v-hero-mobile-section {
        display: block;
    }
}

/* ==========================================
   MOBILE HERO SECTION - LARGER IMAGE
   ========================================== */

.ans-mart-v-hero-mobile-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.ans-mart-v-hero-mobile-slider {
    position: relative;
    width: 100%;
}

/* Mobile Slide */
.ans-mart-v-hero-mobile-slide {
    display: none;
    padding: 30px 20px;
    border-radius: 16px;
    margin: 0 10px;
    min-height: 220px; /* INCREASED from 180px */
    position: relative;
}

.ans-mart-v-hero-mobile-slide.active {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px; /* REDUCED gap to fit larger image */
    align-items: center;
}

/* Content - LEFT SIDE */
.ans-mart-v-hero-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 5px;
}

.ans-mart-v-hero-mobile-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #1F2937;
    margin: 0;
}

/* Button */
.ans-mart-v-hero-mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #10B981;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    align-self: flex-start;
}

.ans-mart-v-hero-mobile-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Image - RIGHT SIDE - 2X LARGER */
.ans-mart-v-hero-mobile-image {
    width: 280px; /* DOUBLED from 140px */
    height: 280px; /* DOUBLED from 140px */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ans-mart-v-hero-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Navigation Arrows - MOBILE */
.ans-mart-v-hero-mobile-prev,
.ans-mart-v-hero-mobile-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ans-mart-v-hero-mobile-prev {
    left: 5px;
}

.ans-mart-v-hero-mobile-next {
    right: 5px;
}

.ans-mart-v-hero-mobile-prev:hover,
.ans-mart-v-hero-mobile-next:hover {
    background: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.ans-mart-v-hero-mobile-prev i,
.ans-mart-v-hero-mobile-next i {
    color: #1F2937;
    font-size: 14px;
}

/* Dots - MOBILE */
.ans-mart-v-hero-mobile-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 20px;
}

.ans-mart-v-hero-mobile-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ans-mart-v-hero-mobile-dot.active {
    background: #10B981;
    width: 24px;
    border-radius: 4px;
}

/* ==========================================
   MOBILE HERO - RESPONSIVE
   ========================================== */

@media (max-width: 480px) {
    .ans-mart-v-hero-mobile-slide {
        padding: 24px 16px;
        min-height: 150px; /* INCREASED */
        gap: 12px;
    }
    
    .ans-mart-v-hero-mobile-title {
        font-size: 18px;
    }
    
    .ans-mart-v-hero-mobile-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .ans-mart-v-hero-mobile-image {
        width: 160px; /* DOUBLED from 120px */
        height: 160px; /* DOUBLED from 120px */
    }
}

@media (max-width: 375px) {
    .ans-mart-v-hero-mobile-slide {
        padding: 20px 12px;
        min-height: 160px; /* INCREASED */
        gap: 10px;
    }
    
    .ans-mart-v-hero-mobile-title {
        font-size: 16px;
    }
    
    .ans-mart-v-hero-mobile-btn {
        padding: 9px 18px;
        font-size: 13px;
    }
    
    .ans-mart-v-hero-mobile-image {
        width: 150px; /* DOUBLED from 100px */
        height: 150px; /* DOUBLED from 100px */
    }
}

/* ==========================================
   CATEGORY SECTION - FIXED ALIGNMENT
   ========================================== */

.ans-mart-v-category-section {
    padding: 60px 0;
    background: #FFFFFF;
    position: relative;
}

.ans-mart-v-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header - Fixed Structure */
.ans-mart-v-section-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* Left side content wrapper */
.ans-mart-v-section-content {
    flex: 1;
}

.ans-mart-v-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.ans-mart-v-section-desc {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* See all button - stays on right */
.ans-mart-v-see-all {
    font-size: 16px;
    font-weight: 600;
    color: #3B82F6;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 6px;
}

.ans-mart-v-see-all:hover {
    color: #2563EB;
}

/* Remove old wrapper */
.ans-mart-v-section-title-wrapper {
    display: none;
}

/* Slider Wrapper */
.ans-mart-v-category-slider-wrapper {
    position: relative;
    margin-top: 32px;
}

/* Slider Container */
.ans-mart-v-category-slider {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    margin: 0 -8px;
}

.ans-mart-v-category-slider::-webkit-scrollbar {
    display: none;
}

/* Category Grid - PC Layout */
.ans-mart-v-category-grid {
    display: flex;
    gap: 20px;
    padding: 8px;
}

/* Category Card */
.ans-mart-v-category-card {
    flex: 0 0 auto;
    width: 200px;
    min-height: 240px;
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #E8F5E9;
}

.ans-mart-v-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Category Image */
.ans-mart-v-category-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.ans-mart-v-category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ans-mart-v-category-image i {
    font-size: 48px;
    color: rgba(0, 0, 0, 0.2);
}

/* Category Name */
.ans-mart-v-category-name {
    font-size: 17px;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
    line-height: 1.3;
}

/* Category Count */
.ans-mart-v-category-count {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* Navigation Arrows - PC Only */
.ans-mart-v-category-prev,
.ans-mart-v-category-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ans-mart-v-category-prev {
    left: -24px;
}

.ans-mart-v-category-next {
    right: -24px;
}

.ans-mart-v-category-prev:hover,
.ans-mart-v-category-next:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    transform: translateY(-50%) scale(1.1);
}

.ans-mart-v-category-prev i,
.ans-mart-v-category-next i {
    color: #1F2937;
    font-size: 18px;
}

/* ==========================================
   MOBILE RESPONSIVE - FIXED
   ========================================== */

@media (max-width: 768px) {
    .ans-mart-v-category-section {
        padding: 40px 0;
    }
    
    .ans-mart-v-container {
        padding: 0 20px;
    }
    
    /* Header - Mobile: Stack vertically */
    .ans-mart-v-section-header {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 24px;
        gap: 0;
    }
    
    /* Content wrapper - full width */
    .ans-mart-v-section-content {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .ans-mart-v-section-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .ans-mart-v-section-desc {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* See all - appears AFTER description, aligned right */
    .ans-mart-v-see-all {
        font-size: 14px;
        align-self: flex-end;
        margin-top: 0;
    }
    
    /* Slider Wrapper */
    .ans-mart-v-category-slider-wrapper {
        margin-top: 20px;
    }
    
    /* Grid - 2 columns on mobile */
    .ans-mart-v-category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0;
    }
    
    /* No horizontal scroll on mobile */
    .ans-mart-v-category-slider {
        overflow-x: visible;
        overflow-y: visible;
        margin: 0;
    }
    
    /* Hide arrows on mobile */
    .ans-mart-v-category-prev,
    .ans-mart-v-category-next {
        display: none;
    }
    
    /* Category Card - Mobile */
    .ans-mart-v-category-card {
        width: 100%;
        min-height: 200px;
        padding: 24px 16px;
        border-radius: 20px;
    }
    
    /* Circular image background on mobile */
    .ans-mart-v-category-image {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
    }
    
    .ans-mart-v-category-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .ans-mart-v-category-name {
        font-size: 15px;
        font-weight: 600;
    }
    
    .ans-mart-v-category-count {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ans-mart-v-section-title {
        font-size: 20px;
    }
    
    .ans-mart-v-section-desc {
        font-size: 13px;
    }
    
    .ans-mart-v-category-grid {
        gap: 12px;
    }
    
    .ans-mart-v-category-card {
        min-height: 180px;
        padding: 20px 12px;
    }
    
    .ans-mart-v-category-image {
        width: 80px;
        height: 80px;
    }
    
    .ans-mart-v-category-name {
        font-size: 14px;
    }
    
    .ans-mart-v-category-count {
        font-size: 12px;
    }
}

/* ==========================================
   PROMO SECTION - PC & MOBILE
   ========================================== */

.ans-mart-v-promo-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #c8b6dd 0%, #f3eff7 100%);
    position: relative;
}

.ans-mart-v-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.ans-mart-v-promo-section .ans-mart-v-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
}

.ans-mart-v-promo-section .ans-mart-v-section-content {
    flex: 1;
}

.ans-mart-v-promo-section .ans-mart-v-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.ans-mart-v-promo-section .ans-mart-v-section-desc {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

.ans-mart-v-promo-section .ans-mart-v-see-all {
    font-size: 16px;
    font-weight: 600;
    color: #8359A9;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 6px;
}

.ans-mart-v-promo-section .ans-mart-v-see-all:hover {
    color: #714C92;
}

/* Slider */
.ans-mart-v-promo-slider-wrapper {
    position: relative;
    margin-top: 32px;
}

.ans-mart-v-promo-slider {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.ans-mart-v-promo-slider::-webkit-scrollbar {
    display: none;
}

.ans-mart-v-promo-grid {
    display: flex;
    gap: 24px;
    padding: 4px;
}

/* DESKTOP: Promo Card with FLEXBOX (Horizontal) */
.ans-mart-v-promo-card {
    flex: 0 0 auto;
    width: 400px;
    min-height: 200px;
    padding: 32px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.ans-mart-v-promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* DESKTOP: Content (Title + Button vertically stacked on LEFT) */
.ans-mart-v-promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.ans-mart-v-promo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.3;
    margin: 0;
}

.ans-mart-v-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #8359A9;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(131, 89, 169, 0.3);
}

.ans-mart-v-promo-btn:hover {
    background: #714C92;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(131, 89, 169, 0.4);
}

/* DESKTOP: Image on RIGHT */
.ans-mart-v-promo-image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ans-mart-v-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Navigation Arrows */
.ans-mart-v-promo-prev,
.ans-mart-v-promo-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ans-mart-v-promo-prev {
    left: -24px;
}

.ans-mart-v-promo-next {
    right: -24px;
}

.ans-mart-v-promo-prev:hover,
.ans-mart-v-promo-next:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    transform: translateY(-50%) scale(1.1);
}

.ans-mart-v-promo-prev i,
.ans-mart-v-promo-next i {
    color: #1F2937;
    font-size: 18px;
}

/* ==========================================
   MOBILE: Title → Image → Button (Vertical)
   ========================================== */

@media (max-width: 768px) {
    .ans-mart-v-promo-section {
        padding: 40px 0;
    }
    
    .ans-mart-v-container {
        padding: 0 20px;
    }
    
    .ans-mart-v-promo-section .ans-mart-v-section-header {
        flex-direction: column;
        margin-bottom: 24px;
        gap: 0;
    }
    
    .ans-mart-v-promo-section .ans-mart-v-section-content {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .ans-mart-v-promo-section .ans-mart-v-section-title {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .ans-mart-v-promo-section .ans-mart-v-section-desc {
        font-size: 14px;
    }
    
    .ans-mart-v-promo-section .ans-mart-v-see-all {
        font-size: 14px;
        align-self: flex-end;
    }
    
    .ans-mart-v-promo-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ans-mart-v-promo-slider {
        overflow: visible;
    }
    
    .ans-mart-v-promo-prev,
    .ans-mart-v-promo-next {
        display: none;
    }
    
    /* MOBILE: Change card to vertical column */
    .ans-mart-v-promo-card {
        width: 100%;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }
    
    /* MOBILE: Content spans full width, centered */
    .ans-mart-v-promo-content {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 0;
    }
    
    .ans-mart-v-promo-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    /* MOBILE: Image full width */
    .ans-mart-v-promo-image {
        width: 100%;
        height: 120px;
        order: -1; /* Image comes BEFORE button */
    }
    
    /* MOBILE: Button full width, centered */
    .ans-mart-v-promo-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ans-mart-v-promo-card {
        padding: 20px;
        gap: 16px;
    }
    
    .ans-mart-v-promo-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .ans-mart-v-promo-btn {
        padding: 11px 22px;
        font-size: 13px;
        max-width: 180px;
    }
    
    .ans-mart-v-promo-image {
        height: 100px;
    }
}

/* ==========================================
   PRODUCTS SECTION - POPULAR PRODUCTS
   ========================================== */

.ans-mart-v-products-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
    position: relative;
}

/* Section Header - FIXED ALIGNMENT */
.ans-mart-v-products-section .ans-mart-v-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 30px;
}

.ans-mart-v-products-section .ans-mart-v-section-content {
    flex: 1;
}

.ans-mart-v-products-section .ans-mart-v-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.ans-mart-v-products-section .ans-mart-v-section-desc {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* Product Filters - RIGHT SIDE */
.ans-mart-v-product-filters {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
    margin-top: 6px;
}

.ans-mart-v-filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    color: #6B7280;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ans-mart-v-filter-btn:hover {
    border-color: #8359A9;
    color: #8359A9;
}

.ans-mart-v-filter-btn.active {
    background: #8359A9;
    border-color: #8359A9;
    color: #FFFFFF;
}

/* Products Grid - PC (5 columns) */
.ans-mart-v-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 32px;
}

/* Product Card */
.ans-mart-v-product-card {
    background: #FFFFFF;
    border: 2px solid #F3F4F6;
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.ans-mart-v-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #E5E7EB;
}

/* Product Badges */
.ans-mart-v-product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.ans-mart-v-product-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: capitalize;
}

.ans-mart-v-badge-discount {
    background: #10B981;
}

.ans-mart-v-badge-sale {
    background: #10B981;
}

.ans-mart-v-badge-new {
    background: #10B981;
}

.ans-mart-v-badge-hot {
    background: #FF6B9D;
}

/* Product Image */
.ans-mart-v-product-image {
    display: block;
    width: 100%;
    height: 200px;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 12px;
    background: #F9FAFB;
}

.ans-mart-v-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ans-mart-v-product-card:hover .ans-mart-v-product-image img {
    transform: scale(1.05);
}

/* Product Info */
.ans-mart-v-product-info {
    text-align: left;
}

.ans-mart-v-product-category {
    display: inline-block;
    font-size: 13px;
    color: #9CA3AF;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.ans-mart-v-product-title {
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #1F2937;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ans-mart-v-product-title a {
    color: inherit;
    text-decoration: none;
}

.ans-mart-v-product-title a:hover {
    color: #8359A9;
}

/* Rating */
.ans-mart-v-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.ans-mart-v-stars {
    display: flex;
    gap: 2px;
}

.ans-mart-v-stars i {
    font-size: 14px;
    color: #FFA500;
}

.ans-mart-v-rating-count {
    font-size: 13px;
    color: #9CA3AF;
}

/* Price */
.ans-mart-v-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.ans-mart-v-price-sale,
.ans-mart-v-price-current {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
}

.ans-mart-v-price-regular {
    font-size: 16px;
    color: #9CA3AF;
    text-decoration: line-through;
}

/* Add to Cart Button */
.ans-mart-v-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: #8359a9;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ans-mart-v-add-to-cart:hover {
    background: #059669;
    transform: translateY(-2px);
}

.ans-mart-v-add-to-cart i {
    font-size: 14px;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .ans-mart-v-products-section {
        padding: 40px 0;
    }
    
    /* Header - MOBILE: Stack vertically */
    .ans-mart-v-products-section .ans-mart-v-section-header {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 24px;
        gap: 0;
    }
    
    .ans-mart-v-products-section .ans-mart-v-section-content {
        width: 100%;
        margin-bottom: 16px;
    }
    
    .ans-mart-v-products-section .ans-mart-v-section-title {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .ans-mart-v-products-section .ans-mart-v-section-desc {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    /* Filters BELOW description */
    .ans-mart-v-product-filters {
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 4px;
        margin-top: 0;
        justify-content: flex-start;
    }
    
    .ans-mart-v-product-filters::-webkit-scrollbar {
        display: none;
    }
    
    .ans-mart-v-filter-btn {
        flex-shrink: 0;
        padding: 6px 14px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .ans-mart-v-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 24px;
    }
    
    .ans-mart-v-product-card {
        padding: 10px;
        border-radius: 12px;
    }
    
    .ans-mart-v-product-image {
        height: 140px;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    .ans-mart-v-product-badge {
        padding: 3px 8px;
        font-size: 11px;
        border-radius: 4px;
    }
    
    .ans-mart-v-product-category {
        font-size: 11px;
    }
    
    .ans-mart-v-product-title {
        font-size: 13px;
        min-height: 36px;
        margin-bottom: 8px;
    }
    
    .ans-mart-v-stars i {
        font-size: 11px;
    }
    
    .ans-mart-v-rating-count {
        font-size: 11px;
    }
    
    .ans-mart-v-product-rating {
        margin-bottom: 8px;
    }
    
    .ans-mart-v-price-sale,
    .ans-mart-v-price-current {
        font-size: 16px;
    }
    
    .ans-mart-v-price-regular {
        font-size: 13px;
    }
    
    .ans-mart-v-product-price {
        margin-bottom: 8px;
    }
    
    .ans-mart-v-add-to-cart {
        padding: 7px 12px !important;
        font-size: 12px !important;
        border-radius: 6px !important;
        gap: 4px !important;
    }
    
    .ans-mart-v-add-to-cart i {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .ans-mart-v-product-card {
        padding: 8px;
    }
    
    .ans-mart-v-product-image {
        height: 120px;
    }
    
    .ans-mart-v-product-title {
        font-size: 12px;
        min-height: 32px;
    }
    
    .ans-mart-v-price-sale,
    .ans-mart-v-price-current {
        font-size: 14px;
    }
    
    .ans-mart-v-add-to-cart {
        padding: 6px 10px !important;
        font-size: 11px !important;
    }
}


/* ==========================================
   WEBSITE FEATURES SECTION
   ========================================== */

.ans-mart-v-website-features-section {
    padding: 40px 0;
    background: #F9FAFB;
    position: relative;
}

/* Features Grid - PC (5 columns) */
.ans-mart-v-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 32px;
}

/* Feature Card */
.ans-mart-v-feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ans-mart-v-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #D1D5DB;
}

/* Feature Icon */
.ans-mart-v-feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border-radius: 12px;
}

.ans-mart-v-feature-icon i {
    font-size: 32px;
}

.ans-mart-v-feature-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Feature Content */
.ans-mart-v-feature-content {
    flex: 1;
}

.ans-mart-v-feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.ans-mart-v-feature-subtitle {
    font-size: 13px;
    color: #9CA3AF;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================
   RESPONSIVE - TABLETS
   ========================================== */

@media (max-width: 1200px) {
    .ans-mart-v-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .ans-mart-v-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (STACKED)
   ========================================== */

@media (max-width: 768px) {
    .ans-mart-v-website-features-section {
        padding: 30px 0;
    }
    
    /* Stacked Layout - One below another */
    .ans-mart-v-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }
    
    .ans-mart-v-feature-card {
        padding: 16px;
        gap: 12px;
    }
    
    .ans-mart-v-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .ans-mart-v-feature-icon i {
        font-size: 26px;
    }
    
    .ans-mart-v-feature-icon img {
        width: 36px;
        height: 36px;
    }
    
    .ans-mart-v-feature-title {
        font-size: 14px;
    }
    
    .ans-mart-v-feature-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ans-mart-v-feature-card {
        padding: 14px;
        gap: 10px;
    }
    
    .ans-mart-v-feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .ans-mart-v-feature-icon i {
        font-size: 24px;
    }
    
    .ans-mart-v-feature-title {
        font-size: 13px;
    }
    
    .ans-mart-v-feature-subtitle {
        font-size: 11px;
    }
}

/* ==========================================
   SINGLE CATEGORY PRODUCTS SECTION
   ========================================== */

.ans-mart-v-category-products-section {
    padding: 60px 0;
    position: relative;
}

/* Section Header - FIXED ALIGNMENT */
.ans-mart-v-category-products-section .ans-mart-v-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 30px;
}

.ans-mart-v-category-products-section .ans-mart-v-section-content {
    flex: 1;
}

.ans-mart-v-category-products-section .ans-mart-v-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #72166e;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.ans-mart-v-section-subtitle {
    color: #72166e;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

/* View All Button - RIGHT SIDE */
.ans-mart-v-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #FFFFFF;
    border: 2px solid #8359A9;
    color: #8359A9;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 6px;
}

.ans-mart-v-view-all-btn:hover {
    background: #8359A9;
    color: #FFFFFF;
    transform: translateX(5px);
}

.ans-mart-v-view-all-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ans-mart-v-view-all-btn:hover i {
    transform: translateX(3px);
}

/* Main Grid Container */
.ans-mart-v-category-products-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 24px;
}

/* LEFT PROMO CARD */
.ans-mart-v-category-promo-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.ans-mart-v-category-promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.ans-mart-v-category-promo-card .ans-mart-v-promo-content {
    position: relative;
    z-index: 2;
}

.ans-mart-v-promo-badge {
    display: inline-block;
    background: #FFFFFF;
    color: #1F2937;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ans-mart-v-promo-discount {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.ans-mart-v-promo-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #8359A9;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 89, 169, 0.4);
}

.ans-mart-v-promo-shop-btn:hover {
    background: #714C92;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 89, 169, 0.5);
}

/* Products Wrapper */
.ans-mart-v-category-products-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* BUTTON COLORS - ADD TO CART & SELECT OPTIONS */
.ans-mart-v-category-products-section .ans-mart-v-add-to-cart {
    background: #902c8b;
}

.ans-mart-v-category-products-section .ans-mart-v-add-to-cart:hover {
    background: #72166e;
    color: #FFFFFF;
}

/* VIEW CART BUTTON */
.ans-mart-v-category-products-section .ans-mart-v-add-to-cart.view-cart {
    background: #72166e !important;
}

.ans-mart-v-category-products-section .ans-mart-v-add-to-cart.view-cart:hover {
    background: #5a1158 !important;
    color: #FFFFFF !important;
}

/* ==========================================
   RESPONSIVE - TABLETS
   ========================================== */

@media (max-width: 1200px) {
    .ans-mart-v-category-products-grid {
        grid-template-columns: 280px 1fr;
        gap: 20px;
    }
    
    .ans-mart-v-category-products-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .ans-mart-v-category-products-grid {
        grid-template-columns: 1fr;
    }
    
    .ans-mart-v-category-promo-card {
        min-height: 300px;
        display: none;
    }
    
    .ans-mart-v-category-products-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (2 COLUMNS)
   ========================================== */

@media (max-width: 768px) {
    .ans-mart-v-category-products-section {
        padding: 40px 0;
    }
    
    /* Header - MOBILE: Stack vertically */
    .ans-mart-v-category-products-section .ans-mart-v-section-header {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 24px;
        gap: 0;
    }
    
    .ans-mart-v-category-products-section .ans-mart-v-section-content {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .ans-mart-v-category-products-section .ans-mart-v-section-title {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .ans-mart-v-section-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .ans-mart-v-view-all-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
        align-self: stretch;
        margin-top: 0;
    }
    
    /* Hide Promo Card on Mobile */
    .ans-mart-v-category-promo-card {
        display: none;
    }
    
    /* 2 Columns on Mobile */
    .ans-mart-v-category-products-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .ans-mart-v-category-products-section .ans-mart-v-section-title {
        font-size: 20px;
    }
    
    .ans-mart-v-section-subtitle {
        font-size: 13px;
    }
    
    .ans-mart-v-category-products-wrapper {
        gap: 12px;
    }
}

/* ==========================================
   SHOCKING DEALS SECTION
   ========================================== */

.ans-mart-v-shocking-deals-section {
    padding: 60px 0;
    position: relative;
}

/* Banner Header */
.ans-mart-v-shocking-deals-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px 40px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ans-mart-v-shocking-deals-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ans-mart-v-shocking-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #FFFFFF;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.ans-mart-v-shocking-title {
    font-size: 32px;
    font-weight: 800;
    color: #1F2937;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ans-mart-v-shocking-subtitle {
    font-size: 15px;
    color: #6B7280;
    margin: 0;
}

/* Countdown Timer */
.ans-mart-v-shocking-countdown {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ans-mart-v-countdown-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6B7280;
}

.ans-mart-v-countdown-label i {
    font-size: 20px;
    color: #F59E0B;
}

.ans-mart-v-countdown-subtext {
    font-weight: 600;
    color: #1F2937;
}

.ans-mart-v-countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ans-mart-v-countdown-item {
    background: #F59E0B;
    border-radius: 8px;
    padding: 10px 12px;
    min-width: 60px;
    text-align: center;
}

.ans-mart-v-countdown-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.ans-mart-v-countdown-unit {
    display: block;
    font-size: 11px;
    color: #FFFFFF;
    margin-top: 4px;
    opacity: 0.9;
}

.ans-mart-v-countdown-separator {
    font-size: 20px;
    font-weight: 700;
    color: #F59E0B;
}

/* Products Grid */
.ans-mart-v-shocking-deals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Deal Card */
.ans-mart-v-shocking-deal-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ans-mart-v-shocking-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Discount Badge */
.ans-mart-v-deal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #F59E0B;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 2;
}

/* Product Image */
.ans-mart-v-deal-image {
    position: relative;
    padding: 20px;
    text-align: center;
    background: #F9FAFB;
    overflow: hidden;
}

.ans-mart-v-deal-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ans-mart-v-shocking-deal-card:hover .ans-mart-v-deal-image img {
    transform: scale(1.05);
}

/* Quick Actions */
.ans-mart-v-deal-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.ans-mart-v-shocking-deal-card:hover .ans-mart-v-deal-actions {
    opacity: 1;
    transform: translateX(0);
}

.ans-mart-v-action-btn {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ans-mart-v-action-btn:hover {
    background: #10B981;
    color: #FFFFFF;
}

/* Product Countdown */
.ans-mart-v-deal-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 12px;
    background: #1F2937;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
}

.ans-mart-v-deal-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ans-mart-v-deal-countdown-item span {
    display: block;
    line-height: 1;
}

.ans-mart-v-deal-countdown-item small {
    font-size: 10px;
    opacity: 0.7;
    margin-top: 2px;
}

/* Product Info */
.ans-mart-v-deal-info {
    padding: 16px;
}

.ans-mart-v-deal-brand {
    display: inline-block;
    color: #6B7280;
    font-size: 13px;
    margin-bottom: 8px;
}

.ans-mart-v-deal-title {
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 8px 0;
    line-height: 1.4;
    height: 42px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ans-mart-v-deal-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ans-mart-v-deal-title a:hover {
    color: #10B981;
}

/* Rating */
.ans-mart-v-deal-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.ans-mart-v-rating-count {
    font-size: 13px;
    color: #6B7280;
}

/* Price */
.ans-mart-v-deal-price {
    font-size: 20px;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 12px;
}

.ans-mart-v-deal-price del {
    font-size: 16px;
    color: #9CA3AF;
    margin-left: 8px;
}

/* Stock Progress */
.ans-mart-v-deal-stock {
    margin-bottom: 12px;
}

.ans-mart-v-stock-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 6px;
}

.ans-mart-v-stock-info strong {
    color: #1F2937;
}

.ans-mart-v-stock-progress {
    height: 6px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}

.ans-mart-v-stock-bar {
    height: 100%;
    background: linear-gradient(90deg, #F59E0B 0%, #EF4444 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Shipping Info */
.ans-mart-v-deal-shipping {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 12px;
}

.ans-mart-v-deal-shipping i {
    color: #10B981;
}

/* Add to Cart */
.ans-mart-v-deal-cart {
    padding: 0 16px 16px;
}

.ans-mart-v-deal-cart .button {
    width: 100%;
    background: #1F2937;
    color: #FFFFFF;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ans-mart-v-deal-cart .button:hover {
    background: #10B981;
}

/* ==========================================
   RESPONSIVE - TABLETS
   ========================================== */

@media (max-width: 1200px) {
    .ans-mart-v-shocking-deals-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .ans-mart-v-shocking-deals-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .ans-mart-v-shocking-deals-left {
        flex-direction: column;
    }
    
    .ans-mart-v-shocking-deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   RESPONSIVE - MOBILE (2 COLUMNS)
   ========================================== */

@media (max-width: 768px) {
    .ans-mart-v-shocking-deals-section {
        padding: 40px 0;
    }
    
    .ans-mart-v-shocking-deals-banner {
        padding: 20px;
    }
    
    .ans-mart-v-shocking-title {
        font-size: 24px;
    }
    
    .ans-mart-v-shocking-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .ans-mart-v-countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .ans-mart-v-countdown-item {
        min-width: 50px;
        padding: 8px 10px;
    }
    
    .ans-mart-v-countdown-value {
        font-size: 16px;
    }
    
    /* 2 Columns on Mobile */
    .ans-mart-v-shocking-deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .ans-mart-v-deal-image img {
        height: 150px;
    }
    
    .ans-mart-v-deal-title {
        font-size: 14px;
    }
    
    .ans-mart-v-deal-countdown {
        font-size: 12px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .ans-mart-v-shocking-deals-grid {
        gap: 12px;
    }
}

/* ==========================================
   BEFORE & AFTER MAGIC SECTION
   ========================================== */

.ans-mart-v-before-after-section {
    padding: 60px 0;
    position: relative;
}

/* Section Header */
.ans-mart-v-before-after-section .ans-mart-v-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.ans-mart-v-before-after-section .ans-mart-v-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #1F2937;
    margin: 0 0 12px 0;
}

.ans-mart-v-before-after-section .ans-mart-v-section-desc {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Slider Wrapper */
.ans-mart-v-before-after-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.ans-mart-v-before-after-slider {
    overflow: hidden;
    border-radius: 20px;
}

.ans-mart-v-ba-slide {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Before & After Card */
.ans-mart-v-ba-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ans-mart-v-ba-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Comparison Container */
.ans-mart-v-ba-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    background: #F9FAFB;
}

/* Image Wrapper */
.ans-mart-v-ba-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.ans-mart-v-ba-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ans-mart-v-ba-card:hover .ans-mart-v-ba-image {
    transform: scale(1.05);
}

/* Icon Fallback */
.ans-mart-v-ba-icon-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #FFFFFF;
    font-size: 64px;
}

/* Labels */
.ans-mart-v-ba-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(239, 68, 68, 0.95);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.ans-mart-v-ba-label-after {
    background: rgba(16, 185, 129, 0.95);
}

/* Divider Arrow */
.ans-mart-v-ba-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8359A9;
    width: 60px;
    position: relative;
}

.ans-mart-v-ba-arrow {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8359A9;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(131, 89, 169, 0.3);
    animation: arrow-pulse 2s infinite;
}

@keyframes arrow-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Transformation Info */
.ans-mart-v-ba-info {
    padding: 24px;
    text-align: center;
}

.ans-mart-v-ba-title {
    font-size: 20px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ans-mart-v-ba-title i {
    color: #8359A9;
    font-size: 18px;
}

.ans-mart-v-ba-desc {
    font-size: 15px;
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

/* Navigation Arrows */
.ans-mart-v-ba-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #8359A9;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 89, 169, 0.3);
}

.ans-mart-v-ba-nav:hover {
    background: #714C92;
    transform: translateY(-50%) scale(1.1);
}

.ans-mart-v-ba-prev {
    left: -25px;
}

.ans-mart-v-ba-next {
    right: -25px;
}

.ans-mart-v-ba-nav i {
    font-size: 18px;
}

/* Slider Dots */
.ans-mart-v-ba-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.ans-mart-v-ba-dot {
    width: 12px;
    height: 12px;
    background: #D1D5DB;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ans-mart-v-ba-dot.active {
    background: #8359A9;
    width: 32px;
    border-radius: 6px;
}

.ans-mart-v-ba-dot:hover {
    background: #9CA3AF;
}

/* ==========================================
   RESPONSIVE - TABLETS
   ========================================== */

@media (max-width: 992px) {
    .ans-mart-v-ba-divider {
        width: 50px;
    }
    
    .ans-mart-v-ba-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .ans-mart-v-ba-nav {
        width: 45px;
        height: 45px;
    }
    
    .ans-mart-v-ba-prev {
        left: 10px;
    }
    
    .ans-mart-v-ba-next {
        right: 10px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */

@media (max-width: 768px) {
    .ans-mart-v-before-after-section {
        padding: 40px 0;
    }
    
    .ans-mart-v-before-after-section .ans-mart-v-section-title {
        font-size: 28px;
    }
    
    .ans-mart-v-before-after-section .ans-mart-v-section-desc {
        font-size: 14px;
    }
    
    .ans-mart-v-ba-comparison {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .ans-mart-v-ba-divider {
        width: 100%;
        height: 50px;
        transform: rotate(90deg);
    }
    
    .ans-mart-v-ba-label {
        top: 12px;
        left: 12px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .ans-mart-v-ba-info {
        padding: 20px;
    }
    
    .ans-mart-v-ba-title {
        font-size: 18px;
    }
    
    .ans-mart-v-ba-desc {
        font-size: 14px;
    }
    
    .ans-mart-v-ba-nav {
        width: 40px;
        height: 40px;
    }
    
    .ans-mart-v-ba-prev {
        left: 5px;
    }
    
    .ans-mart-v-ba-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .ans-mart-v-ba-slide {
        padding: 0 10px;
    }
}