/* ---------- Slider ---------- */
.hero-slider .carousel-item {
    height: 550px;
    /* desktop height (1600 x 550 ratio) */
}

/* The <picture> image fills the slide like a background */
.hero-slider .carousel-item picture,
.hero-slider .carousel-item img {
    width: 100%;
    height: 104%;
    object-fit: cover;
    /* behaves like background-size: cover */
    object-position: center;
    display: block;
}

/* ---------- Caption (bottom-left box like the mock) ---------- */
.hero-slider .carousel-caption {
    left: 0;
    right: auto;
    bottom: 40px;
    text-align: left;
    color: #0a6c74;
    background: rgba(255, 255, 255, 0.75);
    padding: 30px 60px 30px 40px;
    max-width: 720px;
    border-radius: 0 8px 8px 0;
}

.hero-slider .carousel-caption h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0a6c74;
    margin-bottom: 0;
}

.hero-slider .carousel-caption p {
    font-size: 1.25rem;
    font-weight: 500;
    color: #0a6c74;
    margin-bottom: 10px;
}

.btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #0a6c74;
    color: #fff;
    border-radius: 50rem;
    padding: 0.7rem 1.9rem;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.btn-shop:hover {
    background-color: #085b62;
    color: #fff;
}

.btn-shop svg {
    width: 0.85em;
    height: 0.85em;
}

/* ---------- Indicators (round outlined dots like the mock) ---------- */
.hero-slider .carousel-indicators [data-bs-target] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: transparent;
    opacity: 1;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    transition: background-color 0.2s ease;
}

.hero-slider .carousel-indicators .active {
    background-color: #fff;
}

/* ---------- Mobile ---------- */
@media (max-width: 767.98px) {
    .hero-slider .carousel-item {
        height: 480px;
    }

    .hero-slider .carousel-caption {
        max-width: 90%;
        padding: 20px;
        bottom: 55px;
    }

    .hero-slider .carousel-caption h2 {
        font-size: 1rem;
        line-height: normal;
    }

    .hero-slider .carousel-caption p {
        font-size: 0.95rem;
    }
}