/* ============================================
   HERO SLIDER STYLES
   ============================================ */

.hm-hero-slider {
    position: relative;
    background: var(--bg-secondary);
    overflow: hidden;
}

.hm-slider-track {
    position: relative;
    width: 100%;
}

.hm-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.hm-slide.active {
    display: block;
}

.hm-slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
    min-height: 420px;
}

.hm-slide-content {
    flex: 1;
    max-width: 500px;
}

.hm-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hm-slide-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}

.hm-slide-prices {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 28px;
}

.hm-slide-price-sale {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-body);
}

.hm-slide-price-regular {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.hm-slide-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hm-slide-image img {
    max-width: 350px;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

.hm-slide.active .hm-slide-image img {
    animation: slideImageIn 0.7s ease;
}

@keyframes slideImageIn {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Slider controls */
.hm-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
}

.hm-slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    pointer-events: all;
}

.hm-slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

/* Dots */
.hm-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 24px;
}

.hm-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.hm-slider-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .hm-slide-inner {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 0;
        min-height: 350px;
        gap: 24px;
    }

    .hm-slide-image img {
        max-width: 200px;
        max-height: 200px;
    }

    .hm-slide-prices {
        justify-content: center;
    }

    .hm-slide-price-sale {
        font-size: 2rem;
    }

    .hm-slider-controls {
        display: none;
    }
}
