/* Beauty Services Slider Styles */

/* Main Slider Container */
.beauty-services-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Slider Container */
.beauty-slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

/* Individual Slide */
.beauty-slide {
    flex: 0 0 calc(100% / 3); /* Default 3 slides, will be overridden by JS */
    padding: 0 15px;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

/* Slide Image */
.beauty-slide-image {
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.beauty-slide-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3 / 4;
    transition: transform 0.3s ease;
}

.beauty-slide:hover .beauty-slide-image img {
    transform: scale(1.05);
}

/* Slide Title */
.beauty-slide-title {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slide Button */
.beauty-slide-button {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    transition: opacity 0.3s ease;
}

.beauty-slide-button:hover {
    opacity: 0.7;
}

/* Navigation Arrows */
.beauty-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.beauty-slider-prev,
.beauty-slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beauty-slider-prev:hover,
.beauty-slider-next:hover {
    background-color: #f5f5f5;
}

/* Dots */
.beauty-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.beauty-slider-dot {
    width: 30px;
    height: 3px;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.beauty-slider-dot.active {
    background-color: #000;
}

/* Popup */
.beauty-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.beauty-popup.active {
    display: flex !important;
}

.beauty-popup-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.beauty-popup h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.beauty-popup-inner {
    display: flex;
    flex-direction: column;
}

.beauty-service-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.beauty-service-name {
    font-weight: 500;
}

.beauty-service-price {
    font-weight: 500;
}

/* Book Now Button */
.beauty-popup-button-container {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 20%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Allow clicks to pass through when invisible */
}

.beauty-popup-content:hover .beauty-popup-button-container {
    opacity: 1;
    pointer-events: auto; /* Re-enable clicks when visible */
}
/*book now button css*/

/* Main container for the Luxury Style section */
.luxury-style {
    font-family: Arial, sans-serif;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin: 0 auto;
}

.luxury-style h2 {
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

/* Style for each service item */
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2px;
}

.service-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    width: 60%;
}

.service-price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    width: 20%;
}

.book-now {
    display: none;
    font-size: 14px;
    padding: 5px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Show the Book Now button on hover */
.service-item:hover .book-now {
    display: inline-block;
}


/*book now end*/




.book-now-button {
    background-color: #556B2F;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.book-now-button:hover {
    background-color: #485a27;
}

/* Close button for popup */
.beauty-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.beauty-popup-close:hover {
    color: #333;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .beauty-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 767px) {
    .beauty-slide {
        flex: 0 0 100%;
    }
    
    .beauty-popup-content {
        width: 95%;
        padding: 20px;
    }
    
    .beauty-popup-button-container {
        position: static;
        width: 100%;
        opacity: 1;
        margin-top: 20px;
    }
}
