/* ─────────────────────────────────────────────
   Home Page Slider Section (Proportional Pro-Banner Layout)
   ───────────────────────────────────────────── */
.hero-slider-section {
    position: relative;
    padding: 0; /* Full bleed layout */
    overflow: hidden;
    width: 100%;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 42vw; /* Proportional scaling based on screen width */
    max-height: 520px; /* Limit maximum height to keep products in view */
    min-height: 300px; /* Ensure a good height on narrow viewports */
    margin: 0;
    border-radius: 0; /* Remove rounded corners */
    overflow: hidden;
    border: none; /* Remove borders */
    box-shadow: none;
    background-color: #0b0f19;
}

.hero-slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide.active {
    z-index: 2;
}

/* Full-bleed background image covering the slide area */
.hero-slide-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: var(--transition);
}

/* Keep banners 100% bright and clear (no dimming/tinting overlays) */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

/* Position action buttons at the bottom center of the slide */
.hero-slide-info {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 100%;
    max-width: 600px;
    text-align: center;
    pointer-events: auto;
    animation: slideTextIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Rounded pill-shaped buttons to stand out on the banners */
.hero-buttons .btn {
    padding: 0.95rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.98rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-primary {
    background: #eab308; /* Theme gold */
    color: #0f172a !important;
    border: 1px solid #eab308;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
}

.hero-buttons .btn-secondary {
    background: #0f172a; /* Dark theme contrast button */
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-buttons .btn-secondary:hover {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Slide Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-slider-container:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: #eab308;
    color: #0f172a;
    border-color: #eab308;
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.prev-arrow {
    left: 24px;
}

.next-arrow {
    right: 24px;
}

/* Navigation Indicator Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dot:hover {
    opacity: 0.8;
}

.slider-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    opacity: 1;
    background: #eab308; /* Active indicator is gold */
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.4);
}

/* Entrance Animations */
@keyframes slideTextIn {
    from {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hero-slider-container {
        height: 48vw; /* Slightly taller aspect ratio on tablets */
        min-height: 250px;
    }

    .hero-slide-info {
        bottom: 30px;
    }

    .hero-buttons {
        gap: 0.85rem;
    }

    .hero-buttons .btn {
        padding: 0.75rem 1.85rem;
        font-size: 0.88rem;
    }

    .slider-arrow {
        display: none !important; /* Hide arrows on small screens */
    }

    .slider-dots {
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        height: 52vw; /* Proportional mobile aspect ratio */
        min-height: 200px;
    }

    .hero-slide-info {
        bottom: 25px;
    }

    .hero-buttons .btn {
        padding: 0.65rem 1.4rem;
        font-size: 0.82rem;
    }
}
