.hero-section-salon {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.hero-section-salon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-section-salon .position-absolute {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ================== Main Content Section ================== */
.salon-main-img {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.list-unstyled li i {
    font-size: 1.25rem;
}

/* ================== Services Section (Matching Cafe's Style) ================== */
/* Card styles from the previous version are retained for consistency */
.menu-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.menu-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-name {
    font-size: 1rem;
    font-weight: bold;
    color: #004225;
}

.menu-price {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
  .menu-img-wrapper {
    height: 150px;
  }
  .menu-card {
    border-radius: 10px;
  }
}

/* ===== NEW: HORIZONTAL SCROLL STYLES (FROM CAFE PAGE) ===== */
.horizontal-scroll-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem; /* Menyesuaikan dengan g-4 */
    padding-bottom: 1rem; /* Memberi ruang di bawah scrollbar */
}

/* Mengatur agar item tidak mengecil di mobile */
.menu-item-scroll {
    flex: 0 0 auto;
    width: 50%; /* Menampilkan 2 menu per baris di mobile */
}

@media (min-width: 768px) {
    .menu-item-scroll {
        width: 33.333%;
    }
}
@media (min-width: 992px) {
    .menu-item-scroll {
        width: 25%;
    }
}

/* Sembunyikan scrollbar di browser tertentu */
.horizontal-scroll-container::-webkit-scrollbar {
    display: none;
}
.horizontal-scroll-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
