/* ================= HERO ================= */

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 40px 20px 10px;
    width: 100%;
}

.hero-image {
    max-width: 100%;
    width: 1100px;
    height: 700px;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

.btn.shop-now {
    margin: 0;
    padding: 13px 38px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(185,200,162,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.shop-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(185,200,162,0.5);
}

/* ================= BEST SELLERS ================= */

.best-sellers {
    padding: 50px 20px 90px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(248,219,223,0.5));
}

.best-sellers h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
    color: #E88CA7;
    font-family: 'Sour Gummy', sans-serif;
    letter-spacing: -0.5px;
}

.products {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product {
    width: 280px;
    background: #fff;
    border-radius: 14px;
    padding: 14px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.1);
}

.product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.product-title {
    margin-top: 12px;
    font-weight: 600;
    color: #2a2a2a;
    font-size: 14px;
}

/* ================= SLIDESHOW ================= */

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    border-radius: 16px;
}

.slide {
    display: none;
    width: 100%;
}

.slide img {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: all 0.25s ease;
    z-index: 10;
    user-select: none;
}

.prev { left: 14px; }
.next { right: 14px; }

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.65);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-dots {
    text-align: center;
    padding: 18px 0;
}

.dot {
    cursor: pointer;
    height: 9px;
    width: 9px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.25s ease;
}

.dot.active {
    background-color: #E88CA7;
    transform: scale(1.3);
}

.dot:hover {
    background-color: #f0acbf;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .hero-image {
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

    .products {
        gap: 14px;
    }

    .product {
        width: calc(50% - 14px);
    }
}

@media (max-width: 768px) {
    .hero-center {
        gap: 14px;
        padding: 0;
    }

    .slideshow-container {
        border-radius: 0;
    }

    .slide img {
        border-radius: 0;
        height: 260px;
        object-fit: cover;
    }

    .prev, .next {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

    .slideshow-dots {
        padding: 14px 0;
    }

    .btn.shop-now {
        padding: 11px 30px;
        font-size: 14px;
    }

    .best-sellers {
        padding: 30px 16px 50px;
    }

    .best-sellers h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .products {
        gap: 10px;
    }

    .product {
        width: calc(50% - 5px);
        padding: 10px;
        border-radius: 12px;
    }

    .product img {
        height: 130px;
    }

    .product-title {
        font-size: 12px;
        margin-top: 8px;
    }
}

@media (max-width: 400px) {
    .product {
        width: 100%;
    }
}