/* --- 1. SLIDER CORE (THE WINDOW) --- */
.hero-slider-wrapper {
    display: flex !important;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-slider-wrapper::-webkit-scrollbar { 
    display: none; 
}

/* --- 2. THE SLIDE --- */
.hero-slider-wrapper .hero-section {
    flex: 0 0 100vw !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    scroll-snap-align: start !important;
    padding: 0 !important; /* Removes top/bottom gap */
    text-align: center;
    box-sizing: border-box !important;
    background: #fff;
}

/* --- 3. THE VISUAL CONTAINER --- */
.hero-visual { 
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
    /* Adjusted to match 800x500 aspect ratio on mobile screens */
    height: 240px;  
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.product-hero-img { 
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain; 
    mix-blend-mode: multiply; 
    position: relative; 
    z-index: 2;
}

.image-glow { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    width: 150px; 
    height: 150px; 
    background: radial-gradient(circle, rgba(0,85,255,0.06) 0%, transparent 70%);
}

.badge-premium { 
    display: inline-block; 
    padding: 5px 12px; 
    background: rgba(0, 85, 255, 0.85); 
    color: #ffffff !important; 
    border-radius: 4px; 
    font-size: 9px; 
    font-weight: 800; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    z-index: 10;
}

/* --- 4. PAGINATION DOTS --- */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0; 
    background: #fff;
}

.dot {
    width: 6px;
    height: 6px;
    background: #e0e0e0;
    border-radius: 50%;
    transition: 0.3s;
}

.dot.active {
    background: var(--vaani-blue);
    width: 15px;
    border-radius: 3px;
}

/* --- 5. STATIC CONTENT BELOW --- */
.main-title { 
    font-size: 24px; 
    font-weight: 900; 
    line-height: 1.1; 
    margin: 15px 0 8px; 
    color: var(--deep-onyx);
    padding: 0 15px;
}

.hero-subtitle { 
    color: #666; 
    font-size: 14px; 
    margin-bottom: 20px; 
    padding: 0 25px;
    line-height: 1.4;
}

.hero-actions { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    padding: 0 25px;
    margin-bottom: 25px;
}

.btn-dark {
    background: var(--deep-onyx); 
    color: #fff; 
    padding: 15px; 
    border-radius: 10px; 
    font-weight: 700; 
    text-decoration: none; 
    font-size: 15px;
    text-align: center;
}

.btn-outline { 
    border: 1px solid #ddd; 
    color: #333; 
    padding: 15px; 
    border-radius: 10px; 
    font-weight: 700; 
    text-decoration: none; 
    font-size: 15px;
    text-align: center;
}

/* --- 6. STATIC SECTIONS --- */
.trust-strip { 
    background: #fcfcfc; 
    border-top: 1px solid var(--soft-border); 
    border-bottom: 1px solid var(--soft-border);
    display: flex; 
    justify-content: space-around; 
    padding: 12px 5px; 
    font-size: 9px; 
    color: #999;
}

.features-section { padding: 30px 20px; }

.feature-card { 
    background: #fff; 
    border: 1px solid var(--soft-border); 
    padding: 20px; 
    border-radius: 15px; 
    margin-bottom: 15px;
    text-align: center;
}

.icon-circle {
    font-size: 24px;
    margin-bottom: 10px;
}

.table-section { background: #f9f9f9; padding: 30px 20px; }

.premium-table-container { 
    background: #fff; 
    border-radius: 15px; 
    border: 1px solid var(--soft-border); 
    overflow: hidden; 
}

.vaani-table {
    width: 100%;
    border-collapse: collapse;
}

.vaani-table th {
    background: var(--deep-onyx);
    color: #fff;
    text-align: left;
    padding: 12px 15px;
    font-size: 11px;
    text-transform: uppercase;
}

.vaani-table td { 
    padding: 12px 15px; 
    font-size: 14px; 
    border-bottom: 1px solid var(--soft-border);
}

.price-cell {
    font-weight: 900;
    color: var(--vaani-blue);
}

.info-article { 
    padding: 30px 20px; 
}

.article-title {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 800;
}



/* --- WhatsApp Outline Button --- */
.btn-whatsapp-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent; /* Remove background fill */
    border: 2px solid #25D366; /* Green border only */
    color: #25D366; /* Text matches the border */
    padding: 4px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-whatsapp-outline img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    /* No filter here - shows the natural green/white icon */
}

/* Touch feedback for mobile */
.btn-whatsapp-outline:active {
    background: rgba(37, 211, 102, 0.05); /* Very light green tint on tap */
    transform: scale(0.98);
}


/* --- Social Logos Strip --- */
.social-strip {
    padding: 30px 20px 100px; /* Extra bottom padding to clear the bottom-nav */
    text-align: center;
    background: #ffffff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}

.social-icon img {
    width: 50px;
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-icon:active img {
    opacity: 1;
    transform: scale(0.9);
}

.social-tagline {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #aaa;
    letter-spacing: 1px;
}