/* Enhanced Home Page Styles */


/* ===== Services Section Enhancements ===== */
.service-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-button {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.tab-button:hover {
    color: #000;
}

.tab-button.active {
    border-bottom: 2px solid #000;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.service-content {
    padding: 20px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #f5f5f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon i {
    font-size: 24px;
    color: #333;
}

.service-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.service-item p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.service-rating {
    color: #f8b500;
}

.service-rating span {
    color: #666;
    margin-left: 5px;
}

.service-clients {
    color: #666;
}

.service-testimonial {
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
}

.service-testimonial i {
    color: #ddd;
    font-size: 16px;
    margin-right: 5px;
}

.service-testimonial p {
    margin: 0;
    font-size: 14px;
}

.service-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-details, .service-book {
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-details {
    color: #333;
    background: #f5f5f7;
}

.service-book {
    color: #fff;
    background: #000;
}

.service-details:hover {
    background: #eaeaea;
}

.service-book:hover {
    background: #333;
}

/* ===== Products Section Enhancements ===== */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.carousel-control {
    background: transparent;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: #f5f5f7;
}

.carousel-indicators {
    display: flex;
    margin: 0 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #000;
    transform: scale(1.2);
}

.products-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    margin-bottom: 40px;
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
}

.products-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.product-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;
    margin-right: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    scroll-snap-align: start;
    position: relative;
}

.product-card:last-child {
    margin-right: 0;
}

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

.product-card.featured {
    border: 2px solid #f8b500;
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.badge {
    margin-bottom: 5px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

.staff-pick {
    background: #9c27b0;
}

.bestseller {
    background: #f44336;
}

.client-favorite {
    background: #2196f3;
}

.product-image-gallery {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .main-image {
    transform: scale(1.05);
}

.product-thumbnails {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
}

.thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    margin-right: 5px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #fff;
}

.product-content {
    padding: 20px;
}

.product-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.product-rating {
    color: #f8b500;
    margin-bottom: 15px;
    font-size: 14px;
}

.product-rating span {
    color: #666;
    margin-left: 5px;
}

.product-description {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.benefit {
    background: #f5f5f7;
    padding: 5px 10px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.benefit i {
    margin-right: 5px;
    font-size: 14px;
}

.stylist-note {
    background: #fff8e1;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    border-left: 3px solid #ffc107;
}

.stylist-note p {
    margin: 0;
    line-height: 1.5;
}

.product-pairing {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.product-pairing a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.product-pairing a:hover {
    text-decoration: underline;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.product-price {
    font-weight: 600;
    font-size: 18px;
}

.view-details {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.view-details:hover {
    text-decoration: underline;
}

.add-to-cart {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #333;
}

/* Product Bundles */
.product-bundles {
    margin-bottom: 40px;
}

.bundle-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.bundles-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.bundle-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.bundle-card h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.bundle-card p {
    margin-bottom: 15px;
    color: #666;
}

.bundle-price {
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-right: 10px;
}

.bundle-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bundle-button:hover {
    background: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .bundles-container {
        flex-direction: column;
        align-items: center;
    }
    
    .bundle-card {
        margin-bottom: 20px;
    }
}
