body {
    background: #fff0f6;
}

.btn-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    color: #ff1493;
    border: 2px solid #ff69b4;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 16px 32px;
    box-shadow: 0 4px 16px rgba(255,105,180,0.2);
    transition: transform 0.2s;
    background-color: #ffffff;
    color: #daa520;
    border: 1px solid #daa520;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #ff69b4;
    color: #fff;
    transform: scale(1.05);
}

.banner-img {
    max-width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(255,105,180,0.15);
}

.display-5, .fw-bold {
    color: #daa520;
}

.text-uppercase {
    text-transform: uppercase;
}

/* --- Custom Carousel Styles --- */

.custom-carousel-container {
    position: relative;
    width: 100%;
}

.custom-carousel-track-container {
    overflow: hidden;
}

.custom-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Default: Show 3 items */
.custom-carousel-card {
    flex: 0 0 33.333%;
    box-sizing: border-box;
    padding: 0 10px;
}

.custom-carousel-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Tablet: Show 2 items */
@media (max-width: 991px) {
  .custom-carousel-card {
    flex-basis: 50%;
  }
}

/* Mobile: Show 1 item */
@media (max-width: 767px) {
  .custom-carousel-card {
    flex-basis: 100%;
  }
}

.custom-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-carousel-button.prev {
    left: -15px;
}

.custom-carousel-button.next {
    right: -15px;
}

.custom-carousel-button:hover {
    background-color: white;
}

/* Use Bootstrap icons but keep them decoupled */
.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(1) grayscale(100) sepia(1) hue-rotate(280deg) saturate(5);
}

/* Instagram Link */
.instagram-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #daa520;
    font-size: 1.5rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #ff69b4;
}

.instagram-link .bi-instagram {
    margin-right: 10px;
}