/* Brownliner Frontend Styles - Matching Reference Design */
:root {
    --primary-color: #e8b4cb;
    --secondary-color: #f8f4f0;
    --accent-color: #d4a574;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --light-pink: #fdf8f5;
    --rose-gold: #e8b4cb;
    --cream: #f9f6f3;
    --gradient: linear-gradient(135deg, #e8b4cb 0%, #d4a574 100%);
    
    /* Font families */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-elegant: 'Crimson Text', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    padding-top: 112px; /* topbar(36px) + navbar(~76px) */
}

/* ===== TOP INFO BAR ===== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: #d4869c;
    height: 36px;
    display: flex;
    align-items: center;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.topbar-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow: hidden;
    min-width: 0;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

.topbar-item i {
    color: #e8b4cb;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin-left: 12px;
    position: absolute;
    right: 0;
}

.topbar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-social:hover {
    background: #e8b4cb;
    color: white;
    border-color: #e8b4cb;
    transform: translateY(-1px);
}

/* Tablet: hide email */
@media (max-width: 767.98px) {
    .topbar-center {
        gap: 14px;
    }
    body {
        padding-top: 96px; /* topbar(36px) + navbar(~60px) */
    }
}

/* Mobile: allow topbar to grow taller to fit all items */
@media (max-width: 575.98px) {
    .topbar {
        height: auto;
        padding: 6px 0;
    }
    .topbar-inner {
        position: relative;
        flex-wrap: wrap;
        gap: 4px 0;
    }
    .topbar-center {
        flex-wrap: wrap;
        gap: 4px 14px;
        justify-content: center;
        width: 100%;
    }
    .topbar-right {
        display: flex;
        position: static;
        justify-content: center;
        width: 100%;
        gap: 6px;
        padding-bottom: 2px;
    }
    .topbar-item {
        font-size: 0.72rem;
    }
    body {
        padding-top: 110px;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 96px;
    }
}

/* Elegant Typography Classes */
.font-heading {
    font-family: var(--font-heading);
}

.font-elegant {
    font-family: var(--font-elegant);
}

.text-elegant {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.text-elegant-bold {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.text-elegant-light {
    font-family: var(--font-heading);
    font-weight: 300;
    letter-spacing: -0.01em;
}

/* Highlight text in rose/pink color */
.text-highlight {
    color: var(--primary-color);
}

.text-rose {
    color: #e8b4cb;
}

.text-pink {
    color: var(--primary-color);
}

/* Banner title styling to match your image */
.banner-title-elegant {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.banner-title-elegant .highlight {
    color: #e8b4cb;
    font-weight: 500;
}

/* Responsive banner title */
@media (max-width: 768px) {
    .banner-title-elegant {
        font-size: 2.5rem;
    }
}

/* Header */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-brand:hover {
    color: var(--text-dark) !important;
    transform: translateY(-1px);
}

.navbar-brand .brand-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-brand:hover .brand-highlight {
    color: #c6699a;
}

/* Add a subtle underline effect on hover */
.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 20px;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #fdf8f5 0%, #f9f6f3 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 40px 0 50px; /* Reduced top padding */
}

/* Banner Section */
.banner-section {
    position: relative;
    margin-top: 0;
    overflow: hidden;
}


.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.banner-slide-modern {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 30px 0; /* Reduced padding */
}

.banner-content-modern {
    position: relative;
    z-index: 2;
    padding-right: 40px;
    animation: slideInLeft 1s ease-out;
}

/* Banner Brand Logo */
.banner-brand-logo {
    margin-bottom: 1.5rem;
    animation: fadeIn 1.2s ease-out;
}

.banner-logo {
    max-width: 280px;
    height: auto;
    object-fit: contain;
    align-items: center;
    border-radius: 10%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-image-modern {
    position: relative;
    text-align: center;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-content-modern h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--text-dark);
}

.banner-content-modern h1 .highlight {
    color: var(--primary-color);
    font-weight: 400;
}

.banner-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 90%;
}

.banner-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-modern {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary.btn-modern {
    background: var(--gradient);
    color: white;
}

.btn-primary.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.4);
}

.btn-outline-modern {
    background: transparent;
    color: var(--text-dark);
    border: none;
    padding: 15px 0;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.btn-outline-modern:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.btn-outline-modern::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.btn-outline-modern:hover::after {
    width: 80%;
}

.banner-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.availability-badge {
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: inline-block;
    border-left: 4px solid var(--primary-color);
}

.availability-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.availability-time {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.banner-main-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-main-image:hover {
    transform: scale(1.02);
}

/* Custom Carousel Controls */
.custom-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: none;
    background: none;
    width: auto;
    height: auto;
}

.custom-carousel-control.carousel-control-prev {
    left: 30px;
}

.custom-carousel-control.carousel-control-next {
    right: 30px;
}

.custom-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.custom-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.custom-arrow i {
    font-size: 1rem;
}

/* Custom Indicators */
.carousel-indicators-modern {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.carousel-indicators-modern button {
    width: 40px;
    height: 6px;
    border-radius: 3px;
    background-color: rgba(255,255,255,0.4);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-indicators-modern button.active {
    background-color: rgba(255,255,255,0.8);
}

.indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary-color);
    transition: width 5s linear;
}

.carousel-indicators-modern button.active .indicator-progress {
    width: 100%;
}

.min-vh-85 {
    min-height: 85vh;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content-modern {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .banner-brand-logo {
        text-align: center;
        margin-bottom: 1.2rem;
    }
    
    .banner-logo {
        max-width: 200px;
    }
    
    .banner-content-modern h1 {
        font-size: 2.5rem;
    }
    
    .banner-actions {
        justify-content: center;
    }
    
    .availability-badge {
        margin: 0 auto;
    }
    
    .banner-slide-modern {
        min-height: auto;
        padding: 40px 0;
    }
    
    .banner-main-image {
        max-height: 300px;
    }
    
    .custom-carousel-control.carousel-control-prev {
        left: 15px;
    }
    
    .custom-carousel-control.carousel-control-next {
        right: 15px;
    }
    
    .custom-arrow {
        width: 40px;
        height: 40px;
    }
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-content h1 .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

/* Modern Services Section */
.services-section-modern {
    padding: 100px 0;
    background: #fafafa;
}

.section-title-modern {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: block;
    font-size: 0.78rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: var(--font-primary);
}

.section-title-modern h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 22px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-description {
    font-size: 1.05rem;
    color: #888;
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-title-modern h2 {
        font-size: 2.1rem;
    }
    .section-title-modern {
        margin-bottom: 45px;
    }
}

@media (max-width: 480px) {
    .section-title-modern h2 {
        font-size: 1.75rem;
    }
}

/* Tailwind-style Service Cards */
.service-card-tailwind {
    display: block;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    background: white !important; /* Force white background */
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.service-card-tailwind:hover {
    box-shadow: 0 20px 25px -5px rgba(232, 180, 203, 0.1), 0 10px 10px -5px rgba(232, 180, 203, 0.04);
    border-color: rgba(232, 180, 203, 0.3);
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
    background: white !important; /* Ensure white on hover */
}

.service-icon-tailwind {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 0.75rem;
    background: rgba(232, 180, 203, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.service-card-tailwind:hover .service-icon-tailwind {
    background: rgba(232, 180, 203, 0.2);
    transform: scale(1.05);
}

.service-title-tailwind {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark) !important; /* Force dark text */
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-description-tailwind {
    color: #6b7280 !important; /* Force gray text */
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    min-height: 2.5rem;
}

.service-price-tailwind {
    color: var(--primary-color) !important; /* Force pink price */
    font-weight: 500;
    font-size: 0.875rem;
}

.btn-view-all-elegant {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid #ddd;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.btn-view-all-elegant:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Services Listing Page */
.services-header-section {
    padding: 120px 0 60px;
    background: #fafafa;
    text-align: center;
}

.services-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services-main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-listing-section {
    padding: 10px 0;
    background: white;
}

.category-section {
    margin-bottom: 80px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    letter-spacing: -0.01em;
}

.service-item-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.service-item-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.15);
    transform: translateY(-3px);
}

/* Service Image Thumbnail */
.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f5f5f5;
}

.service-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-item-card:hover .service-thumbnail {
    transform: scale(1.08);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(232, 180, 203, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image-overlay i {
    color: white;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-item-card:hover .service-image-overlay {
    opacity: 1;
}

.service-item-card:hover .service-image-overlay i {
    transform: scale(1);
}

.service-content {
    flex-grow: 1;
    padding: 18px;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 12px;
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-top: 10px;
    border-top: 1px solid #f5f5f5;
}

.service-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-duration {
    font-size: 0.8rem;
    color: #888;
    background: #f8f9fa;
    padding: 3px 8px;
    border-radius: 12px;
}

.service-actions {
    margin-top: auto;
    padding: 0 18px 18px 18px;
}

.btn-service-book {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.btn-service-book:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 180, 203, 0.3);
}

.services-cta-section {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.services-cta-section p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Related Services Section */
.related-services-section {
    padding: 80px 0;
    background: #fafafa;
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title-center p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.related-service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.related-service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(232, 180, 203, 0.1), 0 10px 10px -5px rgba(232, 180, 203, 0.04);
    border-color: rgba(232, 180, 203, 0.3);
    transform: translateY(-2px);
}

/* Related Service Image */
.related-service-image-wrapper {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f5f5f5;
}

.related-service-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-service-card:hover .related-service-thumbnail {
    transform: scale(1.05);
}

.related-service-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    padding: 0.75rem 1rem 0 1rem;
}

.related-service-desc {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex-grow: 1;
    padding: 0 1rem;
    height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-service-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    padding: 0 1rem;
}

.related-service-price {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.related-service-price i {
    width: 1rem;
    height: 1rem;
    font-size: 0.75rem;
}

.related-service-duration {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #6b7280;
}

.related-service-duration i {
    width: 1rem;
    height: 1rem;
    font-size: 0.75rem;
}

.related-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-service-btn:hover {
    background: #d4a574;
    color: white;
    border-color: #d4a574;
}

.related-service-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-service-btn-outline:hover {
    background: #f9fafb;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.related-service-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding: 0 1rem 1rem 1rem;
}

.related-service-btn i {
    width: 0.75rem;
    height: 0.75rem;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.related-service-btn:hover i {
    transform: translateX(2px);
}

/* Progressive Booking Form */
.appointment-header-section {
    padding: 120px 0 60px;
    background: #fafafa;
    text-align: center;
}

.appointment-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.appointment-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.appointment-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Booking Section */
.modern-booking-section {
    padding: 4rem 0;
    background: white;
    min-height: 60vh;
}

.modern-booking-section .container {
    max-width: 42rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Modern Form Labels */
.modern-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.required {
    color: #dc2626;
    font-weight: 700;
}

/* Modern Select Wrapper */
.modern-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.modern-select-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    font-weight: 500;
    color: #2c2c2c;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    line-height: 1.5;
    /* Larger touch target on mobile */
    min-height: 54px;
}

.modern-select-input:focus {
    outline: none;
    border-color: #e8b4cb;
    box-shadow: 0 0 0 4px rgba(232, 180, 203, 0.15);
}

.modern-select-input:hover:not(:disabled) {
    border-color: #e8b4cb;
}

.modern-select-input:disabled {
    background-color: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

/* Style the option items */
.modern-select-input option {
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #2c2c2c;
    background: white;
}

.modern-select-input option:first-child {
    color: #9ca3af;
}

.modern-select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.1rem;
    height: 1.1rem;
    color: #e8b4cb;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.modern-select-wrapper:focus-within .modern-select-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* Mobile improvements */
@media (max-width: 575.98px) {
    .modern-select-input {
        font-size: 1rem;
        padding: 0.9rem 2.8rem 0.9rem 1rem;
        min-height: 52px;
        border-radius: 10px;
    }
}

/* Modern Date Button */
.modern-date-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    background: white;
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-date-button:hover {
    border-color: var(--primary-color);
}

.modern-date-button:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 180, 203, 0.1);
}

.modern-date-input-hidden {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Date Picker Container */
.date-picker-container {
    position: relative;
    width: 100%;
}

/* Custom Calendar */
.custom-calendar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 0.5rem;
    padding: 1rem;
    animation: fadeInUp 0.3s ease-out;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.calendar-nav-btn {
    background: transparent;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: #f3f4f6;
    color: var(--primary-color);
}

.calendar-month-year {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.calendar-weekday {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 0.5rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    background: transparent;
    border: none;
    position: relative;
}

.calendar-day:hover {
    background: #f3f4f6;
}

.calendar-day.other-month {
    color: #d1d5db;
}

.calendar-day.today {
    background: #fef3f2;
    color: var(--primary-color);
    font-weight: 600;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    background: #f9fafb;
}

.calendar-day.disabled:hover {
    background: #f9fafb;
}

/* Selected Date Display */
.selected-date-display {
    background: rgba(232, 180, 203, 0.1);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-date-display .calendar-icon {
    color: var(--primary-color);
}

.selected-date-display .date-text {
    color: var(--text-dark);
    font-weight: 500;
}

/* Modern Time Grid */
.modern-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
}

/* Modern Summary Card */
.modern-summary-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.modern-summary-card h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f3f4f6;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total-row {
    border-top: 2px solid #e5e7eb;
    margin-top: 0.75rem;
    padding-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Utility Classes for Modern Form */
.space-y-8 > * + * {
    margin-top: 2rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.grid {
    display: grid;
}

.sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.w-full {
    width: 100%;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.font-semibold {
    font-weight: 600;
}

.text-foreground {
    color: var(--text-dark);
}

.text-muted-foreground {
    color: var(--text-light);
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.text-primary {
    color: var(--primary-color);
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Modern Form */
@media (max-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .modern-time-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.5rem;
    }
    
    .modern-booking-section {
        padding: 2rem 0;
    }
    
    .py-16 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .custom-calendar {
        left: -1rem;
        right: -1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .calendar-day {
        font-size: 0.8rem;
    }
    
    .calendar-weekday {
        font-size: 0.8rem;
    }
}

.booking-form-section {
    padding: 80px 0;
    background: white;
}

.booking-step {
    margin-bottom: 2rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.step-header {
    margin-bottom: 30px;
}

.step-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

.required {
    color: #dc2626;
}

/* Modern Select Dropdown */
.modern-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 50px;
}

.modern-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 180, 203, 0.1);
}

.modern-select:disabled {
    background-color: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Service Details Card */
.service-details-card {
    margin-top: 20px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-detail-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f3f4f6;
}

.service-pricing .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-pricing .duration {
    color: var(--text-light);
    font-weight: 500;
}

/* Date Picker */
.date-picker-container {
    max-width: 300px;
}

.modern-date-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.modern-date-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 180, 203, 0.1);
}

/* Time Slots Modern */
.time-slots-modern {
    margin-top: 20px;
}

.time-slot-modern {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.time-slot-modern .slot-time {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.time-slot-modern .slot-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.75rem;
    margin-top: 2px;
}

.time-slot-modern .slot-info {
    font-size: 0.7rem;
    margin-top: 2px;
    opacity: 0.8;
}

.time-slot-modern.available {
    border-color: #10b981;
    background: #f0fdf4;
    color: #065f46;
}

.time-slot-modern.available .slot-status {
    color: #10b981;
}

.time-slot-modern.available:hover {
    border-color: var(--primary-color);
    background: rgba(232, 180, 203, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.time-slot-modern.available.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 180, 203, 0.4);
}

.time-slot-modern.available.selected .slot-status {
    color: white;
}

.time-slot-modern.booked {
    background: #fef2f2;
    border-color: #fca5a5;
    cursor: not-allowed;
    opacity: 0.7;
    color: #991b1b;
}

.time-slot-modern.booked .slot-status {
    color: #dc2626;
}

.time-slot-modern.booked:hover {
    transform: none;
    box-shadow: none;
}

/* Availability Legend */
.availability-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 15px 0 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.legend-indicator {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.legend-indicator.available {
    background: #f0fdf4;
    border: 2px solid #10b981;
    color: #10b981;
}

.legend-indicator.booked {
    background: #fef2f2;
    border: 2px solid #fca5a5;
    color: #dc2626;
}

/* No Slots Available - Clean Horizontal Layout (Bootstrap Override) */
.no-slots {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1.5rem !important;
    background: #fff5f5 !important;
    border: 1px solid #fed7d7 !important;
    border-radius: 0.75rem !important;
    margin: 1rem 0 !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.no-slots-icon {
    flex-shrink: 0 !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #fed7d7 !important;
    border-radius: 50% !important;
    color: #e53e3e !important;
    font-size: 1.5rem !important;
    margin-right: 1rem !important;
    margin-bottom: 0 !important;
}

.no-slots-content {
    flex: 1 !important;
    text-align: left !important;
}

.no-slots h4 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #e53e3e !important;
    margin: 0 0 0.25rem 0 !important;
}

.no-slots p {
    font-size: 0.9rem !important;
    color: #718096 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.no-slots .btn {
    flex-shrink: 0 !important;
    margin-left: 1rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

/* Loading State */
.loading {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
}

/* Next Available Card */
.next-available-card {
    background: linear-gradient(135deg, #e8b4cb, #f8d7da);
    border: 2px solid #e8b4cb;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(232, 180, 203, 0.3);
}

.next-available-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.next-available-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.next-available-info {
    flex: 1;
}

.next-available-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.next-available-time {
    font-size: 1.5rem;
    font-weight: 700;
    /* color: var(--primary-color); */
    color:#2c2c2c;
    line-height: 1.2;
    margin-bottom: 2px;
}

.next-available-date {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}

#bookNextAvailable {
    background: var(--primary-color);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

#bookNextAvailable:hover {
    background: #c6699a;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(232, 180, 203, 0.4);
}

/* Responsive Design for Next Available */
@media (max-width: 768px) {
    .next-available-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .next-available-icon {
        margin: 0 auto;
    }
    
    #bookNextAvailable {
        width: 100%;
        padding: 12px;
    }
}

/* Banner Availability Slider */
.availability-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 18px 22px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(232, 180, 203, 0.3);
    max-width: 280px;
    min-height: 75px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.availability-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 180, 203, 0.4);
    border-color: #c6699a;
}

.availability-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-align: center;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.availability-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.availability-slide {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
}

.availability-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
    margin: 0;
    max-width: 100%;
}

/* Slick Carousel Customization for Availability - Faster and More Contained */
.availability-slider .slick-dots {
    display: none !important;
}

.availability-slider .slick-arrow {
    display: none !important;
}

.availability-slider .slick-track {
    display: flex;
    align-items: center;
    height: auto;
    min-height: 32px;
    position: relative;
}

.availability-slider .slick-slide {
    height: auto;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.availability-slider .slick-slide > div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.availability-slider .slick-list {
    overflow: hidden;
    height: auto;
    min-height: 32px;
    position: relative;
}

/* Faster, smoother animations for availability slides */
.availability-slider .slick-slide {
    transition: opacity 0.3s ease-in-out;
}

.availability-slider .slick-current {
    z-index: 2;
}

/* Ensure smooth transitions */
.availability-slider .slick-slide {
    opacity: 1;
}

/* Responsive Banner Availability */
@media (max-width: 768px) {
    .availability-badge {
        max-width: 220px;
        padding: 16px 18px;
        margin: 15px auto 0;
        min-height: 70px;
    }
    
    .availability-time {
        font-size: 1.1rem;
    }
    
    .availability-label {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }
    
    .availability-slider {
        min-height: 28px;
    }
    
    .availability-slide {
        min-height: 28px;
    }
    
    .availability-slider .slick-track,
    .availability-slider .slick-list {
        min-height: 28px;
    }
}er .slick-active .availability-slide {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure smooth transitions */
.availability-slider .slick-slide {
    transition: opacity 0.5s ease-in-out;
}

.availability-slider .slick-current {
    z-index: 2;
}

/* Responsive Banner Availability */
@media (max-width: 768px) {
    .availability-badge {
        max-width: 220px;
        padding: 18px 20px;
        margin: 15px auto 0;
        min-height: 75px;
    }
    
    .availability-time {
        font-size: 1.1rem;
    }
    
    .availability-label {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
    
    .availability-slider {
        min-height: 30px;
    }
    
    .availability-slide {
        min-height: 30px;
    }
    
    .availability-slider .slick-track,
    .availability-slider .slick-list {
        min-height: 30px;
    }
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.form-group-modern {
    margin-bottom: 25px;
}

.form-group-modern label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.modern-input,
.modern-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.modern-input:focus,
.modern-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 180, 203, 0.1);
}

.modern-textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Booking Summary */
.booking-summary {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total-row {
    border-top: 2px solid #e5e7eb;
    margin-top: 15px;
    padding-top: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.summary-label {
    color: var(--text-light);
    font-weight: 500;
}

.summary-value {
    color: var(--text-dark);
    font-weight: 600;
}

.total-price {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Confirm Button */
.confirm-booking-btn {
    width: 100%;
    padding: 18px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-booking-btn:hover {
    background: #d4a574;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.4);
}

/* Loading and No Slots */
.loading,
.no-slots,
.no-services,
.error {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-style: italic;
}

.error {
    color: #dc2626;
}

/* Responsive */
@media (max-width: 768px) {
    .appointment-title {
        font-size: 2rem;
    }
    
    .booking-step {
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .booking-summary {
        padding: 20px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 1rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    display: block !important; /* Force block display */
    width: 100% !important;
}

.section-title p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    display: block !important; /* Force block display */
    width: 100% !important;
    margin-top: 15px !important; /* Add space between title and description */
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: none;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
}

.service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Responsive for modern services */
@media (max-width: 768px) {
    .section-title-modern h2 {
        font-size: 2rem;
    }
    
    .service-card-modern {
        padding: 30px 15px;
    }
    
    .services-section-modern {
        padding: 60px 0;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f5f0f0; /* Light pink/cream background like the reference */
}

/* Modern Grid Layout */
.grid {
    display: grid;
}

.lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-12 {
    gap: 3rem;
}

.gap-6 {
    gap: 1.5rem;
}

.items-center {
    align-items: center;
}

/* Modern Image Styling */
.rounded-2xl {
    border-radius: 1rem;
}

.overflow-hidden {
    overflow: hidden;
}

.shadow-rose-lg {
    box-shadow: 0 10px 15px -3px rgba(232, 180, 203, 0.1), 0 4px 6px -2px rgba(232, 180, 203, 0.05);
}

.w-full {
    width: 100%;
}

.h-80 {
    height: 20rem;
}

.object-cover {
    object-fit: cover;
}

/* Modern Typography */
.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.text-primary {
    color: #e8b4cb; /* Elegant pink color like in reference */
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-medium {
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-bold {
    font-weight: 700;
}

.text-foreground {
    color: #2c2c2c; /* Dark text for headings */
}

.text-muted-foreground {
    color: #6b7280; /* Muted gray text like in reference */
}

.leading-relaxed {
    line-height: 1.625;
}

.pt-4 {
    padding-top: 1rem;
}

/* Modern Button Styling */
.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.rounded-md {
    border-radius: 0.375rem;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus-visible\:ring-2:focus-visible {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-ring:focus-visible {
    --tw-ring-color: #e8b4cb;
}

.focus-visible\:ring-offset-2:focus-visible {
    --tw-ring-offset-width: 2px;
}

.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

.\[\&_svg\]\:pointer-events-none svg {
    pointer-events: none;
}

.\[\&_svg\]\:size-4 svg {
    width: 1rem;
    height: 1rem;
}

.\[\&_svg\]\:shrink-0 svg {
    flex-shrink: 0;
}

.bg-primary {
    background-color: #e8b4cb; /* Elegant pink button color like in reference */
}

.text-primary-foreground {
    color: white;
}

.hover\:bg-primary\/90:hover {
    background-color: rgba(212, 134, 156, 0.9); /* Darker pink on hover */
}

.h-10 {
    height: 2.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.shadow-rose {
    box-shadow: 0 4px 14px 0 rgba(212, 134, 156, 0.39); /* Pink shadow */
}

/* Bootstrap Override - Force Elegant Pink Colors in About Section */
.about-section .btn-primary,
.about-section .text-primary,
.about-section .bg-primary {
    --bs-primary: #e8b4cb !important;
    --bs-primary-rgb: 232, 180, 203 !important;
}

.about-section .btn-primary {
    background-color: #e8b4cb !important;
    border-color: #e8b4cb !important;
    color: white !important;
}

.about-section .btn-primary:hover,
.about-section .btn-primary:focus,
.about-section .btn-primary:active {
    background-color: rgba(232, 180, 203, 0.9) !important;
    border-color: rgba(232, 180, 203, 0.9) !important;
    color: white !important;
}

.about-section .text-primary {
    color: #e8b4cb !important;
}

/* Stats numbers should be elegant pink */
.about-section .text-3xl.font-bold.text-primary {
    color: #e8b4cb !important;
}

/* Button should be elegant pink */
.about-section .bg-primary.text-primary-foreground {
    background-color: #e8b4cb !important;
    color: white !important;
    text-decoration: none;
}

/* Ensure all primary colors in about section are elegant pink */
.about-section [class*="text-primary"] {
    color: #e8b4cb !important;
}

.about-section [class*="bg-primary"] {
    background-color: #e8b4cb !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .gap-12 {
        gap: 2rem;
    }
    
    .h-80 {
        height: 16rem;
    }
}

@media (max-width: 768px) {
    .md\:text-4xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        text-align: center;
    }
    
    .gap-6 {
        gap: 1rem;
    }
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--white) !important; /* Force white background */
}

.testimonial-card {
    background: white !important; /* Force white background */
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
    margin: 20px;
    border: 1px solid #f5f5f5;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light) !important; /* Force gray text */
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.client-details h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark) !important; /* Force dark text */
    margin-bottom: 5px;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.client-details span {
    color: var(--text-light) !important; /* Force gray text */
    font-size: 0.85rem;
}

/* Gallery */
.gallery-section {
    padding: 20px 0;
    background: var(--light-pink);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #f5f5f5;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.flash-deal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f39c12;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.product-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 10px;
}

/* Footer */
.footer {
    background: #f5f0f0; /* Light pink/cream background like reference */
    color: #6b7280; /* Muted gray text color */
    padding: 60px 0 30px;
}

.footer h5 {
    color: #374151; /* Darker gray for headings */
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #6b7280; /* Muted gray for links */
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: #e8b4cb; /* Elegant pink color on hover */
    text-decoration: none;
}

.footer p {
    color: #6b7280; /* Muted gray for paragraphs */
    line-height: 1.6;
}

.footer .text-highlight {
    color: #e8b4cb; /* Elegant pink for brand highlight */
}

.footer hr {
    border-color: #e5e7eb !important; /* Light gray border */
    opacity: 0.3;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(232, 180, 203, 0.1);
    color: #e8b4cb;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
}

.social-links a:hover {
    background: #e8b4cb;
    color: white;
    transform: translateY(-2px);
}


.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Forms */
.form-control {
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 180, 203, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Shop Page Styles */
.shop-header-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #fdf8f5 0%, #f9f6f3 100%);
    text-align: center;
}

.shop-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 15px;
}

.shop-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.shop-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.shop-main-section {
    padding: 80px 0;
    background: white;
}

/* Modern Filter Sidebar */
.filter-sidebar {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.filter-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.filter-header h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
}

.filter-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.filter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(232, 180, 203, 0.1);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.9rem;
}

.filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9rem;
    background: #fafafa;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(232, 180, 203, 0.1);
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.btn-filter-apply {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-filter-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.4);
}

.btn-filter-clear {
    background: transparent;
    color: var(--text-light);
    border: 2px solid #e5e7eb;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-filter-clear:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

/* Flash Deals Sidebar */
.deals-sidebar {
    background: linear-gradient(135deg, #fff5f5 0%, #fef7f7 100%);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #fecaca;
}

.deals-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #fecaca;
}

.deals-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc2626;
    margin: 0;
    flex: 1;
}

.deals-badge {
    background: #dc2626;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.deals-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.deal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    border: 1px solid #fecaca;
    transition: all 0.3s ease;
}

.deal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.deal-image {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-discount {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc2626;
    color: white;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 4px;
}

.deal-info h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.deal-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.deal-price .current {
    font-size: 0.9rem;
    font-weight: 700;
    color: #dc2626;
}

.deal-price .original {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: line-through;
}

/* Products Header */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 2px solid #f8f9fa;
}

.products-count h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.count-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.view-options {
    display: flex;
    gap: 5px;
}

.view-btn {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Modern Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.product-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-modern:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.flash {
    background: #dc2626;
    color: white;
}

.product-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #059669;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: white;
    color: var(--text-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-quick-view:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.product-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.product-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 0.9rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 8px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart {
    flex: 1;
    background: var(--gradient);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 180, 203, 0.4);
}

.btn-add-cart.added {
    background: #059669;
}

/* List View */
.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card-modern {
    display: flex;
    align-items: center;
}

.products-grid.list-view .product-image-wrapper {
    width: 150px;
    height: 120px;
    flex-shrink: 0;
}

.products-grid.list-view .product-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.products-grid.list-view .product-actions {
    flex-shrink: 0;
    margin-left: 20px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 20px;
}

.empty-state h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shop-title {
        font-size: 2rem;
    }
    
    .filter-sidebar {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .products-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .view-options {
        align-self: flex-end;
    }
    
    .deals-sidebar {
        padding: 20px;
    }
    
    .filter-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .products-grid .group {
        min-height: auto;
    }
    
    .products-grid .relative.h-48 {
        height: 140px !important;
    }
    
    .products-grid .p-5 {
        padding: 12px !important;
    }
    
    .products-grid .font-heading.text-base {
        font-size: 14px !important;
        line-height: 1.3;
    }
    
    .products-grid .text-xs {
        font-size: 10px !important;
    }
    
    .products-grid .text-lg {
        font-size: 16px !important;
    }
    
    .products-grid .text-sm {
        font-size: 12px !important;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .shop-header-section {
        padding: 80px 0 40px;
    }
}
/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 1rem;
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Improved Gallery Styles */
.gallery-grid-improved {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.gallery-item-improved {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.gallery-item-improved:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 0;
}

.gallery-image.loaded {
    opacity: 1;
}

.gallery-item-improved:hover .gallery-image {
    transform: scale(1.02);
}

.gallery-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
}

.gallery-overlay-improved {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-improved:hover .gallery-overlay-improved {
    opacity: 1;
}

.gallery-overlay-improved h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-overlay-improved p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.3;
}

.gallery-fallback {
    height: 200px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.gallery-fallback.show {
    display: flex !important;
}

.gallery-fallback-icon {
    color: var(--primary-color);
}

.gallery-video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.gallery-item-improved:hover .gallery-video-overlay {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.gallery-empty-improved {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.gallery-empty-improved i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: var(--primary-color);
}

.gallery-empty-improved h4 {
    margin-bottom: 0.5rem;
    color: #495057;
}

/* Gallery Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.gallery-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gallery-filter-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(232, 180, 203, 0.05);
    text-decoration: none;
    transform: translateY(-1px);
}

.gallery-filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(232, 180, 203, 0.3);
}

.gallery-filter-btn i {
    font-size: 0.85rem;
}

/* Home Gallery Grid */
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.home-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.home-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.home-gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 0;
}

.home-gallery-image.loaded {
    opacity: 1;
}

.home-gallery-item:hover .home-gallery-image {
    transform: scale(1.02);
}

.home-gallery-item .gallery-fallback {
    height: 200px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

.home-gallery-item .gallery-fallback.show {
    display: flex !important;
}

.home-gallery-item .gallery-fallback-icon {
    color: var(--primary-color);
}

/* Gallery Category Card Styles */
.gallery-category-card {
    text-decoration: none;
    display: block;
}

.gallery-category-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.gallery-category-card:hover .gallery-category-overlay {
    background: linear-gradient(to top, rgba(212, 134, 156, 0.95) 0%, rgba(212, 134, 156, 0.7) 50%, transparent 100%);
}

.gallery-category-info {
    color: white;
}

.gallery-category-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: white;
}

.gallery-category-count {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.95;
    color: white;
}

.gallery-category-card:hover .home-gallery-image {
    transform: scale(1.08);
}

/* Gallery Modal */
.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    border: none;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img,
    .gallery-item video {
        height: 200px;
    }
    
    .btn-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .btn-group .btn {
        margin: 0;
        font-size: 0.875rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item img,
    .gallery-item video {
        height: 160px;
    }
}

/* Gallery Loading Animation */
.gallery-item.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item.fade-in:nth-child(1) { animation-delay: 0.1s; }
.gallery-item.fade-in:nth-child(2) { animation-delay: 0.2s; }
.gallery-item.fade-in:nth-child(3) { animation-delay: 0.3s; }
.gallery-item.fade-in:nth-child(4) { animation-delay: 0.4s; }
.gallery-item.fade-in:nth-child(5) { animation-delay: 0.5s; }
.gallery-item.fade-in:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Empty State */
.gallery-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.gallery-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.gallery-empty h4 {
    margin-bottom: 0.5rem;
    color: #495057;
}
/* Appointment Tracking Styles */
.track-appointment-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.track-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.track-form-card .card-header {
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    padding: 1.5rem;
    border: none;
}

.track-form-card .card-header h3 {
    margin: 0;
    font-weight: 600;
}

.track-form-card .card-body {
    padding: 2rem;
}

/* Search Method Tabs */
.search-method-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-method-tabs input[type="radio"] {
    display: none;
}

.search-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    color: #6c757d;
    font-weight: 500;
}

.search-method-tabs input[type="radio"]:checked + .search-tab {
    border-color: #e91e63;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.search-tab:hover {
    border-color: #e91e63;
    transform: translateY(-1px);
}

/* Search Input Groups */
.search-input-group {
    transition: all 0.3s ease;
}

/* Track Info Card */
.track-info-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.track-info-card h5 {
    color: #e91e63;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.info-list li:last-child {
    border-bottom: none;
}

/* Appointment Results */
.appointment-results-section {
    padding: 2rem 0 4rem;
    background: #f8f9fa;
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
}

.appointment-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.appointment-card:hover {
    transform: translateY(-2px);
}

.appointment-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    display: flex;
    justify-content: between;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
}

.appointment-ref {
    font-size: 1.1rem;
    color: #333;
}

.appointment-status {
    margin-left: auto;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.appointment-details {
    padding: 2rem;
}

.detail-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.detail-group i {
    margin-top: 0.25rem;
    width: 20px;
}

.appointment-remarks {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #e91e63;
}

/* Status Timeline */
.status-timeline {
    margin: 2rem 0;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 40px;
    width: 2px;
    height: 30px;
    background: #dee2e6;
}

.timeline-item.completed::after {
    background: #28a745;
}

.timeline-item.cancelled::after {
    background: #dc3545;
}

.timeline-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dee2e6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.timeline-item.active .timeline-icon {
    background: #ffc107;
    color: #333;
}

.timeline-item.completed .timeline-icon {
    background: #28a745;
}

.timeline-item.cancelled .timeline-icon {
    background: #dc3545;
}

.timeline-content strong {
    display: block;
    color: #333;
}

.timeline-content small {
    color: #6c757d;
}

.appointment-actions {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

/* No Results */
.no-results-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.no-results-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.suggestions {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.suggestions h5 {
    color: #e91e63;
    margin-bottom: 1rem;
}

.suggestions ul {
    margin: 0;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-method-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .appointment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .appointment-details .row {
        margin: 0;
    }
    
    .appointment-details .col-md-6 {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .timeline-item {
        margin-bottom: 1rem;
    }
    
    .timeline-item:not(:last-child)::after {
        height: 20px;
    }
}

/* Reschedule Notice Styles */
.appointment-remarks {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #e91e63;
}

.appointment-remarks:has(.fa-calendar-edit) {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.appointment-remarks .fa-calendar-edit {
    color: #856404;
}

/* Admin Edit Form Styles */
.info-group {
    margin-bottom: 1rem;
}

.info-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: block;
}

.info-value {
    margin-bottom: 0;
    color: #495057;
}

.notification-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.notification-info ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.notification-info li {
    margin-bottom: 0.25rem;
}

/* Schedule Checker Styles */
#scheduleChecker .alert {
    margin-bottom: 0;
}

.conflict-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.available-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

/* Appointment Status Updates */
.status-updated {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 6px 6px 0;
}

.status-updated .fa-info-circle {
    color: #17a2b8;
}

/* Responsive Admin Edit Form */
@media (max-width: 768px) {
    .admin-header .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .admin-header .btn-group .btn {
        margin-bottom: 0.5rem;
    }
    
    .notification-info {
        margin-top: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fdf8f5 0%, #f9f6f3 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e8b4cb" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d4a574" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-main-section {
    padding: 80px 0;
    background: white;
}

/* Beautiful Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    margin-bottom: 30px;
}

.contact-form-header {
    background: linear-gradient(135deg, #fdf8f5 0%, #f9f6f3 100%);
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.3);
}

.contact-form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-form-header p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Elegant Form Styles */
.beautiful-contact-form {
    padding: 40px;
}

.form-group-elegant {
    margin-bottom: 30px;
    position: relative;
}

.form-label-elegant {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.form-icon-small {
    margin-right: 8px;
    color: var(--primary-color);
    width: 16px;
}

.form-input-elegant {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    position: relative;
}

.form-input-elegant:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(232, 180, 203, 0.1);
    transform: translateY(-1px);
}

.form-input-elegant.has-value {
    background: white;
    border-color: #d1d5db;
}

.form-textarea-elegant {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
}

.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.form-group-elegant.focused .form-focus-line {
    width: 100%;
}

/* Beautiful Submit Button */
.form-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-send-message {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-send-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(232, 180, 203, 0.4);
}

.btn-send-message.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-send-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-send-message:hover::before {
    left: 100%;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    margin-bottom: 30px;
}

.contact-info-header {
    background: linear-gradient(135deg, var(--primary-color), #d4a574);
    padding: 30px;
    text-align: center;
    color: white;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.contact-info-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 500;
}

.contact-info-list {
    padding: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item-icon {
    width: 45px;
    height: 45px;
    background: rgba(232, 180, 203, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-item-content h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.info-item-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Social Links */
.contact-social {
    padding: 0 30px 30px;
    text-align: center;
}

.contact-social h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.social-links-elegant {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.4);
    color: white;
}

/* Quick Actions Card */
.quick-actions-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.quick-actions-header {
    background: linear-gradient(135deg, #2c2c2c, #444);
    padding: 30px;
    text-align: center;
    color: white;
}

.actions-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 180, 203, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.quick-actions-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 500;
}

.quick-actions-list {
    padding: 30px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    border: 2px solid #f0f0f0;
    background: #fafafa;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
    background: white;
    color: inherit;
    text-decoration: none;
}

.quick-action-btn.primary {
    background: var(--gradient);
    border-color: var(--primary-color);
    color: white;
}

.quick-action-btn.primary:hover {
    color: white;
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.4);
}

.action-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.quick-action-btn:not(.primary) .action-icon {
    background: rgba(232, 180, 203, 0.1);
    color: var(--primary-color);
}

.action-content {
    flex: 1;
}

.action-content h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 1rem;
}

.action-content p {
    margin-bottom: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.action-arrow {
    font-size: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.quick-action-btn:hover .action-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Contact Alert */
.contact-alert {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.2rem;
    }
    
    .contact-form-header {
        padding: 30px 20px;
    }
    
    .beautiful-contact-form {
        padding: 30px 20px;
    }
    
    .contact-info-list,
    .quick-actions-list {
        padding: 20px;
    }
    
    .contact-info-header,
    .quick-actions-header {
        padding: 25px 20px;
    }
    
    .btn-send-message {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

.contact-map-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.map-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-header h4 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.map-header p {
    color: #6c757d;
    margin: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design for Contact Map */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

/* Improved Gallery Styles - Clean and Modern */
.gallery-section {
    padding: 80px 0;
    background: var(--light-pink);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.gallery-grid-improved {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item-improved {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: #fff;
    cursor: pointer;
}

.gallery-item-improved:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 134, 156, 0.15);
}

.gallery-item-improved img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item-improved:hover img {
    transform: scale(1.03);
}

.gallery-overlay-improved {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item-improved:hover .gallery-overlay-improved {
    transform: translateY(0);
}

.gallery-overlay-improved h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay-improved p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(232, 180, 203, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
    z-index: 2;
}

.gallery-empty-improved {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.gallery-empty-improved i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.gallery-empty-improved h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #495057;
}

/* Gallery Video Support */
.gallery-item-improved video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item-improved:hover video {
    transform: scale(1.05);
}

.gallery-video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.gallery-item-improved:hover .gallery-video-overlay {
    background: rgba(0,0,0,0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Modal Support */
#galleryModal video {
    width: 100%;
    height: auto;
    max-height: 80vh;
}

/* Modern Cart Button with Lucide Icon */
.cart-button-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    outline: none;
    /* border: 2px solid transparent; */
    text-decoration: none;
    height: 2.5rem;
    width: 2.5rem;
    position: relative;
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    cursor: pointer;
}

.cart-button-modern:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 180, 203, 0.3);
}

.cart-button-modern:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.cart-button-modern:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.cart-button-modern svg {
    pointer-events: none;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: all 0.2s ease-in-out;
}

.cart-count-modern {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1;
    transition: all 0.2s ease-in-out;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cart-button-modern:hover .cart-count-modern {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Hide cart count when it's 0 */
.cart-count-modern:empty,
.cart-count-modern[data-count="0"] {
    display: none;
}

/* Show cart count when it has items */
.cart-count-modern:not(:empty):not([data-count="0"]) {
    display: flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-button-modern {
        height: 2.25rem;
        width: 2.25rem;
    }
    
    .cart-button-modern svg {
        width: 1.125rem;
        height: 1.125rem;
    }
    
    .cart-count-modern {
        height: 0.875rem;
        width: 0.875rem;
        font-size: 0.5rem;
    }
}

/* Modern Button System */
.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    
    transition: all 0.2s ease-in-out;
    outline: none;
    border: 2px solid transparent;
    text-decoration: none;
    height: 2.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    position: relative;
}

.modern-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.modern-btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.modern-btn svg {
    pointer-events: none;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Primary Button */
.modern-btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.modern-btn-primary:hover {
    background: rgba(232, 180, 203, 0.9);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Outline Button */
.modern-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.modern-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Shadow Effects */
.shadow-rose {
    box-shadow: 0 4px 14px 0 rgba(232, 180, 203, 0.39);
}

.modern-btn-primary:hover.shadow-rose {
    box-shadow: 0 6px 20px 0 rgba(232, 180, 203, 0.5);
}

.modern-btn-outline:hover {
    box-shadow: 0 4px 14px 0 rgba(232, 180, 203, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-btn {
        height: 2.25rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
    }
    
    .modern-btn svg {
        width: 0.875rem;
        height: 0.875rem;
    }
}

@media (max-width: 480px) {
    .modern-btn {
        height: 2rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    /* Stack buttons vertically on very small screens */
    .d-flex .modern-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Animation Enhancements */
.modern-btn {
    overflow: hidden;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.modern-btn:hover::before {
    left: 100%;
}

/* Focus and Active States */
.modern-btn:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

.modern-btn:focus {
    outline: none;
}

.modern-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Category Color Support */
.gallery-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
    z-index: 2;
    /* Background color will be set inline from category model */
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid-improved {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    
    .gallery-item-improved img {
        height: 160px;
    }
    
    .gallery-filters {
        gap: 0.25rem;
    }
    
    .gallery-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-improved {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item-improved img {
        height: 140px;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
}

/* Gallery Loading Animation */
.gallery-item-improved.fade-in {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-item-improved.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-improved.fade-in:nth-child(1) { animation-delay: 0.1s; }
.gallery-item-improved.fade-in:nth-child(2) { animation-delay: 0.2s; }
.gallery-item-improved.fade-in:nth-child(3) { animation-delay: 0.3s; }
.gallery-item-improved.fade-in:nth-child(4) { animation-delay: 0.4s; }
.gallery-item-improved.fade-in:nth-child(5) { animation-delay: 0.5s; }
.gallery-item-improved.fade-in:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#galleryModal .modal-body {
    padding: 0;
}

#galleryModal .modal-body img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

/* Responsive Gallery Improvements */
@media (max-width: 768px) {
    .gallery-grid-improved {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    
    .gallery-item-improved img {
        height: 160px;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-filter-btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid-improved {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item-improved img {
        height: 140px;
    }
}

/* Modern Button System */
.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    
    transition: all 0.2s ease-in-out;
    outline: none;
    border: 2px solid transparent;
    text-decoration: none;
    height: 2.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    position: relative;
}

.modern-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.modern-btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.modern-btn svg {
    pointer-events: none;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Primary Button */
.modern-btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.modern-btn-primary:hover {
    background: rgba(232, 180, 203, 0.9);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Outline Button */
.modern-btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.modern-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Shadow Effects */
.shadow-rose {
    box-shadow: 0 4px 14px 0 rgba(232, 180, 203, 0.39);
}

.modern-btn-primary:hover.shadow-rose {
    box-shadow: 0 6px 20px 0 rgba(232, 180, 203, 0.5);
}

.modern-btn-outline:hover {
    box-shadow: 0 4px 14px 0 rgba(232, 180, 203, 0.25);
}

/* Animation Enhancements */
.modern-btn {
    overflow: hidden;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.modern-btn:hover::before {
    left: 100%;
}

/* Focus and Active States */
.modern-btn:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

.modern-btn:focus {
    outline: none;
}

.modern-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive Design for Modern Buttons */
@media (max-width: 768px) {
    .modern-btn {
        height: 2.25rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
    }
    
    .modern-btn svg {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    /* Mobile navigation button container */
    .navbar-collapse .d-flex {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(232, 180, 203, 0.2);
    }
    
    .navbar-collapse .modern-btn {
        width: 100%;
        justify-content: center;
    }
    
    .navbar-collapse .cart-button-modern {
        align-self: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .modern-btn {
        height: 2rem;
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .modern-btn svg {
        width: 0.75rem;
        height: 0.75rem;
    }
}

/* Desktop hover enhancements */
@media (min-width: 769px) {
    .modern-btn:hover {
        box-shadow: 0 4px 12px rgba(232, 180, 203, 0.3);
    }
}

/* Final Override - About Section Colors - Load Last */
body .about-section .text-primary,
body .about-section span.text-primary,
body .about-section p.text-primary {
    color: #e8b4cb !important;
}

body .about-section .bg-primary,
body .about-section a.bg-primary,
body .about-section button.bg-primary {
    background-color: #e8b4cb !important;
    border-color: #e8b4cb !important;
}

body .about-section .btn-primary {
    background-color: #e8b4cb !important;
    border-color: #e8b4cb !important;
    color: white !important;
}

body .about-section .btn-primary:hover,
body .about-section .btn-primary:focus,
body .about-section .btn-primary:active,
body .about-section .btn-primary.active {
    background-color: rgba(212, 134, 156, 0.9) !important;
    border-color: rgba(212, 134, 156, 0.9) !important;
    color: white !important;
}

/* Force elegant pink color for stats numbers */
body .about-section .text-3xl.font-bold {
    color: #e8b4cb !important;
}

/* Force pink color for "About Brownliner" label */
body .about-section .text-sm.font-medium.uppercase {
    color: #e8b4cb !important;
}
/* Modern About Page Styles */
.flex-1 {
    flex: 1 1 0%;
}

.pt-16 {
    padding-top: 4rem;
}

.md\:pt-20 {
    padding-top: 5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-gradient-hero {
    background: linear-gradient(135deg, #fdf8f5 0%, #f9f6f3 100%);
}

.bg-gradient-blush {
    background: linear-gradient(135deg, #fef7f7 0%, #fdf2f8 100%);
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.h-96 {
    height: 24rem;
}

.bg-primary\/10 {
    background-color: rgba(212, 134, 156, 0.1);
}

.h-10 {
    height: 2.5rem;
}

.w-10 {
    width: 2.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shrink-0 {
    flex-shrink: 0;
}

.h-5 {
    height: 1.25rem;
}

.w-5 {
    width: 1.25rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bg-card {
    background-color: white;
}

.border {
    border-width: 1px;
}

.border-border {
    border-color: #e5e7eb;
}

.p-6 {
    padding: 1.5rem;
}

.hover\:shadow-rose:hover {
    box-shadow: 0 10px 15px -3px rgba(232, 180, 203, 0.1), 0 4px 6px -2px rgba(232, 180, 203, 0.05);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.h-20 {
    height: 5rem;
}

.w-20 {
    width: 5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.bg-secondary\/50 {
    background-color: rgba(248, 250, 252, 0.5);
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.font-semibold {
    font-weight: 600;
}

.text-card-foreground {
    color: var(--text-dark);
}

.mt-1 {
    margin-top: 0.25rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.mb-8 {
    margin-bottom: 2rem;
}

.max-w-lg {
    max-width: 32rem;
}

.h-11 {
    height: 2.75rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .md\:pt-20 {
        padding-top: 4rem;
    }
    
    .md\:py-24 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .md\:text-5xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* Force pink colors for about page */
.about-page .text-primary,
.about-page .bg-primary {
    color: #e8b4cb !important;
    background-color: #e8b4cb !important;
}

.about-page .text-primary svg {
    color: #e8b4cb !important;
}
/* Override Bootstrap Button Colors - Force Elegant Pink */
.bg-primary,
a.bg-primary,
button.bg-primary,
.btn-primary {
    background-color: #e8b4cb !important;
    border-color: #e8b4cb !important;
    color: white !important;
}

.bg-primary:hover,
a.bg-primary:hover,
button.bg-primary:hover,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: rgba(212, 134, 156, 0.9) !important;
    border-color: rgba(212, 134, 156, 0.9) !important;
    color: white !important;
}

/* Specific override for about page CTA button */
.inline-flex.bg-primary {
    background-color: #e8b4cb !important;
    border-color: #e8b4cb !important;
    color: white !important;
}

.inline-flex.bg-primary:hover {
    background-color: rgba(212, 134, 156, 0.9) !important;
    border-color: rgba(212, 134, 156, 0.9) !important;
    color: white !important;
}

/* Force elegant pink for all primary text colors */
.text-primary {
    color: #e8b4cb !important;
}

/* Stats numbers should be pink */
.text-4xl.font-bold.text-primary,
.text-5xl.font-bold.text-primary {
    color: #e8b4cb !important;
}

/* Override any Bootstrap CSS variables */
:root {
    --bs-primary: #e8b4cb !important;
    --bs-primary-rgb: 232, 180, 203 !important;
}

/* Force pink for icon colors */
.text-primary svg,
.lucide.text-primary {
    color: #e8b4cb !important;
    stroke: #e8b4cb !important;
}

/* Additional button overrides */
/* [class*="bg-primary"] {
    background-color: #d4869c !important;
} */

[class*="text-primary"] {
    color: #e8b4cb !important;
}

/* Ensure button text is white */
.bg-primary.text-primary-foreground {
    color: white !important;
}

.inline-flex.bg-primary.text-primary-foreground {
    color: white !important;
}
/* Modern Product Card Styles */
.group {
    position: relative;
}

.bg-card {
    background-color: white;
}

.border-border {
    border-color: #e5e7eb;
}

.overflow-hidden {
    overflow: hidden;
}

.hover\:shadow-rose:hover {
    box-shadow: 0 10px 15px -3px rgba(232, 180, 203, 0.1), 0 4px 6px -2px rgba(232, 180, 203, 0.05);
}

.relative {
    position: relative;
}

.h-48 {
    height: 12rem;
}

.bg-secondary\/30 {
    background-color: rgba(248, 250, 252, 0.3);
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.object-cover {
    object-fit: cover;
}

.absolute {
    position: absolute;
}

.top-2 {
    top: 0.5rem;
}

.left-2 {
    left: 0.5rem;
}

.right-2 {
    right: 0.5rem;
}

.bg-red-500 {
    background-color: #ef4444;
}

.text-white {
    color: white;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.rounded-full {
    border-radius: 9999px;
}

.p-5 {
    padding: 1.25rem;
}

.text-muted-foreground {
    color: #6b7280;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.font-semibold {
    font-weight: 600;
}

.text-card-foreground {
    color: var(--text-dark);
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.gap-1 {
    gap: 0.25rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.h-3\.5 {
    height: 0.875rem;
}

.w-3\.5 {
    width: 0.875rem;
}

.fill-primary {
    fill: var(--primary-color);
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.text-lg {
    font-size: 1rem;
    line-height: 1.75rem;
}

.font-bold {
    font-weight: 600;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.2rem;
}

.line-through {
    text-decoration-line: line-through;
}

.inline-flex {
    display: inline-flex;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.font-medium {
    font-weight: 500;
}

.ring-offset-background {
    --tw-ring-offset-color: white;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus-visible\:ring-2:focus-visible {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-ring:focus-visible {
    --tw-ring-color: var(--primary-color);
}

.focus-visible\:ring-offset-2:focus-visible {
    --tw-ring-offset-width: 2px;
}

.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

.border-input {
    border-color: #d1d5db;
}

.bg-background {
    background-color: white;
}

.hover\:bg-accent:hover {
    background-color: #f9fafb;
}

.hover\:text-accent-foreground:hover {
    color: var(--text-dark);
}

.h-9 {
    height: 2.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.\[\&_svg\]\:pointer-events-none svg {
    pointer-events: none;
}

.\[\&_svg\]\:size-4 svg {
    width: 1rem;
    height: 1rem;
}

.\[\&_svg\]\:shrink-0 svg {
    flex-shrink: 0;
}

.text-primary-foreground {
    color: white;
}

.hover\:bg-primary\/90:hover {
    background-color: rgba(212, 134, 156, 0.9);
}

.h-4 {
    height: 1rem;
}

.w-4 {
    width: 1rem;
}

/* Responsive adjustments for modern product cards */
@media (max-width: 768px) {
    .h-48 {
        height: 10rem;
    }
    
    .p-5 {
        padding: 1rem;
    }
    
    .text-base {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
    
    .text-lg {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}
/* View Details Button Styling */
.view-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3b82f6 !important; /* Blue color like in reference */
    background-color: white;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    height: 2.25rem;
    padding: 0 0.75rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background-color: #f8fafc;
    color: #2563eb !important; /* Darker blue on hover */
    text-decoration: none !important;
    border-color: #3b82f6;
}

.view-details-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    text-decoration: none !important;
}

/* Remove underlines from all product card links */
.group a,
.product-card a,
.product-card-modern a {
    text-decoration: none !important;
}

.group a:hover,
.product-card a:hover,
.product-card-modern a:hover {
    text-decoration: none !important;
}
/* Fix for pages overlapping with fixed navbar */
.page-content {
    padding-top: 100px; /* Account for fixed navbar height */
}

/* Cart page specific fixes */
.cart-page .services-section {
    padding-top: 120px; /* Extra padding for cart page */
}

/* General fix for all main content sections */
main {
    padding-top: 0; /* Body padding-top handles the offset */
}

/* Override for sections that already have proper spacing */
.banner-section,
.hero-section {
    margin-top: 0;
    padding-top: 30px;
}
     /* Reduced top padding */


/* Ensure cart items have proper spacing */
.cart-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.cart-summary {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px; /* Account for navbar */
}

.cart-summary h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

/* ===== MODERN CHECKOUT STYLES ===== */
.modern-checkout-section {
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f0f0 100%);
    min-height: 100vh;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.checkout-title svg {
    color: #e8b4cb;
}

.checkout-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0;
}

/* Progress Steps */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.progress-step.active .step-circle {
    background: #e8b4cb;
    color: white;
    border-color: #e8b4cb;
}

.progress-step.current .step-circle {
    background: #e8b4cb;
    color: white;
    border-color: #e8b4cb;
    box-shadow: 0 0 0 4px rgba(232, 180, 203, 0.2);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
}

.progress-step.active .step-label {
    color: #e8b4cb;
    font-weight: 600;
}

.progress-line {
    width: 4rem;
    height: 2px;
    background: #e5e7eb;
    margin: 0 1rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.progress-line.active {
    background: #e8b4cb;
}

/* Form Cards */
.checkout-form-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-bottom: 2rem;
}

.order-summary-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    position: sticky;
    top: 2rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f3f4f6;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title svg {
    color: #e8b4cb;
}

.section-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Modern Form Elements */
.modern-form-group {
    margin-bottom: 1.5rem;
}

.modern-label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.modern-input,
.modern-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #fafafa;
}

.modern-input:focus,
.modern-textarea:focus {
    outline: none;
    border-color: #e8b4cb;
    background: white;
    box-shadow: 0 0 0 3px rgba(232, 180, 203, 0.1);
}

.modern-input.is-invalid,
.modern-textarea.is-invalid {
    border-color: #ef4444;
}

.modern-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-label {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
}

.payment-label:hover {
    border-color: #e8b4cb;
    background: white;
}

.payment-option input[type="radio"]:checked + .payment-label {
    border-color: #e8b4cb;
    background: rgba(232, 180, 203, 0.05);
    box-shadow: 0 0 0 3px rgba(232, 180, 203, 0.1);
}

.payment-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 2.5rem;
    text-align: center;
}

.payment-info {
    flex: 1;
}

.payment-name {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.payment-desc {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Checkout Actions */
.checkout-actions {
    text-align: center;
    margin-top: 2rem;
}

.checkout-btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.checkout-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.checkout-security svg {
    color: #10b981;
}

/* Order Summary */
.summary-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-title svg {
    color: #e8b4cb;
}

.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.25rem 0;
}

.item-quantity {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.item-price {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

/* Summary Calculations */
.summary-calculations {
    padding: 1.5rem 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 1.5rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.calc-row:last-child {
    margin-bottom: 0;
}

.calc-label {
    color: #6b7280;
    font-size: 0.95rem;
}

.calc-value {
    font-weight: 600;
    color: #2d3748;
}

.total-row .calc-label,
.total-row .calc-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
}

/* Summary Notice */
.summary-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #1e40af;
}

.summary-notice svg {
    color: #3b82f6;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-title {
        font-size: 2rem;
    }
    
    .checkout-progress {
        padding: 0 1rem;
    }
    
    .progress-line {
        width: 2rem;
        margin: 0 0.5rem;
    }
    
    .step-circle {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .checkout-form-card,
    .order-summary-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .payment-label {
        padding: 1rem;
    }
    
    .payment-icon {
        font-size: 1.25rem;
        width: 2rem;
        margin-right: 0.75rem;
    }
    
    .order-summary-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .checkout-progress {
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-line {
        width: 2px;
        height: 2rem;
        margin: 0;
    }
    
    .checkout-btn {
        width: 100%;
        min-width: auto;
    }
}
/* ===== ORDER TRACKING STYLES ===== */
.modern-tracking-section {
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f5f0f0 100%);
    min-height: 100vh;
}

.tracking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tracking-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.tracking-title svg {
    color: #d4869c;
}

.tracking-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0;
}

/* Tracking Form Card */
.tracking-form-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-title svg {
    color: #d4869c;
}

.form-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.form-help {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.track-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Order Status Card */
.order-status-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-bottom: 2rem;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.status-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-title svg {
    color: #d4869c;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-pending {
    background: rgba(251, 191, 36, 0.1);
    color: #d97706;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.status-processing {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-shipped {
    background: rgba(168, 85, 247, 0.1);
    color: #7c3aed;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.status-delivered {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Order Progress */
.order-progress {
    margin-bottom: 2rem;
}

.progress-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1rem;
    top: 2.5rem;
    width: 2px;
    height: 2rem;
    background: #e5e7eb;
    transform: translateX(-50%);
}

.progress-step.completed::after {
    background: #d4869c;
}

.step-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.progress-step.completed .step-icon {
    background: #d4869c;
    color: white;
}

.progress-step.current .step-icon {
    background: #d4869c;
    color: white;
    box-shadow: 0 0 0 4px rgba(212, 134, 156, 0.2);
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.25rem 0;
}

.step-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.progress-step.completed .step-content h4 {
    color: #d4869c;
}

/* Order Details */
.order-details {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.75rem;
}

.details-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: #6b7280;
}

.detail-value {
    font-weight: 600;
    color: #2d3748;
}

/* Order Items */
.order-items {
    border-top: 1px solid #f3f4f6;
    padding-top: 1.5rem;
}

.items-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.25rem 0;
}

.item-details {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.item-total {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

/* Tracking Info Card */
.tracking-info-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-header {
    margin-bottom: 2rem;
    text-align: center;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-title svg {
    color: #d4869c;
}

.info-steps {
    margin-bottom: 2rem;
}

.info-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #d4869c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 0.25rem 0;
}

.step-text p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.contact-support {
    text-align: center;
    padding: 1.5rem;
    background: rgba(212, 134, 156, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(212, 134, 156, 0.2);
}

.contact-support h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-support p {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tracking-title {
        font-size: 2rem;
    }
    
    .status-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .order-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .info-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .step-number {
        align-self: center;
    }
}
/* ===== ORDER TRACKING ENHANCEMENTS ===== */

/* OR Divider */
.tracking-or-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.tracking-or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    z-index: 1;
}

.tracking-or-divider span {
    background: white;
    padding: 0 1rem;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}

/* Multiple Orders Display */
.multiple-orders-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    margin-bottom: 2rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-summary-item {
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.order-summary-item:hover {
    border-color: #d4869c;
    box-shadow: 0 2px 4px rgba(212, 134, 156, 0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.order-ref {
    font-weight: 700;
    font-size: 1.125rem;
    color: #2d3748;
    font-family: 'Playfair Display', serif;
}

.order-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.meta-value {
    font-size: 0.95rem;
    color: #2d3748;
    font-weight: 600;
}

.order-actions {
    display: flex;
    justify-content: flex-end;
}

.view-details-btn {
    min-width: 120px;
}

.order-details-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

/* Modern Button Sizes */
.modern-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.modern-btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .order-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .order-meta {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .meta-item {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .order-actions {
        justify-content: flex-start;
    }
    
    .view-details-btn {
        width: 100%;
    }
}
/* ===== MODERN NAVBAR STYLES ===== */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 134, 156, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    z-index: 1050; /* below topbar (1060) */
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
}

/* Brand Logo */
.modern-navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-navbar-brand:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.brand-logo-img {
    height: 100px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.modern-navbar-brand:hover .brand-logo-img {
    transform: scale(1.05);
}

/* Adjust logo size when navbar is scrolled */
.modern-navbar.navbar-scrolled .brand-logo-img {
    height: 80px;
}

.brand-highlight {
    color: #d4869c;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Mobile Toggle Button */
.modern-navbar-toggler {
    border: none;
    background: none;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Hide toggler on desktop (lg and above) */
@media (min-width: 992px) {
    .modern-navbar-toggler {
        display: none !important;
    }
}

/* Show toggler only on mobile/tablet */
@media (max-width: 991.98px) {
    .modern-navbar-toggler {
        display: flex !important;
    }
}

.modern-navbar-toggler:hover {
    background: rgba(212, 134, 156, 0.1);
}

.modern-navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.toggler-line {
    width: 22px;
    height: 2px;
    background: #2d3748;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.modern-navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.modern-navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.modern-navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Navigation Links */
.modern-navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.modern-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modern-nav-link:hover {
    color: #d4869c;
    background: rgba(212, 134, 156, 0.08);
    text-decoration: none;
    transform: translateY(-1px);
}

.modern-nav-link.active {
    color: #d4869c;
    background: rgba(212, 134, 156, 0.12);
    font-weight: 600;
}

.modern-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #d4869c;
    border-radius: 2px;
}

.nav-text {
    position: relative;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Action Links */
.action-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 50px;
}

.action-link:hover {
    color: #d4869c;
    background: rgba(212, 134, 156, 0.08);
    text-decoration: none;
    transform: translateY(-1px);
}

.action-link.active {
    color: #d4869c;
    background: rgba(212, 134, 156, 0.12);
}

.action-text {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Cart Action */
.cart-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 50px;
}

.cart-action:hover {
    color: #d4869c;
    background: rgba(212, 134, 156, 0.08);
    text-decoration: none;
    transform: translateY(-1px);
}

.cart-icon-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.125rem 0.375rem;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Appointment Actions */
.appointment-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.appointment-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.track-appointment {
    color: #6b7280;
    border: 1px solid #e5e7eb;
    background: white;
}

.track-appointment:hover {
    color: #d4869c;
    border-color: #d4869c;
    background: rgba(212, 134, 156, 0.05);
    text-decoration: none;
    transform: translateY(-1px);
}

.book-appointment {
    color: white;
    background: linear-gradient(135deg, #d4869c 0%, #c77a91 100%);
    border: 1px solid #d4869c;
    box-shadow: 0 2px 8px rgba(212, 134, 156, 0.3);
}

.book-appointment:hover {
    background: linear-gradient(135deg, #c77a91 0%, #b86d86 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 134, 156, 0.4);
    text-decoration: none;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .modern-navbar {
        padding: 0.5rem 0;
    }
    
    .brand-logo {
        font-size: 1.5rem;
    }
    
    .brand-tagline {
        font-size: 0.7rem;
    }
    
    .modern-navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 1rem 0;
        padding: 1rem 0;
        border-top: 1px solid rgba(212, 134, 156, 0.1);
        border-bottom: 1px solid rgba(212, 134, 156, 0.1);
    }
    
    .modern-nav-link {
        padding: 0.875rem 1rem;
        border-radius: 0;
        justify-content: flex-start;
    }
    
    .modern-nav-link.active::after {
        display: none;
    }
    
    .navbar-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
        margin-top: 1rem;
    }
    
    .action-link,
    .cart-action {
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        min-width: auto;
    }
    
    .action-text {
        font-size: 0.875rem;
    }
    
    .appointment-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .appointment-link {
        justify-content: center;
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        font-size: 1.375rem;
    }
    
    .banner-logo {
        max-width: 160px;
    }
    
    .appointment-actions {
        gap: 0.375rem;
    }
    
    .appointment-link {
        font-size: 0.8rem;
        padding: 0.75rem 0.875rem;
    }
    
    .appointment-link svg {
        width: 14px;
        height: 14px;
    }
}

/* Navbar Scroll Effect */
@media (min-width: 992px) {
    .modern-navbar.navbar-scrolled {
        padding: 0.375rem 0;
    }
    
    .modern-navbar.navbar-scrolled .brand-logo {
        font-size: 1.5rem;
    }
    
    .modern-navbar.navbar-scrolled .brand-tagline {
        font-size: 0.7rem;
    }
}

/* Update cart count reference for new navbar */
.cart-count-modern {
    display: none;
}

/* Override old navbar styles for modern navbar */
.modern-navbar .navbar-nav .nav-link {
    color: inherit !important;
    margin: 0 !important;
    padding: inherit !important;
}

.modern-navbar .navbar-nav .nav-link:hover {
    color: inherit !important;
}

.modern-navbar .navbar-nav .nav-link::after {
    display: none !important;
}
/* Responsive adjustments for no-slots horizontal layout (Bootstrap Override) */
@media (max-width: 768px) {
    .no-slots {
        flex-direction: column !important;
        text-align: center !important;
        padding: 1.25rem !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .no-slots-icon {
        margin-right: 0 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .no-slots-content {
        text-align: center !important;
        margin-bottom: 0.75rem !important;
    }
    
    .no-slots .btn {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 200px !important;
    }
}

@media (max-width: 480px) {
    .no-slots {
        padding: 1rem !important;
    }
    
    .no-slots-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.25rem !important;
    }
    
    .no-slots h4 {
        font-size: 1rem !important;
    }
    
    .no-slots p {
        font-size: 0.85rem !important;
    }
}
/* Fix for Time Slots Grid Layout */
.modern-time-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    gap: 0.75rem !important;
}

/* Responsive Time Grid */
@media (max-width: 768px) {
    .modern-time-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
        gap: 0.5rem !important;
    }
}

@media (max-width: 480px) {
    .modern-time-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }
}
/* Ensure no-slots is not affected by grid layout */
.modern-time-grid .no-slots {
    grid-column: 1 / -1 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 1.5rem !important;
}

/* Override any Bootstrap flex utilities that might conflict */
.no-slots.d-flex {
    display: flex !important;
}

.no-slots.flex-column {
    flex-direction: row !important;
}

.no-slots.text-center {
    text-align: left !important;
}

.no-slots .no-slots-content.text-center {
    text-align: left !important;
}

/* Mobile override for no-slots in grid */
@media (max-width: 768px) {
    .modern-time-grid .no-slots {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .no-slots .no-slots-content {
        text-align: center !important;
    }
}
/* Mobile Product Cards - Home Page */
@media (max-width: 576px) {
    /* Make home page product cards smaller on mobile */
    .services-section .col-6 .group {
        margin-bottom: 15px;
    }
    
    .services-section .col-6 .relative.h-48 {
        height: 140px !important;
    }
    
    .services-section .col-6 .p-5 {
        padding: 12px !important;
    }
    
    .services-section .col-6 .font-heading.text-base {
        font-size: 13px !important;
        line-height: 1.3;
        margin-bottom: 8px !important;
    }
    
    .services-section .col-6 .text-xs {
        font-size: 9px !important;
        margin-bottom: 8px !important;
    }
    
    .services-section .col-6 .text-lg {
        font-size: 15px !important;
    }
    
    .services-section .col-6 .text-sm {
        font-size: 11px !important;
    }
    
    .services-section .col-6 .flex.gap-2 {
        gap: 8px !important;
        flex-wrap: wrap;
    }
    
    .services-section .col-6 .view-details-btn {
        font-size: 10px !important;
        padding: 6px 10px !important;
    }
    
    .services-section .col-6 .add-to-cart {
        height: 32px !important;
        width: 32px !important;
        padding: 0 !important;
        min-width: 32px;
    }
    
    .services-section .col-6 .add-to-cart svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    /* Badge styles for mobile */
    .services-section .col-6 .absolute.top-2 {
        top: 8px !important;
        font-size: 9px !important;
        padding: 2px 6px !important;
    }
    
    .services-section .col-6 .absolute.top-2.left-2 {
        left: 8px !important;
    }
    
    .services-section .col-6 .absolute.top-2.right-2 {
        right: 8px !important;
    }
}
/* Mobile Service Cards - Home Page */
@media (max-width: 576px) {
    /* Make service cards smaller on mobile */
    .services-section-modern .col-6 .service-card-tailwind {
        padding: 15px !important;
        min-height: auto;
    }
    
    .services-section-modern .col-6 .service-icon-tailwind {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    
    .services-section-modern .col-6 .service-title-tailwind {
        font-size: 14px !important;
        line-height: 1.3;
        margin-bottom: 8px !important;
    }
    
    .services-section-modern .col-6 .service-description-tailwind {
        font-size: 11px !important;
        line-height: 1.4;
        margin-bottom: 10px !important;
    }
    
    .services-section-modern .col-6 .service-price-tailwind {
        font-size: 13px !important;
        font-weight: 600;
    }
}
/* Gallery Category Badge - Compact */
.gallery-category-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    background: rgba(0,0,0,0.3);
}

/* Gallery Overlay - More Compact */
.gallery-overlay-improved {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 15px 12px 12px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    opacity: 0;
}

.gallery-item-improved:hover .gallery-overlay-improved {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay-improved h6 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-weight: 600;
    color: white;
}

.gallery-overlay-improved p {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0;
    color: rgba(255,255,255,0.8);
}

/* Loading state for images */
.gallery-item-improved img[loading="lazy"] {
    background: #f8f9fa;
    background-image: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                      linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Updated Gallery Styles - Smaller and More User-Friendly */
.gallery-grid-improved {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 16px !important;
    margin-top: 30px;
}

.gallery-item-improved {
    position: relative;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06) !important;
    transition: all 0.3s ease;
    background: #fff;
    cursor: pointer;
}

.gallery-item-improved:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(212, 134, 156, 0.12) !important;
}

.gallery-item-improved img {
    width: 100%;
    height: 180px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item-improved:hover img {
    transform: scale(1.02) !important;
}

.gallery-category-badge {
    position: absolute;
    top: 0.75rem !important;
    right: 0.75rem !important;
    color: white;
    padding: 0.2rem 0.6rem !important;
    border-radius: 12px !important;
    font-size: 0.75rem !important;
    font-weight: 600;
    text-transform: capitalize;
    z-index: 2;
}

.gallery-overlay-improved {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem 1rem 1rem !important;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-overlay-improved h6 {
    font-size: 1rem !important;
    font-weight: 600;
    margin-bottom: 0.4rem !important;
    color: white;
}

.gallery-overlay-improved p {
    font-size: 0.85rem !important;
    opacity: 0.9;
    margin: 0;
}

/* Updated Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid-improved {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
        gap: 14px !important;
    }
    
    .gallery-item-improved img {
        height: 150px !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid-improved {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .gallery-item-improved img {
        height: 130px !important;
    }
    
    .gallery-category-badge {
        top: 0.5rem !important;
        right: 0.5rem !important;
        padding: 0.15rem 0.5rem !important;
        font-size: 0.7rem !important;
    }
    
    .gallery-overlay-improved {
        padding: 1rem 0.75rem 0.75rem !important;
    }
    
    .gallery-overlay-improved h6 {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .gallery-overlay-improved p {
        font-size: 0.8rem !important;
    }
}
/* Gallery Image Styles - No Inline CSS */
.gallery-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.gallery-image.loaded {
    opacity: 1;
}

.gallery-fallback {
    height: 160px;
    display: none;
    border-radius: 8px;
}

.gallery-fallback.show {
    display: flex !important;
}

.gallery-fallback-icon {
    color: #d4869c;
}

/* Home Page Gallery Styles */
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.home-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: #fff;
    cursor: pointer;
}

.home-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 134, 156, 0.1);
}

.home-gallery-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.home-gallery-item:hover .home-gallery-image {
    transform: scale(1.02);
}

/* Responsive adjustments for smaller frames */
@media (max-width: 768px) {
    .gallery-image,
    .gallery-fallback,
    .home-gallery-image {
        height: 140px;
    }
    
    .home-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-image,
    .gallery-fallback,
    .home-gallery-image {
        height: 120px;
    }
    
    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
/* Updated Gallery Improved Styles - Smaller Photo Frames */
.gallery-grid-improved {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 14px !important;
    margin-top: 30px;
}

.gallery-item-improved {
    position: relative;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease;
    background: #fff;
    cursor: pointer;
}

.gallery-item-improved:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(212, 134, 156, 0.1) !important;
}

.gallery-item-improved img {
    width: 100%;
    height: 160px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    cursor: pointer;
}

.gallery-item-improved:hover img {
    transform: scale(1.02) !important;
}

.gallery-category-badge {
    position: absolute;
    top: 0.5rem !important;
    right: 0.5rem !important;
    color: white;
    padding: 0.15rem 0.5rem !important;
    border-radius: 10px !important;
    font-size: 0.7rem !important;
    font-weight: 600;
    text-transform: capitalize;
    z-index: 2;
}

.gallery-overlay-improved {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem 0.75rem 0.75rem !important;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-overlay-improved h6 {
    font-size: 0.9rem !important;
    font-weight: 600;
    margin-bottom: 0.3rem !important;
    color: white;
}

.gallery-overlay-improved p {
    font-size: 0.8rem !important;
    opacity: 0.9;
    margin: 0;
}

/* Updated Responsive Gallery - Smaller Frames */
@media (max-width: 768px) {
    .gallery-grid-improved {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
        gap: 12px !important;
    }
    
    .gallery-item-improved img,
    .gallery-image,
    .gallery-fallback {
        height: 140px !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid-improved {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .gallery-item-improved img,
    .gallery-image,
    .gallery-fallback {
        height: 120px !important;
    }
    
    .gallery-category-badge {
        top: 0.25rem !important;
        right: 0.25rem !important;
        padding: 0.1rem 0.4rem !important;
        font-size: 0.65rem !important;
    }
}
/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Frontend - All Device Breakpoints
======================================== */

/* Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content h1,
    .banner-title-elegant {
        font-size: 4rem;
    }
    
    .section-title-modern h2 {
        font-size: 3rem;
    }
    
    .service-card-tailwind {
        padding: 2.5rem;
    }
    
    .gallery-grid-improved {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .home-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 18px;
    }
}

/* Large Devices (1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-content h1,
    .banner-title-elegant {
        font-size: 3.5rem;
    }
    
    .section-title-modern h2 {
        font-size: 2.5rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0 15px;
        font-size: 0.95rem;
    }
    
    .service-card-tailwind {
        padding: 2rem;
    }
    
    .gallery-grid-improved {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 18px;
    }
    
    .home-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 16px;
    }
}

/* Medium Devices (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content h1,
    .banner-title-elegant {
        font-size: 3rem;
    }
    
    .section-title-modern h2 {
        font-size: 2.2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0 12px;
        font-size: 0.9rem;
    }
    
    .service-card-tailwind {
        padding: 1.8rem;
    }
    
    .gallery-grid-improved {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 16px;
    }
    
    .home-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    
    .banner-slide-modern {
        min-height: 70vh;
    }
    
    .banner-main-image {
        max-height: 400px;
    }
}

/* Small Devices (768px to 991.98px) - Tablets */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    .hero-content h1,
    .banner-title-elegant {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .section-title-modern h2 {
        font-size: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-card-tailwind {
        padding: 1.5rem;
        text-align: center;
    }
    
    .gallery-grid-improved {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 14px;
    }
    
    .home-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .gallery-item-improved img,
    .home-gallery-image,
    .gallery-image {
        height: 140px;
    }
    
    .banner-slide-modern {
        min-height: 60vh;
        padding: 30px 0 20px 0;
    }
    
    .banner-content-modern {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .banner-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 300px;
    }
    
    .availability-badge {
        margin: 0 auto;
    }
    
    .banner-main-image {
        max-height: 300px;
    }
    
    /* Services Section Tablet */
    .services-section-modern {
        padding: 60px 0;
    }
    
    .section-title-modern {
        margin-bottom: 50px;
    }
    
    /* About Section Tablet */
    .about-section .grid {
        gap: 2rem;
    }
    
    /* Testimonials Tablet */
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Extra Small Devices (576px to 767.98px) - Large Phones */
@media (min-width: 576px) and (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    .hero-content h1,
    .banner-title-elegant {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .section-title-modern h2 {
        font-size: 1.8rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.3rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .service-card-tailwind {
        padding: 1.2rem;
        text-align: center;
    }
    
    .gallery-grid-improved {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item-improved img,
    .home-gallery-image,
    .gallery-image {
        height: 130px;
    }
    
    .banner-slide-modern {
        min-height: 50vh;
        padding: 25px 0 15px 0;
    }
    
    .min-vh-85 {
        min-height: 50vh !important;
    }
    
    .banner-content-modern {
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .banner-content-modern h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .btn-modern {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }
    
    .banner-main-image {
        max-height: 250px;
        object-fit: cover;
    }
    
    .banner-image-modern {
        margin-top: 0;
    }
    
    /* Services Section Large Phone */
    .services-section-modern {
        padding: 50px 0;
    }
    
    .section-title-modern {
        margin-bottom: 40px;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    /* Gallery Filters */
    .gallery-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .gallery-filter-btn {
        width: 200px;
        text-align: center;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Small Devices (up to 575.98px) - Small Phones */
@media (max-width: 575.98px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-content h1,
    .banner-title-elegant {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-title-modern h2 {
        font-size: 1.6rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-nav .nav-link {
        margin: 0.2rem 0;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .service-card-tailwind {
        padding: 1rem;
        text-align: center;
    }
    
    .service-title-tailwind {
        font-size: 1.1rem;
    }
    
    .service-description-tailwind {
        font-size: 0.8rem;
    }
    
    .gallery-grid-improved {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .gallery-item-improved img,
    .home-gallery-image,
    .gallery-image {
        height: 110px;
    }
    
    .banner-slide-modern {
        min-height: 45vh;
        padding: 15px 0 10px 0;
    }
    
    .min-vh-85 {
        min-height: 45vh !important;
    }
    
    .banner-content-modern {
        margin-bottom: 1rem;
        padding: 0 5px;
    }
    
    .banner-content-modern h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .banner-actions {
        gap: 10px;
    }
    
    .btn-modern {
        padding: 10px 15px;
        font-size: 0.8rem;
        width: 100%;
    }
    
    .banner-main-image {
        max-height: 200px;
        object-fit: cover;
    }
    
    .banner-image-modern {
        margin-top: 0;
    }
    
    /* Services Section Small Phone */
    .services-section-modern {
        padding: 40px 0;
    }
    
    .section-title-modern {
        margin-bottom: 30px;
    }
    
    .section-label {
        font-size: 0.75rem;
    }
    
    .section-description {
        font-size: 0.85rem;
    }
    
    /* Gallery Filters Small Phone */
    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
    }
    
    .gallery-filter-btn {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Gallery Category Badge */
    .gallery-category-badge {
        top: 0.25rem;
        right: 0.25rem;
        padding: 0.1rem 0.4rem;
        font-size: 0.65rem;
    }
    
    /* Modal Adjustments */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-xl {
        max-width: calc(100vw - 1rem);
    }
    
    /* Form Elements */
    .modern-select-input,
    .modern-date-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .modern-time-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.4rem;
    }
    
    /* Cart and Product Cards */
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-card .card-body {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
}

/* Ultra Small Devices (up to 375px) - Very Small Phones */
@media (max-width: 375px) {
    .hero-content h1,
    .banner-title-elegant {
        font-size: 1.6rem;
    }
    
    .section-title-modern h2 {
        font-size: 1.4rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .gallery-item-improved img,
    .home-gallery-image,
    .gallery-image {
        height: 100px;
    }
    
    .banner-slide-modern {
        min-height: 40vh;
        padding: 10px 0 5px 0;
    }
    
    .min-vh-85 {
        min-height: 40vh !important;
    }
    
    .banner-content-modern {
        margin-bottom: 0.8rem;
    }
    
    .banner-content-modern h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .banner-subtitle {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .btn-modern {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .banner-main-image {
        max-height: 180px;
    }
    
    .service-card-tailwind {
        padding: 0.8rem;
    }
    
    .service-title-tailwind {
        font-size: 1rem;
    }
    
    .gallery-grid-improved,
    .home-gallery-grid {
        gap: 6px;
    }
}

/* Landscape Orientation for Mobile Devices */
@media (max-width: 767.98px) and (orientation: landscape) {
    .banner-slide-modern {
        min-height: 70vh;
    }
    
    .banner-content-modern h1 {
        font-size: 2rem;
    }
    
    .gallery-item-improved img,
    .home-gallery-image,
    .gallery-image {
        height: 120px;
    }
    
    .navbar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .navbar-nav .nav-link {
        margin: 0.2rem 0.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .modal,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators-modern {
        display: none !important;
    }
    
    .container {
        max-width: 100% !important;
    }
    
    .hero-content h1,
    .section-title-modern h2 {
        color: #000 !important;
    }
    
    .service-card-tailwind,
    .gallery-item-improved {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gallery-item-improved img,
    .home-gallery-image,
    .banner-main-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .carousel-fade .carousel-item {
        transition: none !important;
    }
    
    .gallery-item-improved:hover,
    .service-card-tailwind:hover {
        transform: none !important;
    }
}

/* DISABLED - Dark Mode Support - Force Light Theme Only */
/* @media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #f8f9fa;
        --text-light: #adb5bd;
        --white: #212529;
        --cream: #343a40;
    }
    
    body {
        background-color: var(--cream);
        color: var(--text-dark);
    }
    
    .navbar {
        background: rgba(33, 37, 41, 0.98) !important;
    }
    
    .service-card-tailwind,
    .gallery-item-improved {
        background: #495057;
        border-color: #6c757d;
    }
} */
/* Mobile Gallery Detail Margin Fix */

/* Gallery Section Mobile Spacing */
.gallery-section {
    padding: 20px 0 40px;
    background: #fdf8f5;
}

@media (max-width: 767.98px) {
    .gallery-section {
        padding: 15px 0 30px;
    }
    
    .gallery-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 575.98px) {
    .gallery-section {
        padding: 10px 0 20px;
    }
    
    .gallery-section .container {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Gallery Filters Mobile Fix */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

@media (max-width: 767.98px) {
    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-filters {
        gap: 0.3rem;
        margin-bottom: 1rem;
        padding: 0;
    }
}

/* Gallery Filter Buttons Mobile */
.gallery-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    white-space: nowrap;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .gallery-filter-btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        border-radius: 20px;
        margin: 0;
    }
}

@media (max-width: 575.98px) {
    .gallery-filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 15px;
    }
}

/* Gallery Grid Mobile Spacing Fix */
.gallery-grid-improved {
    margin-top: 2rem;
}

@media (max-width: 767.98px) {
    .gallery-grid-improved {
        margin-top: 1.5rem;
        gap: 10px !important;
    }
}

@media (max-width: 575.98px) {
    .gallery-grid-improved {
        margin-top: 1rem;
        gap: 8px !important;
    }
}

/* Gallery Item Mobile Spacing */
.gallery-item-improved {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .gallery-item-improved {
        border-radius: 6px !important;
    }
}

@media (max-width: 575.98px) {
    .gallery-item-improved {
        border-radius: 4px !important;
    }
}

/* Gallery Empty State Mobile */
.gallery-empty-improved {
    padding: 3rem 1rem;
    text-align: center;
}

@media (max-width: 767.98px) {
    .gallery-empty-improved {
        padding: 2rem 0.8rem;
    }
    
    .gallery-empty-improved i {
        font-size: 3rem;
    }
    
    .gallery-empty-improved h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .gallery-empty-improved {
        padding: 1.5rem 0.5rem;
    }
    
    .gallery-empty-improved i {
        font-size: 2.5rem;
    }
    
    .gallery-empty-improved h4 {
        font-size: 1.2rem;
    }
}

/* Hero Section Mobile Gallery Page */
.hero-section {
    padding: 80px 0 60px;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0 40px;
        min-height: 40vh !important;
    }
    
    .hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 40px 0 30px;
        min-height: 35vh !important;
    }
    
    .hero-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-section .lead {
        font-size: 0.9rem;
    }
}

/* CTA Section Mobile Gallery Page */
.about-section {
    padding: 80px 0;
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-section .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-section .d-flex {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .about-section .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .about-section h2 {
        font-size: 1.6rem;
    }
    
    .about-section .lead {
        font-size: 0.9rem;
    }
    
    .about-section .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Gallery Modal Mobile Fix */
@media (max-width: 575.98px) {
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100vw - 1rem);
    }
    
    .modal-xl {
        max-width: calc(100vw - 1rem);
    }
    
    .modal-header {
        padding: 0.8rem;
    }
    
    .modal-body {
        padding: 0.5rem;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    #galleryModalImage {
        max-height: 60vh;
        width: 100%;
        object-fit: contain;
    }
    
    #galleryModalDescription {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
}

/* Remove Extra Margins on Mobile */
@media (max-width: 575.98px) {
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col-lg-8,
    .col-md-6,
    .col-sm-12 {
        padding-left: 0;
        padding-right: 0;
    }
    
    .fade-in {
        margin-bottom: 0;
    }
}

/* Gallery Page Specific Mobile Fixes */
.gallery-page-mobile-fix {
    overflow-x: hidden;
}

@media (max-width: 575.98px) {
    body.gallery-page {
        overflow-x: hidden;
    }
    
    .container-fluid {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .gallery-section .row {
        margin: 0;
    }
    
    .gallery-section .col-lg-8 {
        padding: 0;
    }
}

/* Fix for Gallery Filter Button Spacing */
@media (max-width: 575.98px) {
    .gallery-filters .gallery-filter-btn:not(:last-child) {
        margin-bottom: 0;
    }
    
    .gallery-filters .gallery-filter-btn + .gallery-filter-btn {
        margin-top: 0;
    }
}

/* Pagination Mobile Fix */
.pagination {
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 575.98px) {
    .pagination {
        margin-top: 1.5rem;
    }
    
    .pagination .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        margin: 0 0.1rem;
    }
    
    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        border-radius: 0.25rem;
    }
}

/* ===== DARK MODE OVERRIDE & SPACING FIXES ===== */

/* ===== FORCE LIGHT THEME - NO DARK MODE ===== */

/* Force Light Theme - Override Any Dark Mode Preferences */
@media (prefers-color-scheme: dark) {
    :root {
        /* Override dark mode - force light theme */
        --text-dark: #2c2c2c !important;
        --text-light: #666 !important;
        --white: #ffffff !important;
        --cream: #f9f6f3 !important;
        --light-pink: #fdf8f5 !important;
    }
    
    body {
        background-color: var(--cream) !important;
        color: var(--text-dark) !important;
    }
    
    .navbar {
        background: rgba(255, 255, 255, 0.98) !important;
    }
    
    .modern-navbar {
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    /* Force white backgrounds for all cards */
    .service-card-tailwind,
    .gallery-item-improved,
    .testimonial-card,
    .group,
    .product-card,
    .product-card-modern {
        background: white !important;
        color: var(--text-dark) !important;
        border-color: #e5e7eb !important;
    }
    
    /* Force correct text colors */
    .service-card-tailwind h3,
    .service-card-tailwind p,
    .testimonial-card h5,
    .testimonial-card p,
    .group h3,
    .group p {
        color: var(--text-dark) !important;
    }
    
    /* Ensure service descriptions are gray */
    .service-description-tailwind {
        color: #6b7280 !important;
    }
    
    /* Ensure prices are pink */
    .service-price-tailwind,
    .text-primary {
        color: var(--primary-color) !important;
    }
}

/* Fix Page Content Spacing - Remove Excessive Top Padding */
.page-content {
    padding-top: 80px !important; /* Reduced from 100px */
}

/* Gallery Page Specific Fixes - REMOVED (now using gallery-hero-header class) */

.services-section-modern {
    background: #fafafa !important;
}

.footer {
    background: #f5f0f0 !important; /* Light pink/cream background */
}

/* Ensure consistent container spacing */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}
/* ===== MOBILE PRODUCT CARD IMPROVEMENTS ===== */

/* Better Mobile Product Card Spacing */
@media (max-width: 768px) {
    /* Product cards - more breathing room */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
        padding: 0 0.5rem;
    }
    
    .group {
        background: white !important;
        border: 1px solid #f0f0f0 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        margin-bottom: 1.2rem !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    }
    
    .relative.h-48 {
        height: 160px !important; /* Increased from 140px */
    }
    
    .p-5 {
        padding: 1.25rem !important; /* Increased padding */
    }
    
    .font-heading.text-base {
        font-size: 0.95rem !important; /* Slightly larger */
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
        font-weight: 600 !important;
    }
    
    .text-xs {
        font-size: 0.8rem !important; /* Slightly larger */
        margin-bottom: 0.5rem !important;
        color: #6b7280 !important;
    }
    
    .text-lg {
        font-size: 1.1rem !important; /* Larger price text */
        font-weight: 700 !important;
        color: var(--primary-color) !important;
    }
    
    .text-sm {
        font-size: 0.85rem !important;
        color: #6b7280 !important;
    }
    
    /* Better button spacing */
    .gap-2 {
        gap: 0.75rem !important;
    }
    
    .h-9 {
        height: 2.25rem !important; /* Taller buttons */
        padding: 0.5rem 0.75rem !important;
        font-size: 0.8rem !important;
        font-weight: 500 !important;
    }
    
    /* Service cards mobile improvements */
    .service-card-tailwind {
        padding: 1.75rem 1.25rem !important; /* More padding */
        margin-bottom: 1.25rem !important;
        background: white !important;
        border: 1px solid #f0f0f0 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
    }
    
    .service-icon-tailwind {
        height: 3rem !important; /* Larger icons */
        width: 3rem !important;
        font-size: 1.5rem !important;
        margin-bottom: 1.25rem !important;
        background: rgba(232, 180, 203, 0.15) !important;
    }
    
    .service-title-tailwind {
        font-size: 1.1rem !important; /* Larger titles */
        margin-bottom: 0.75rem !important;
        font-weight: 600 !important;
        color: var(--text-dark) !important;
        line-height: 1.3 !important;
    }
    
    .service-description-tailwind {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1rem !important;
        min-height: auto !important;
        color: #6b7280 !important;
    }
    
    .service-price-tailwind {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: var(--primary-color) !important;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens - maintain 2 columns but optimize spacing */
    .services-section-modern .row {
        margin: 0 !important;
    }
    
    .services-section-modern .col-lg-4 {
        padding: 0 0.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Products stay 2 columns but with optimized spacing */
    .products-grid {
        gap: 1rem !important;
        padding: 0 0.25rem !important;
    }
    
    .p-5 {
        padding: 1rem !important;
    }
    
    .font-heading.text-base {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }
    
    .text-lg {
        font-size: 1rem !important;
    }
    
    .relative.h-48 {
        height: 140px !important;
    }
}

/* ===== SECTION TITLE IMPROVEMENTS ===== */

/* Better section title spacing and typography */
.section-title-modern {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-title-modern h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-dark) !important;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    display: block !important; /* Force block display */
    width: 100% !important;
}

.section-description {
    font-size: 1rem;
    color: var(--text-light) !important;
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block !important; /* Force block display */
    width: 100% !important;
    margin-top: 15px !important; /* Add space between title and description */
}

/* Regular section title (non-modern) */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 1rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    margin-bottom: 20px;
    line-height: 1.2;
    display: block !important;
    width: 100% !important;
}

.section-title p {
    font-size: 1rem;
    color: var(--text-light) !important;
    line-height: 1.7;
    margin-bottom: 0;
    display: block !important;
    width: 100% !important;
    margin-top: 15px !important;
}

@media (max-width: 768px) {
    .section-title-modern {
        margin-bottom: 40px;
        padding: 0 1rem; /* More padding on mobile */
    }
    
    .section-title-modern h2 {
        font-size: 2rem !important; /* Larger on mobile */
        margin-bottom: 20px;
        line-height: 1.3;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        white-space: normal !important; /* Allow text wrapping */
    }
    
    .section-description {
        font-size: 1rem; /* Keep readable size */
        line-height: 1.6;
        padding: 0 0.5rem;
        margin-top: 20px !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        white-space: normal !important;
    }
    
    .section-label {
        font-size: 0.85rem;
        margin-bottom: 15px;
        letter-spacing: 1.5px;
        display: block !important;
        width: 100% !important;
    }
    
    /* Regular section title mobile */
    .section-title {
        margin-bottom: 40px;
        padding: 0 1rem;
    }
    
    .section-title h2 {
        font-size: 1.9rem !important;
        margin-bottom: 20px;
        line-height: 1.3;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        white-space: normal !important;
    }
    
    .section-title p {
        font-size: 1rem;
        line-height: 1.6;
        margin-top: 20px !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        white-space: normal !important;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .section-title-modern h2 {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 15px;
        display: block !important;
        width: 100% !important;
        padding: 0 0.5rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        padding: 0 0.25rem;
        margin-top: 15px !important;
        display: block !important;
        width: 100% !important;
    }
    
    .section-title h2 {
        font-size: 1.7rem !important;
        line-height: 1.2;
        margin-bottom: 15px;
        display: block !important;
        width: 100% !important;
        padding: 0 0.5rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
        margin-top: 15px !important;
        display: block !important;
        width: 100% !important;
        padding: 0 0.25rem;
    }
}

/* ===== TESTIMONIALS SECTION IMPROVEMENTS ===== */

.testimonials-section {
    padding: 80px 0;
    background: white !important; /* Force white background */
}

.testimonial-card {
    background: white !important;
    border: 1px solid #f0f0f0 !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    height: 100% !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease !important;
    color: var(--text-dark) !important;
}

.testimonial-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.15) !important;
}

.testimonial-card .stars {
    margin-bottom: 1.5rem !important;
}

.testimonial-card .stars i {
    color: #ffc107 !important;
    font-size: 1rem !important;
    margin-right: 0.25rem !important;
}

.testimonial-card p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    color: var(--text-dark) !important;
    margin-bottom: 1.5rem !important;
    font-style: italic !important;
}

.testimonial-card .client-info {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
}

.testimonial-card .client-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}

.testimonial-card .client-details h5 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin-bottom: 0.25rem !important;
}

.testimonial-card .client-details span {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0 !important;
    }
    
    .testimonial-card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .testimonial-card p {
        font-size: 0.95rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .testimonial-card .client-avatar {
        width: 45px !important;
        height: 45px !important;
    }
    
    .testimonial-card .client-details h5 {
        font-size: 0.95rem !important;
    }
    
    .testimonial-card .client-details span {
        font-size: 0.8rem !important;
    }
}

/* ===== ABOUT SECTION IMPROVEMENTS ===== */

.about-section {
    padding: 80px 0;
    background: #fafafa !important; /* Light background */
}

/* About Section Image - Landscape Style */
.about-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-image-landscape {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

/* Desktop - taller landscape */
@media (min-width: 1024px) {
    .about-image-landscape {
        height: 400px;
    }
}

/* Tablet - medium landscape */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-image-landscape {
        height: 350px;
    }
}

/* Mobile - shorter landscape */
@media (max-width: 767px) {
    .about-image-landscape {
        height: 250px;
    }
}

/* Small mobile - compact landscape */
@media (max-width: 575px) {
    .about-image-landscape {
        height: 220px;
    }
}

/* Very small mobile */
@media (max-width: 375px) {
    .about-image-landscape {
        height: 200px;
    }
}

.about-section .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-section .space-y-6 > * + * {
    margin-top: 1.5rem;
}

.about-section .grid.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1rem;
}

.about-section h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    line-height: 1.2;
    margin-bottom: 1rem;
    display: block !important; /* Force block display */
    width: 100% !important;
}

.about-section p {
    color: var(--text-light) !important;
    line-height: 1.7;
    font-size: 1rem;
    display: block !important; /* Force block display */
    width: 100% !important;
    margin-top: 15px !important;
}

.about-section .text-3xl {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    font-family: var(--font-heading);
}

.about-section .text-sm {
    font-size: 0.9rem;
    color: var(--text-light) !important;
    font-weight: 500;
}

/* Tailwind-like utility classes for about section */
.text-3xl {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    display: block !important;
    width: 100% !important;
}

.md\:text-4xl {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
}

.text-foreground {
    color: var(--text-dark) !important;
}

.text-muted-foreground {
    color: var(--text-light) !important;
}

.leading-relaxed {
    line-height: 1.7 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.uppercase {
    text-transform: uppercase !important;
}

.tracking-widest {
    letter-spacing: 0.1em !important;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0 !important;
    }
    
    .about-section .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-section h2 {
        font-size: 1.9rem !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .about-section p {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 20px !important;
        padding: 0 1rem;
    }
    
    .text-3xl {
        font-size: 2rem !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .md\:text-4xl {
        font-size: 2rem !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .about-section .grid.grid-cols-3 {
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-section h2 {
        font-size: 1.7rem !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        line-height: 1.3 !important;
        padding: 0 0.5rem;
    }
    
    .about-section p {
        font-size: 0.95rem !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 0 0.5rem;
    }
    
    .text-3xl {
        font-size: 1.8rem !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }
    
    .md\:text-4xl {
        font-size: 1.8rem !important;
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        line-height: 1.3 !important;
    }
    
    .about-section .grid.grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== FORCE PROPER TEXT LAYOUT - NO INLINE TEXT ===== */

/* Ensure all headings and paragraphs are block elements */
h1, h2, h3, h4, h5, h6 {
    display: block !important;
    width: 100% !important;
}

p {
    display: block !important;
    width: 100% !important;
}

/* Specific fixes for section titles */
.section-title h2,
.section-title-modern h2,
.about-section h2 {
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

.section-title p,
.section-title-modern .section-description,
.about-section p {
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

/* Mobile specific text layout fixes */
@media (max-width: 768px) {
    /* Force all text to be block and full width */
    h1, h2, h3, h4, h5, h6, p, span.text-3xl, span.md\:text-4xl {
        display: block !important;
        width: 100% !important;
        clear: both !important;
        float: none !important;
    }
    
    /* Ensure proper spacing between elements */
    .section-title h2 + p,
    .section-title-modern h2 + .section-description,
    .about-section h2 + p {
        margin-top: 20px !important;
    }
    
    /* Fix any potential flexbox issues */
    .section-title,
    .section-title-modern,
    .about-section .space-y-6 {
        display: block !important;
        flex-direction: column !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - ensure no inline text */
    * {
        white-space: normal !important;
    }
    
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}

/* ===== FORCE WHITE BACKGROUNDS ===== */

/* Ensure all cards have white backgrounds */
.group,
.service-card-tailwind,
.testimonial-card,
.product-card,
.product-card-modern {
    background: white !important;
    color: var(--text-dark) !important;
}

/* Ensure text colors are correct */
.group h3,
.group p,
.service-card-tailwind h3,
.service-card-tailwind p,
.testimonial-card h5,
.testimonial-card p {
    color: inherit !important;
}

/* Price colors should be pink */
.text-primary,
.service-price-tailwind,
.current-price {
    color: var(--primary-color) !important;
}

/* =====================================================
   TREATMENT SUITABILITY SECTION
   ===================================================== */
.suitability-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fdf6f9 0%, #fff5f8 50%, #fdf6f9 100%);
}

.suitability-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(232, 180, 203, 0.2);
    overflow: hidden;
    border: 1px solid rgba(232, 180, 203, 0.3);
}

.suitability-header {
    background: linear-gradient(135deg, #e8b4cb 0%, #d4869c 100%);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.suitability-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.suitability-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: white;
    font-family: var(--font-heading);
}

.suitability-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    color: white;
}

.suitability-body {
    padding: 2.5rem;
}

.suitability-intro {
    font-size: 1.05rem;
    color: #d4869c;
    font-weight: 600;
    margin-bottom: 1.8rem;
    padding: 1rem 1.5rem;
    background: #fff5f8;
    border-radius: 0.75rem;
    border-left: 4px solid #e8b4cb;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: #fdf6f9;
    border-radius: 0.75rem;
    border: 1px solid rgba(232, 180, 203, 0.2);
    transition: all 0.2s ease;
    height: 100%;
}

.condition-item:hover {
    background: #fff0f5;
    border-color: #e8b4cb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 180, 203, 0.2);
}

.condition-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e8b4cb, #d4869c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.condition-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.suitability-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 180, 203, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.suitability-note {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.suitability-link {
    color: #d4869c;
    font-weight: 600;
    text-decoration: none;
}

.suitability-link:hover {
    color: #e8b4cb;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .suitability-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .suitability-title {
        font-size: 1.4rem;
    }

    .suitability-body {
        padding: 1.5rem;
    }

    .suitability-footer {
        flex-direction: column;
        text-align: center;
    }

    .suitability-footer .btn {
        width: 100%;
    }
}

/* =====================================================
   WHY US SECTION
   ===================================================== */
.why-us-section {
    padding: 0;
    background: white;
    overflow: hidden;
}

.why-us-left {
    padding: 4rem 3rem 4rem 4rem;
    max-width: 560px;
    width: 100%;
}

.why-us-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fdf0f5, #ffe4ef);
    color: #d4869c;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    border: 1px solid rgba(232, 180, 203, 0.4);
    margin-bottom: 1.2rem;
}

.why-us-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d2d2d;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
}

.why-us-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Right panel — frosted/soft background matching the image */
.why-us-services-panel {
    background: linear-gradient(135deg, #f5f0f3 0%, #ede8ec 50%, #e8e2e7 100%);
    padding: 3.5rem 2.5rem;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Service group (Lash / Brow) */
.why-us-service-group {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1rem;
    padding: 1.5rem 1.4rem;
    height: 100%;
}

.why-us-service-group-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8b4cb, #d4869c);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.why-us-group-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.why-us-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-us-service-list li {
    font-size: 0.92rem;
    font-weight: 600;
    color: #3a3a3a;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(232, 180, 203, 0.2);
    line-height: 1.4;
}

.why-us-service-list li:last-child {
    border-bottom: none;
}

/* Feature mini-cards at the bottom */
.why-us-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 0.85rem;
    padding: 1.1rem 1rem;
    height: 100%;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    background: white;
    border-color: #e8b4cb;
    box-shadow: 0 8px 24px rgba(232, 180, 203, 0.25);
    transform: translateY(-3px);
}

.why-us-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8b4cb, #d4869c);
    border-radius: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.why-us-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0.35rem;
}

.why-us-card-text {
    font-size: 0.78rem;
    color: #777;
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 991.98px) {
    .why-us-left {
        padding: 3rem 1.5rem 2rem 1.5rem;
    }
    .why-us-services-panel {
        min-height: auto;
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-us-title {
        font-size: 1.6rem;
    }
    .why-us-left {
        padding: 2.5rem 1rem 1.5rem 1rem;
    }
    .why-us-services-panel {
        padding: 2rem 1rem;
    }
}

/* =====================================================
   SERVICES SHOWCASE SECTION
   ===================================================== */
.showcase-section {
    padding: 5rem 0;
    background: #fafafa;
}

/* 2×2 collage grid */
.showcase-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 450px !important;
    max-height: 450px !important;
    min-height: 450px !important;
    gap: 10px;
    padding: 15px;
    overflow: visible;
}

.collage-cell {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collage-cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.collage-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
    border-radius: 20px;
}

.collage-cell:hover img {
    transform: scale(1.06);
}

/* Content side */
.showcase-content {
    padding: 2rem 2.5rem 2rem 2.5rem !important;
    width: 100%;
}

.showcase-block:nth-child(even) .showcase-content {
    padding: 2rem 2.5rem 2rem 2.5rem !important;
}

.showcase-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fdf0f5, #ffe4ef);
    color: #d4869c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 2rem;
    border: 1px solid rgba(232, 180, 203, 0.4);
    margin-bottom: 1rem;
}

.showcase-intro {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Individual sub-service items */
.showcase-services {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.8rem;
}

.showcase-service-item {
    border-left: 3px solid rgba(232, 180, 203, 0.5);
    padding-left: 1rem;
    transition: border-color 0.2s ease;
}

.showcase-service-item:hover {
    border-left-color: #e8b4cb;
}

.showcase-service-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.showcase-service-title .fa-hashtag {
    color: #e8b4cb;
    font-size: 0.85rem;
}

.showcase-service-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.showcase-cta-link {
    display: inline-flex;
    align-items: center;
    background: var(--gradient);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.showcase-cta-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.4);
}

/* Alternating block backgrounds */
.showcase-block:nth-child(odd) {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.showcase-block:nth-child(even) {
    background: #fdf6f9;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(232, 180, 203, 0.1);
    margin-bottom: 2rem;
}

/* ===== AIRBRUSH PROMO BLOCK ===== */
.airbrush-promo-block {
    background: linear-gradient(135deg, #e8b4cb 0%, #d4869c 100%);
    border-radius: 1rem;
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.airbrush-image-wrap {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.airbrush-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: transform 0.5s ease;
}

.airbrush-promo-block:hover .airbrush-image-wrap img {
    transform: scale(1.04);
}

.airbrush-content {
    padding: 1.75rem 2rem;
    color: #2c2c2c;
}

.airbrush-sparkle {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.airbrush-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.airbrush-desc {
    font-size: 0.88rem;
    color: rgba(44, 44, 44, 0.85);
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.airbrush-bullets-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.4rem;
    margin-top: 0.1rem;
}

.airbrush-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 0.6rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.airbrush-bullets li {
    font-size: 0.82rem;
    color: rgba(44, 44, 44, 0.9);
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.airbrush-bullets li .fa-check-circle {
    color: #ffffff;
    flex-shrink: 0;
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .showcase-collage {
        height: 380px !important;
        max-height: 380px !important;
        min-height: 380px !important;
        gap: 8px;
        padding: 12px;
    }
    .collage-cell {
        border-radius: 16px;
    }
    .showcase-content,
    .showcase-block:nth-child(even) .showcase-content {
        padding: 1.75rem 1.5rem !important;
    }
    .airbrush-content {
        padding: 1.5rem 1.25rem;
    }
    .airbrush-image-wrap {
        min-height: 280px;
    }
    .airbrush-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .showcase-section {
        padding: 3rem 0;
    }
    .showcase-collage {
        height: 320px !important;
        max-height: 320px !important;
        min-height: 320px !important;
        gap: 6px;
        padding: 10px;
    }
    .collage-cell {
        border-radius: 14px;
    }
    .airbrush-image-wrap {
        min-height: 220px;
    }
    .airbrush-title {
        font-size: 1.15rem;
    }
    .airbrush-desc {
        font-size: 0.85rem;
    }
    .airbrush-content {
        padding: 1.25rem 1rem;
    }
}

/* =====================================================
   SERVICE CARD - CLICKABLE WITH HOVER
   ===================================================== */
.service-card-link {
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(232, 180, 203, 0.35);
    border-color: #e8b4cb;
}

.service-card-link:hover .btn-service-book {
    background: linear-gradient(135deg, #d4869c, #c4708a);
    color: white;
}

.service-card-link:hover .service-name {
    color: #d4869c;
}

/* Ensure nested link in service actions doesn't create double button */
a.service-card-link .service-actions {
    position: relative;
    z-index: 2;
}

a.service-card-link .service-actions a.btn-service-book {
    position: relative;
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

a.service-card-link .service-actions a.btn-service-book:hover {
    background: linear-gradient(135deg, #d4869c, #c4708a);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 180, 203, 0.3);
}

/* =====================================================
   GALLERY PAGE - HEADER & LAYOUT
   ===================================================== */
.gallery-hero-header {
    background: linear-gradient(135deg, #fdf8f5 0%, #f9f6f3 100%);
    padding: 50px 0 25px;
    text-align: center;
    overflow-x: hidden;
}

.gallery-hero-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.gallery-hero-header .lead {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Override gallery-section padding for gallery page */
.gallery-section {
    padding: 20px 0 40px;
    background: #fdf8f5;
    overflow-x: hidden;
}

.gallery-section .gallery-filters {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .gallery-hero-header {
        padding: 25px 0 15px;
    }

    .gallery-hero-header h1 {
        font-size: 1.8rem;
    }

    .gallery-section {
        padding: 15px 0 30px;
    }

    .gallery-section .gallery-filters {
        margin-bottom: 1rem;
    }
}

/* =====================================================
   ABOUT PAGE - HEADER SPACING FIX
   ===================================================== */
.about-page-main {
    flex: 1;
}

.about-page-header {
    padding: 120px 0 35px; /* Increased top padding to clear navbar */
    text-align: center;
}

@media (max-width: 768px) {
    .about-page-header {
        padding: 100px 0 20px; /* Adjusted for mobile navbar */
    }
}

/* =====================================================
   SERVICES NAV DROPDOWN
   ===================================================== */
.nav-dropdown-item {
    position: relative;
}

.nav-dropdown-arrow {
    margin-left: 4px;
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.nav-dropdown-item:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid rgba(232, 180, 203, 0.25);
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    z-index: 9999;
    animation: dropdownFadeIn 0.15s ease;
}

/* Create invisible bridge between nav item and dropdown */
.nav-dropdown-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    display: none;
}

.nav-dropdown-item:hover::after {
    display: block;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Arrow pointer */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-left: 1px solid rgba(232, 180, 203, 0.25);
    border-top: 1px solid rgba(232, 180, 203, 0.25);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-item:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
    display: block;
}

/* Ensure dropdown stays visible during transition */
.nav-dropdown-item .nav-dropdown-menu {
    pointer-events: auto;
}

.nav-dropdown-item {
    position: relative;
}

.nav-dropdown-link {
    display: block;
    padding: 0.65rem 1.2rem;
    color: #444;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.15s ease;
    white-space: nowrap;
    cursor: pointer;
}

.nav-dropdown-link:hover {
    background: #fdf0f5;
    color: #d4869c;
    text-decoration: none;
    padding-left: 1.5rem;
}

.nav-dropdown-link:active {
    background: #fce4ed;
    color: #d4869c;
}

.nav-dropdown-link i {
    color: #e8b4cb;
    font-size: 0.75rem;
}

.nav-dropdown-divider {
    height: 1px;
    background: rgba(232, 180, 203, 0.2);
    margin: 0.35rem 0;
}

/* Subcategory styling */
.nav-dropdown-link[style*="padding-left: 2.5rem"] {
    font-size: 0.825rem;
    color: #666;
    background: rgba(232, 180, 203, 0.03);
}

.nav-dropdown-link[style*="padding-left: 2.5rem"]:hover {
    background: rgba(232, 180, 203, 0.08);
    color: #d4869c;
    padding-left: 2.75rem !important;
}

.nav-dropdown-link[style*="padding-left: 2.5rem"] i {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Mobile dropdown */
@media (max-width: 991.98px) {
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 3px solid #e8b4cb;
        border-radius: 0;
        background: #fdf6f9;
        padding: 0;
        margin: 0.25rem 0 0.5rem 1rem;
        animation: none;
        display: none;
        width: 100%;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-item.open > .nav-dropdown-menu {
        display: block !important;
    }

    .nav-dropdown-item:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown-item.open:hover .nav-dropdown-menu {
        display: block !important;
    }

    .nav-dropdown-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        display: block;
        color: #555;
    }

    .nav-dropdown-link:hover {
        padding-left: 1.25rem;
        background: #f5e8ef;
        color: #d4869c;
    }

    .nav-dropdown-divider {
        display: block;
        height: 1px;
        background: rgba(232, 180, 203, 0.3);
        margin: 0.25rem 0;
    }
}


/* ===== WHO WE ARE SECTION ===== */
.who-we-are-section {
    padding: 90px 0;
    background: white;
}

/* Image */
.who-we-are-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(232, 180, 203, 0.2);
}

.who-we-are-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.who-we-are-image-wrap:hover .who-we-are-img {
    transform: scale(1.04);
}

/* Floating badge */
.who-we-are-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c2c2c;
}

.who-we-are-badge i {
    color: #e8b4cb;
    font-size: 1rem;
}

/* Content */
.who-we-are-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #e8b4cb;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.who-we-are-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.who-we-are-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Highlights */
.who-we-are-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.who-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

.who-highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(232, 180, 203, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.who-highlight-icon i {
    color: #e8b4cb;
    font-size: 0.95rem;
}

/* Button */
.who-we-are-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    background: #e8b4cb;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 180, 203, 0.4);
}

.who-we-are-btn:hover {
    background: #d4a0b8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 203, 0.5);
}

/* Responsive */
@media (max-width: 991.98px) {
    .who-we-are-section {
        padding: 60px 0;
    }

    .who-we-are-img {
        height: 320px;
    }

    .who-we-are-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .who-we-are-section {
        padding: 50px 0;
    }

    .who-we-are-img {
        height: 260px;
    }

    .who-we-are-title {
        font-size: 1.5rem;
    }
}


/* ===== TOPBAR + NAVBAR SPACING FINAL OVERRIDE ===== */
/* Desktop: topbar(36px) + navbar(76px) = 112px */
body { padding-top: 112px !important; }

/* Tablet/Mobile: topbar(36px) + navbar(60px) = 96px */
@media (max-width: 991.98px) {
    body { padding-top: 110px !important; }
}

/* Extra padding for smaller mobile screens */
@media (max-width: 767.98px) {
    body { padding-top: 120px !important; }
}

@media (max-width: 575.98px) {
    body { padding-top: 130px !important; }
}

/* Remove any extra margin/padding from first section */
.banner-section { margin-top: 0 !important; }
.hero-section   { margin-top: 0 !important; }
main            { padding-top: 0 !important; }


/* ===== MOVED FROM app.blade.php INLINE STYLES ===== */

/* Force light theme - disable all dark mode */
* { color-scheme: light !important; }

body {
    background-color: #f9f6f3 !important;
    color: #2c2c2c !important;
}

/* Force white backgrounds for cards */
.service-card-tailwind,
.testimonial-card,
.group,
.product-card,
.product-card-modern,
.gallery-item-improved {
    background: white !important;
    color: #2c2c2c !important;
    border-color: #f0f0f0 !important;
}

.service-card-tailwind {
    background: white !important;
    border: 1px solid #e5e7eb !important;
}

.service-card-tailwind:hover {
    background: white !important;
    box-shadow: 0 20px 25px -5px rgba(232, 180, 203, 0.1), 0 10px 10px -5px rgba(232, 180, 203, 0.04) !important;
}

.service-title-tailwind  { color: #2c2c2c !important; }
.service-description-tailwind { color: #6b7280 !important; }
.service-price-tailwind  { color: #e8b4cb !important; }

/* Testimonials */
.testimonials-section    { background: white !important; }
.testimonial-card        { background: white !important; color: #2c2c2c !important; }
.testimonial-card h5     { color: #2c2c2c !important; }
.testimonial-card p      { color: #2c2c2c !important; }
.testimonial-card span   { color: #666 !important; }

/* About section */
.about-section           { background: #fafafa !important; }
.about-section h2        { color: #2c2c2c !important; }
.about-section p         { color: #666 !important; }

/* Bootstrap primary overrides */
.bg-primary, .btn-primary {
    background-color: #e8b4cb !important;
    border-color: #e8b4cb !important;
    color: white !important;
}
.bg-primary:hover, .btn-primary:hover {
    background-color: rgba(232, 180, 203, 0.9) !important;
    border-color: rgba(232, 180, 203, 0.9) !important;
    color: white !important;
}
.btn-primary:focus, .btn-primary:active {
    background-color: #d4a574 !important;
    border-color: #d4a574 !important;
    box-shadow: 0 0 0 0.2rem rgba(232, 180, 203, 0.25) !important;
}

.text-primary, [class*="text-primary"] { color: #e8b4cb !important; }
.text-primary svg { color: #e8b4cb !important; stroke: #e8b4cb !important; }

/* Highlights */
.text-highlight, .brand-highlight { color: #e8b4cb !important; }

/* Navbar */
.modern-nav-link:hover, .modern-nav-link.active {
    color: #e8b4cb !important;
    background: rgba(232, 180, 203, 0.08) !important;
}
.action-link:hover, .cart-action:hover {
    color: #e8b4cb !important;
    background: rgba(232, 180, 203, 0.08) !important;
}
.navbar, .modern-navbar { background: rgba(255, 255, 255, 0.98) !important; }

/* Dark mode override */
@media (prefers-color-scheme: dark) {
    body { background-color: #f9f6f3 !important; color: #2c2c2c !important; }
    .navbar, .modern-navbar { background: rgba(255, 255, 255, 0.98) !important; }
    .service-card-tailwind,
    .testimonial-card,
    .group,
    .product-card,
    .gallery-item-improved { background: white !important; color: #2c2c2c !important; }
    .service-title-tailwind,
    .testimonial-card h5,
    .testimonial-card p    { color: #2c2c2c !important; }
    .service-description-tailwind { color: #6b7280 !important; }
    .service-price-tailwind       { color: #e8b4cb !important; }
}

/* Footer hr */
.footer hr { border-color: #555; }

/* Footer brand heading */
.footer-brand-heading { font-size: 1.5rem; }

/* Navbar top offset (set via JS on load, this is the initial value) */
#main-navbar { top: 36px; }

/* Cart badge hidden by default */
.cart-badge { display: none; }

/* Subcategory nav link indent */
.nav-dropdown-link.nav-subcategory { padding-left: 2.5rem; }

/* Footer divider */
.footer-divider { border-color: #555; }


/* ===== APPOINTMENT CATEGORY CARD PICKER ===== */
.category-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.category-card-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.category-card-btn:hover {
    border-color: #e8b4cb;
    box-shadow: 0 4px 12px rgba(232, 180, 203, 0.2);
    transform: translateY(-1px);
}

.category-card-btn.selected {
    border-color: #e8b4cb;
    background: rgba(232, 180, 203, 0.06);
    box-shadow: 0 4px 16px rgba(232, 180, 203, 0.25);
}

.category-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(232, 180, 203, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.category-card-btn:hover .category-card-icon,
.category-card-btn.selected .category-card-icon {
    background: rgba(232, 180, 203, 0.25);
}

.category-card-icon i {
    color: #e8b4cb;
    font-size: 1.1rem;
}

.category-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.category-card-parent {
    font-size: 0.72rem;
    font-weight: 400;
    color: #e8b4cb;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-card-count {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 400;
}

.category-card-arrow {
    color: #d1d5db;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.category-card-btn:hover .category-card-arrow,
.category-card-btn.selected .category-card-arrow {
    color: #e8b4cb;
    transform: translateX(2px);
}

/* Mobile: single column */
@media (max-width: 575.98px) {
    .category-card-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .category-card-btn {
        padding: 12px 14px;
    }

    .category-card-icon {
        width: 38px;
        height: 38px;
    }
}


/* ===== CUSTOM CATEGORY DROPDOWN (replaces native <select> on all devices) ===== */
.custom-dropdown {
    position: relative;
    width: 100%;
    user-select: none;
}

/* Trigger button */
.custom-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0.9rem 1.1rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    font-weight: 500;
    color: #2c2c2c;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-dropdown-trigger:hover {
    border-color: #e8b4cb;
}

.custom-dropdown.is-open .custom-dropdown-trigger {
    border-color: #e8b4cb;
    box-shadow: 0 0 0 4px rgba(232, 180, 203, 0.15);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-dropdown-value {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-dropdown-value.placeholder-text,
.custom-dropdown-trigger:has(.custom-dropdown-value:empty) {
    color: #9ca3af;
}

/* Default placeholder color */
#categoryDropdownValue {
    color: #9ca3af;
}
#categoryDropdownValue:not(:empty) {
    color: #2c2c2c;
}

.custom-dropdown-arrow {
    flex-shrink: 0;
    margin-left: 10px;
    color: #e8b4cb;
    transition: transform 0.25s ease;
}

.custom-dropdown.is-open .custom-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown list */
.custom-dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: white;
    border: 2px solid #e8b4cb;
    border-top: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    max-height: 320px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.custom-dropdown-list.open {
    display: block;
    animation: dropdownSlideIn 0.18s ease;
}

@keyframes dropdownSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scrollbar styling */
.custom-dropdown-list::-webkit-scrollbar { width: 4px; }
.custom-dropdown-list::-webkit-scrollbar-track { background: #f9f9f9; }
.custom-dropdown-list::-webkit-scrollbar-thumb { background: #e8b4cb; border-radius: 4px; }

/* Each option */
.custom-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f5f5f5;
}

.custom-dropdown-item:last-child {
    border-bottom: none;
}

.custom-dropdown-item:hover {
    background: rgba(232, 180, 203, 0.08);
}

.custom-dropdown-item.selected {
    background: rgba(232, 180, 203, 0.12);
}

.custom-dropdown-item.placeholder {
    color: #9ca3af;
    font-size: 0.9rem;
    cursor: default;
    padding: 10px 16px;
}

.custom-dropdown-item.placeholder:hover {
    background: transparent;
}

/* Item content */
.dropdown-item-parent {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #e8b4cb;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 2px;
}

.dropdown-item-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c2c2c;
    line-height: 1.3;
}

.dropdown-item-count {
    flex-shrink: 0;
    font-size: 0.72rem;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 575.98px) {
    .custom-dropdown-trigger {
        min-height: 52px;
        font-size: 1rem;
        padding: 0.85rem 1rem;
    }

    .custom-dropdown-list {
        max-height: 260px;
    }

    .custom-dropdown-item {
        padding: 13px 14px;
    }

    .dropdown-item-name {
        font-size: 0.9rem;
    }
}


/* Service dropdown option layout */
.service-option {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-option-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    border: 2px solid #f5f0f3;
}

.service-option-img-placeholder {
    width: 60px;
    height: 60px;
    background: #f5f0f3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8b4cb;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-option-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.service-option-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.3;
}

.service-option-meta {
    font-size: 0.78rem;
    color: #e8b4cb;
    font-weight: 500;
}

/* Disabled trigger state */
.custom-dropdown-trigger:disabled {
    background: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

.custom-dropdown-trigger:disabled .custom-dropdown-arrow {
    color: #d1d5db;
}


/* ===== HOME PAGE SERVICE CARDS ===== */
.home-service-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.home-service-card:hover {
    border-color: rgba(232, 180, 203, 0.4);
    box-shadow: 0 12px 30px rgba(232, 180, 203, 0.15);
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}

.home-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(232, 180, 203, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.home-service-card:hover .home-service-icon {
    background: rgba(232, 180, 203, 0.22);
}

.home-service-icon i {
    font-size: 1.6rem;
    color: #e8b4cb;
}

.home-service-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.6rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.home-service-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.home-service-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e8b4cb;
}

/* Mobile */
@media (max-width: 575.98px) {
    .home-service-card {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .home-service-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 1.1rem;
    }

    .home-service-icon i {
        font-size: 1.3rem;
    }

    .home-service-name {
        font-size: 1.05rem;
    }

    .home-service-desc {
        font-size: 0.85rem;
    }
}


/* ===== SERVICES SHOWCASE SECTION ===== */
.services-showcase-section {
    padding: 0 0 80px 0;
    background: #f9f6f3;
}

.services-showcase-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    background: white;
}

/* Left image side */
.showcase-image-side {
    position: relative;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
}

.showcase-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.services-showcase-frame:hover .showcase-bg-image {
    transform: scale(1.04);
}

.showcase-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem;
    background: linear-gradient(to top, rgba(30,20,40,0.85) 0%, rgba(30,20,40,0.3) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.02em;
}

.showcase-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: #e8b4cb;
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s ease, transform 0.2s ease;
}

.showcase-cta-btn:hover {
    background: #d4a0b8;
    color: white;
    transform: translateX(3px);
}

/* Right cards side */
.showcase-cards-side {
    padding: 1.75rem;
    background: white;
}

.showcase-service-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1.1rem 1.2rem;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.showcase-service-card:hover {
    border-color: rgba(232, 180, 203, 0.4);
    box-shadow: 0 4px 16px rgba(232, 180, 203, 0.15);
    background: white;
    text-decoration: none;
    color: inherit;
}

.showcase-service-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(232, 180, 203, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.showcase-service-card:hover .showcase-service-icon {
    background: rgba(232, 180, 203, 0.22);
}

.showcase-service-icon i {
    font-size: 1.1rem;
    color: #e8b4cb;
}

.showcase-service-info {
    flex: 1;
    min-width: 0;
}

.showcase-service-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.3;
}

.showcase-service-desc {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 6px;
}

.showcase-service-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: #e8b4cb;
}

/* Mobile */
@media (max-width: 991.98px) {
    .showcase-image-side {
        min-height: 280px;
    }

    .showcase-cta-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 575.98px) {
    .services-showcase-section {
        padding: 0 0 50px 0;
    }

    .showcase-image-side {
        min-height: 240px;
    }

    .showcase-cta-title {
        font-size: 1.2rem;
    }

    .showcase-cards-side {
        padding: 1.25rem;
    }

    .showcase-service-card {
        padding: 0.9rem 1rem;
    }
}

/* ===== OFFER BADGE & DISCOUNT STYLES ===== */
.offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
    animation: pulse-badge 2s ease-in-out infinite;
}

.offer-badge i {
    font-size: 0.7rem;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Service Price with Offer */
.service-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    font-weight: 400;
}

.offer-price {
    color: #e91e63;
    font-weight: 700;
    font-size: 1.1em;
}

/* Offer Alert on Service Detail Page */
.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #b1dfbb;
    border-radius: 8px;
    padding: 12px 16px;
}

.alert-success i {
    color: #155724;
}

/* Badge Styles */
.badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%) !important;
}

/* Service Card Hover Effect with Offer */
.service-item-card:hover .offer-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

/* Related Service Cards with Offer */
.related-service-card .offer-badge {
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    font-size: 0.7rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .offer-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .service-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
