/* --- Global Homepage Containers --- */
.section-padding {
    padding: 60px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 1. LANDING BANNER --- */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide.active {
    display: flex;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* --- 2. INFINITE PRODUCT SCROLL BAR --- */
.scrolling-bar {
    background: #b33939; /* Deep Spice Red */
    color: white;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: bold;
    text-transform: uppercase;
}

.scroll-track {
    display: inline-block;
    animation: scrollText 25s linear infinite;
}

.scroll-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 1.1rem;
}

@keyframes scrollText {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- 3. WHY CHOOSE PARAG MASALE --- */
.why-choose {
    background-color: #fffaf0;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* --- 4. BEST SELLERS (Horizontal Scroll) --- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.horizontal-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 5px;
    scrollbar-width: none; /* Firefox */
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.product-card-small {
    flex: 0 0 250px;
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* --- 5. ADVERT BANNER --- */
.advert-banner {
    padding: 40px 0;
}

.promo-box {
    background: #333;
    color: #fff;
    padding: 60px;
    text-align: center;
    border-radius: 15px;
    background-image: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('../images/ui/pattern.png');
    background-size: cover;
}

/* --- 6. VERTICAL VIDEO SNIPPETS --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.video-card video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #eee;
}

/* --- 7. TESTIMONIALS --- */
.testimonial-slider {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.t-slide p {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}
