.hero-wrap {
    width: 100vw;
    background: #121212;
}

.hero-section {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-swiper {
    position: relative;
    width: 100%;
}

.swiper-slide.swiper-slide {
    position: relative;
    display: flex;
    justify-content: space-between;
	align-items: center;

}

.hero-background img {
    object-fit: cover;
    filter: drop-shadow(0 0 15px color-mix(in srgb, var(--glow-color) 80%, transparent));
}

.hero-content {
	width:100%;
    max-width: 80%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 25px;
/*     padding-bottom: 100px; */
	    padding: 40px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 10px;
}

.hero-content p {
    margin: 0;
}

.hero-products {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 20px;
}

.hero-product-card {
    transition: transform 0.3s ease-in-out;
}

.hero-product-card:hover img {
    filter: drop-shadow(0 0 25px color-mix(in srgb, var(--glow-color) 80%, transparent));
}

.hero-product-card img {
    max-width: 80px;
    filter: drop-shadow(0 0 15px color-mix(in srgb, var(--glow-color) 80%, transparent));
}

.hero-product-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 0.9rem;
}

.price {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

.buy-btn {
    display: block;
    margin-top: 5px;
    padding: 5px 10px;
    font-size: 0.9rem;
    color: #fff;
    background: #20adc9;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.buy-btn:hover {
    background: #1a96ad;
}

.swiper-button-prev,
.swiper-button-next {
    display: none !important;
}

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.swiper-pagination-bullet-active.swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    background: #ffffff;
    box-shadow: 0 0 8px #ffffff;
}

@media (max-width: 1024px) {
    .swiper-slide {
        flex-direction: column;
        align-items: center;
    }

    .hero-products {
        flex-direction: column;
    }

    .hero-product-card {
        display: flex;

        justify-content: space-between;
        min-width: 100%;
    }

    .hero-product-info {
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .swiper-slide {
        flex-direction: column;
        align-items: center;
    }

    .hero-products {
        flex-direction: column;
    }

    .hero-product-card {
        display: flex;

        justify-content: space-between;
        min-width: 100%;
    }

    .hero-product-info {
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
    }

    .hero-background img {
        position: absolute;
        width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 10px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-products {
        gap: 20px;
    }

    .hero-product-card {
        max-width: 70px;
    }

    .hero-product-card img {
        max-width: 50px;
    }
}
