/* ========================================
   HERO SLIDER 2 STYLES
   ======================================== */

/* Hero Slider 2 Container */
.hero-slider-2 {
    position: relative;
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(50px);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hero-slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 80px;
    height: 100%;
    gap: 0px;
}

.hero-product-image {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-product-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    transform: scale(0.85);
    transform-origin: center center;
}

@keyframes heroZoomIn {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-slide.active .hero-product-image img {
    animation: heroZoomIn 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-product-content {
    flex: 0 0 50%;
    color: #fff;
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.6s ease 0.3s;
}

.hero-slide.active .hero-product-content {
    transform: translateX(0);
    opacity: 1;
}

.hero-product-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-size: 47px;
    color: #ffffff;
    font-weight: 900;
    text-align: center;
    letter-spacing: 4px;
}

.hero-product-content p {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 34px;
    text-align: center;
}

.hero-product-content .cta-icon {
    margin: 0 auto;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #800000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: "Host Grotesk", sans-serif;
}

.hero-cta-btn:hover {
    background: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.4);
}

.hero-cta-btn i {
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(5px);
}

.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-nav-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #800000;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-nav-btn.active,
.hero-nav-btn:hover {
    background: #800000;
    transform: scale(1.2);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 18px;
}

.hero-arrow:hover {
    background: #800000;
    border-color: #800000;
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
    left: 20px;
}

.hero-arrow-next {
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-slider-2 {
        height: 80%;
    }

    .hero-slide-inner {
        padding: 0 60px;
    }

    .hero-product-image {
        flex: 0 0 42%;
    }

    .hero-product-content {
        flex: 0 0 48%;
    }

    .hero-product-content h2 {
        font-size: 32px;
    }

    .hero-product-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-slider-2 {
        height: auto;
        min-height: 90%;
    }

    .hero-slide-inner {
        flex-direction: column;
        justify-content: center;
        padding: 10px;
        gap: 0px;
    }

    .hero-product-image,
    .hero-product-content {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
    }

    .hero-product-image img {
        margin-top: 10%;
        height: 300px;
    }

    .slider-img-bottom img {
        margin-top: 0%;
        height: 300px;
    }


    .slider-content-bottom {
        margin-top: 10%;
    }

    .hero-product-content h2 {
        font-size: 26px !important;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 31px;
        font-size: 60px;
        color: #ffffff;
        font-weight: 900;
        letter-spacing: 1px;
    }

    .hero-product-content p {
        font-size: 15px !important;
        margin-bottom: 20px;
        line-height: 20px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .hero-arrow-prev {
        left: 10px;
    }

    .hero-arrow-next {
        right: 10px;
    }

    .hero-slider-nav {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-product-content h2 {
        font-size: 22px;
    }

    .hero-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-product-content .cta-icon {
        display: none;
    }
}

@media (min-width:1930px) and (max-width: 2090px) {
    .hero-product-image img {
        max-width: 100%;
        max-height: 400px;
        object-fit: contain;
        transform: scale(0.85);
        transform-origin: center center;
    }

    .hero-slider-2 {
        position: relative;
        width: 100%;
        height: 90%;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        overflow: hidden;
    }
}


@media(min-width:1200px)and(max-width:1909px) {
    .hero-product-image img {
        max-height: 300px;
    }

    .hero-product-content h2 {
        font-size: 34px;
    }

    .hero-product-content p {
        font-size: 20px;
    }
}


@media (orientation: landscape) and (max-height: 700px) {
    .hero-product-content h2 {
        font-size: 36px !important;
    }

    .hero-slider-2 {
        position: relative;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        overflow: hidden;
    }

    .hero-product-image img {
        max-height: 390px;
    }
}