.elementor-237 .elementor-element.elementor-element-24e5e51{--spacer-size:50px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-237 .elementor-element.elementor-element-d5caee1{text-align:center;}.elementor-237 .elementor-element.elementor-element-d5caee1 .elementor-heading-title{color:#000000;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-237 .elementor-element.elementor-element-4b10937{text-align:center;}.elementor-237 .elementor-element.elementor-element-cd6ef77{--spacer-size:50px;}:root{--page-title-display:none;}/* Start custom CSS for catalogbooking, class: .elementor-element-3d84834 *//* ============================================
   ELEGANT SERVICE CARD STYLES - MOBILE FIXED
   ============================================ */

/* Individual Service Card */
.am-fcl__item {
    transition: transform 0.3s ease;
    height: auto !important;
    min-height: unset !important;
}

/* Reduced hover effect on mobile */
@media (min-width: 769px) {
    .am-fcl__item {
        height: 100%;
    }
    
    .am-fcl__item:hover {
        transform: translateY(-12px);
    }
}

.am-fcl__item-inner {
    height: auto !important;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 44, 55, 0.08);
    transition: all 0.3s ease;
    background: #ffffff;
}

@media (min-width: 769px) {
    .am-fcl__item-inner {
        height: 100%;
        border-radius: 24px;
        box-shadow: 0 8px 30px rgba(26, 44, 55, 0.12);
    }
    
    .am-fcl__item-inner:hover {
        box-shadow: 0 20px 60px rgba(26, 132, 238, 0.25);
    }
}

/* Card Content */
.am-fcl__item-content {
    background: #ffffff;
    border-left: none !important;
    border-radius: 16px;
    overflow: hidden;
    height: auto !important;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .am-fcl__item-content {
        height: 100%;
        border-radius: 24px;
    }
}

/* Elegant top accent bar */
.am-fcl__item-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1A84EE 0%, #265CF2 50%, #1A84EE 100%);
    background-size: 200% 100%;
    z-index: 10;
}

@media (min-width: 769px) {
    .am-fcl__item-content::before {
        height: 5px;
        transition: all 0.3s ease;
    }
    
    .am-fcl__item-content:hover::before {
        height: 6px;
        animation: gradientSlide 2s ease infinite;
    }
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Side accent - only on desktop */
@media (min-width: 769px) {
    .am-fcl__item-content::after {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, #1A84EE 0%, #265CF2 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 5;
    }
    
    .am-fcl__item-content:hover::after {
        opacity: 1;
    }
}

/* Card Heading Container */
.am-fcl__item-heading {
    position: relative;
    width: 100%;
}

/* Hero Image Section - FIXED HEIGHT */
.am-fcl__item-hero {
    width: 100%;
    height: 180px !important;
    min-height: 180px !important;
    max-height: 180px !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 481px) and (max-width: 768px) {
    .am-fcl__item-hero {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }
}

@media (min-width: 769px) {
    .am-fcl__item-hero {
        height: 240px !important;
        min-height: 240px !important;
        max-height: 240px !important;
        transition: all 0.4s ease;
    }
    
    .am-fcl__item-content:hover .am-fcl__item-hero {
        transform: scale(1.1);
    }
}

/* Elegant overlay gradient */
.am-fcl__item-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 44, 55, 0) 0%,
        rgba(26, 44, 55, 0.15) 70%,
        rgba(26, 44, 55, 0.4) 100%
    );
    z-index: 1;
}

@media (min-width: 769px) {
    .am-fcl__item-hero::before {
        background: linear-gradient(
            180deg,
            rgba(26, 44, 55, 0) 0%,
            rgba(26, 44, 55, 0.3) 60%,
            rgba(26, 44, 55, 0.7) 100%
        );
        transition: opacity 0.3s ease;
    }
    
    .am-fcl__item-content:hover .am-fcl__item-hero::before {
        background: linear-gradient(
            180deg,
            rgba(26, 132, 238, 0.1) 0%,
            rgba(26, 132, 238, 0.4) 60%,
            rgba(26, 132, 238, 0.8) 100%
        );
    }
}

/* Decorative corner accent - desktop only */
@media (min-width: 769px) {
    .am-fcl__item-hero::after {
        content: '';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        opacity: 0;
        transform: rotate(45deg) scale(0.5);
        transition: all 0.4s ease;
        z-index: 2;
    }
    
    .am-fcl__item-content:hover .am-fcl__item-hero::after {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

/* Service Name/Title - FIXED POSITIONING */
.am-fcl__item-name {
    font-size: 18px;
    font-weight: 700;
    color: #1A2C37;
    padding: 18px 18px 8px;
    line-height: 1.3;
    letter-spacing: -0.2px;
    position: relative;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (min-width: 375px) {
    .am-fcl__item-name {
        font-size: 19px;
        padding: 20px 20px 8px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .am-fcl__item-name {
        font-size: 22px;
        padding: 24px 24px 10px;
        letter-spacing: -0.3px;
    }
}

@media (min-width: 769px) {
    .am-fcl__item-name {
        font-size: 26px;
        padding: 28px 28px 10px;
        letter-spacing: -0.5px;
        background: linear-gradient(135deg, #1A2C37 0%, #1A2C37 50%, #1A84EE 50%, #265CF2 100%);
        background-size: 200% 100%;
        background-position: 0% 0%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: #1A2C37;
    }
    
    .am-fcl__item-content:hover .am-fcl__item-name {
        background-position: 100% 0%;
        -webkit-text-fill-color: transparent;
    }
}

/* Elegant underline accent */
.am-fcl__item-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #1A84EE, #265CF2);
    border-radius: 3px;
}

@media (min-width: 375px) {
    .am-fcl__item-name::after {
        left: 20px;
        width: 40px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .am-fcl__item-name::after {
        left: 24px;
        width: 50px;
    }
}

@media (min-width: 769px) {
    .am-fcl__item-name::after {
        left: 28px;
        width: 0;
        transition: width 0.4s ease;
    }
    
    .am-fcl__item-content:hover .am-fcl__item-name::after {
        width: 70px;
    }
}

/* Segments Section - FIXED POSITIONING */
.am-fcl__item-segments {
    padding: 10px 18px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

@media (min-width: 375px) {
    .am-fcl__item-segments {
        padding: 12px 20px 18px;
        gap: 10px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .am-fcl__item-segments {
        padding: 15px 24px 22px;
        gap: 12px;
    }
}

@media (min-width: 769px) {
    .am-fcl__item-segments {
        padding: 15px 28px 25px;
    }
}

.am-fcl__item-segments__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6px 12px;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 375px) {
    .am-fcl__item-segments__item {
        gap: 8px;
        padding: 8px 14px;
    }
}

@media (min-width: 481px) {
    .am-fcl__item-segments__item {
        gap: 10px;
        padding: 10px 18px;
    }
}

/* Desktop hover effects only */
@media (min-width: 769px) {
    .am-fcl__item-segments__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
        transition: left 0.6s ease;
    }
    
    .am-fcl__item-content:hover .am-fcl__item-segments__item::before {
        left: 100%;
    }
    
    .am-fcl__item-content:hover .am-fcl__item-segments__item {
        background: linear-gradient(135deg, #1A84EE 0%, #265CF2 100%);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateX(8px) scale(1.05);
        box-shadow: 0 5px 20px rgba(26, 132, 238, 0.3);
    }
}

.am-fcl__item-segments__item-icon {
    font-size: 16px;
    color: #1A84EE;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

@media (min-width: 375px) {
    .am-fcl__item-segments__item-icon {
        font-size: 18px;
    }
}

@media (min-width: 481px) {
    .am-fcl__item-segments__item-icon {
        font-size: 20px;
    }
}

@media (min-width: 769px) {
    .am-fcl__item-segments__item-icon {
        filter: drop-shadow(0 2px 4px rgba(26, 132, 238, 0.2));
    }
    
    .am-fcl__item-content:hover .am-fcl__item-segments__item-icon {
        color: #ffffff;
        transform: rotate(360deg) scale(1.1);
        filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.5));
    }
}

.am-fcl__item-segments__item-count {
    font-size: 14px;
    font-weight: 700;
    color: #1A2C37;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (min-width: 375px) {
    .am-fcl__item-segments__item-count {
        font-size: 15px;
    }
}

@media (min-width: 481px) {
    .am-fcl__item-segments__item-count {
        font-size: 17px;
    }
}

@media (min-width: 769px) {
    .am-fcl__item-segments__item-count {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .am-fcl__item-content:hover .am-fcl__item-segments__item-count {
        color: #ffffff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
}

/* Footer Section - FIXED POSITIONING */
.am-fcl__item-footer {
    padding: 0 18px 18px;
    margin-top: auto;
}

@media (min-width: 375px) {
    .am-fcl__item-footer {
        padding: 0 20px 20px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .am-fcl__item-footer {
        padding: 0 24px 24px;
    }
}

@media (min-width: 769px) {
    .am-fcl__item-footer {
        padding: 0 28px 28px;
    }
}

/* View All Button - MOBILE OPTIMIZED */
.am-fcl__item-btn {
    width: 100% !important;
    padding: 12px 20px !important;
    background: linear-gradient(135deg, #1A2C37 0%, #2d4451 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(26, 44, 55, 0.2);
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@media (min-width: 375px) {
    .am-fcl__item-btn {
        padding: 13px 22px !important;
        font-size: 13.5px !important;
        min-height: 46px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .am-fcl__item-btn {
        padding: 15px 26px !important;
        font-size: 14.5px !important;
        border-radius: 14px !important;
        min-height: 48px;
    }
}

@media (min-width: 769px) {
    .am-fcl__item-btn {
        padding: 16px 28px !important;
        font-size: 15px !important;
        border-radius: 16px !important;
        letter-spacing: 1px;
        box-shadow: 0 6px 20px rgba(26, 44, 55, 0.25);
        min-height: 50px;
    }
}

/* Simplified button effects for mobile */
.am-fcl__item-btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(26, 44, 55, 0.2) !important;
}

/* Desktop hover effects */
@media (min-width: 769px) {
    /* Button shine effect */
    .am-fcl__item-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }
    
    .am-fcl__item-btn:hover::before {
        width: 300px;
        height: 300px;
    }
    
    /* Button gradient overlay */
    .am-fcl__item-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transition: left 0.7s ease;
    }
    
    .am-fcl__item-btn:hover::after {
        left: 100%;
    }
    
    .am-fcl__item-btn:hover {
        background: linear-gradient(135deg, #1A84EE 0%, #265CF2 100%) !important;
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(26, 132, 238, 0.45) !important;
    }
    
    .am-fcl__item-btn:active {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(26, 132, 238, 0.35) !important;
    }
}

.am-fcl__item-btn .am-button__inner {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

@media (min-width: 481px) {
    .am-fcl__item-btn .am-button__inner {
        gap: 10px;
    }
}

@media (min-width: 769px) {
    .am-fcl__item-btn .am-button__inner {
        gap: 12px;
    }
}

.am-fcl__item-btn .am-icon-arrow-right {
    transition: transform 0.3s ease;
    font-size: 14px;
}

@media (min-width: 481px) {
    .am-fcl__item-btn .am-icon-arrow-right {
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .am-fcl__item-btn .am-icon-arrow-right {
        font-size: 18px;
    }
    
    .am-fcl__item-btn:hover .am-icon-arrow-right {
        transform: translateX(8px);
    }
}

/* Smooth entrance animation - reduced on mobile */
.am-fcl__item {
    animation: elegantFadeIn 0.4s ease forwards;
    opacity: 0;
}

@media (min-width: 769px) {
    .am-fcl__item {
        animation: elegantFadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
}

.am-fcl__item:nth-child(1) { animation-delay: 0.05s; }
.am-fcl__item:nth-child(2) { animation-delay: 0.1s; }
.am-fcl__item:nth-child(3) { animation-delay: 0.15s; }
.am-fcl__item:nth-child(4) { animation-delay: 0.2s; }
.am-fcl__item:nth-child(5) { animation-delay: 0.25s; }
.am-fcl__item:nth-child(6) { animation-delay: 0.3s; }

@keyframes elegantFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 769px) {
    @keyframes elegantFadeIn {
        from {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}

/* Prevent text selection issues on mobile */
.am-fcl__item-name,
.am-fcl__item-segments__item-count {
    -webkit-user-select: none;
    user-select: none;
}

/* Fix any overflow issues */
.am-fcl__item,
.am-fcl__item-inner,
.am-fcl__item-content {
    overflow: visible;
}

.am-fcl__item-hero,
.am-fcl__item-heading {
    overflow: hidden;
}/* End custom CSS */
/* Start custom CSS for spacer, class: .elementor-element-cd6ef77 *//* ============================================
   YAHSALON AMELIA BOOKING WIDGET STYLING
   Matching Brand Colors & Design System
   ============================================ */

/* ============================================
   MAIN CONTAINER
   ============================================ */

.amelia-app-booking,
.amelia-cabinet,
.amelia-catalog,
#amelia-app-booking,
#amelia-catalog-booking {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #2c3e50 !important;
    background: transparent !important;
}

/* Wrapper Background */
.el-main {
    background: linear-gradient(135deg, #fef3f8 0%, #fff7ed 50%, #f0f9ff 100%) !important;
    padding: 2rem !important;
    border-radius: 20px !important;
}

/* ============================================
   SERVICE CARDS / CATALOG ITEMS
   ============================================ */

/* Service Card Container */
.am-service-card,
.am-catalog-item,
.el-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef9f3 100%) !important;
    border: 1px solid rgba(236, 72, 153, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 5px 25px rgba(236, 72, 153, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    margin-bottom: 1.5rem !important;
}

.am-service-card:hover,
.am-catalog-item:hover,
.el-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.25) !important;
    border-color: rgba(236, 72, 153, 0.3) !important;
}

/* Service Card Body */
.el-card__body,
.am-service-body {
    padding: 1.5rem !important;
}

/* Service Image */
.am-service-image img,
.am-catalog-item-image img {
    border-radius: 15px !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.am-service-card:hover .am-service-image img,
.am-catalog-item:hover .am-catalog-item-image img {
    transform: scale(1.08) !important;
}

/* Service Title */
.am-service-name,
.am-catalog-item-name,
.el-card__header {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: 0.3px !important;
}

.am-service-card:hover .am-service-name,
.am-catalog-item:hover .am-catalog-item-name {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Service Description */
.am-service-description,
.am-catalog-item-description {
    color: #64748b !important;
    line-height: 1.8 !important;
    margin-bottom: 1rem !important;
}

/* Service Price */
.am-service-price,
.am-catalog-item-price,
.am-price {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 1rem 0 !important;
}

/* Service Duration */
.am-service-duration,
.am-catalog-item-duration,
.am-duration {
    color: #64748b !important;
    font-size: 0.9rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

/* ============================================
   BUTTONS - PRIMARY STYLE
   ============================================ */

/* Book Now / Select Buttons */
.am-button,
.el-button--primary,
.am-book-button,
.am-select-service,
button.el-button.el-button--primary {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 0.8rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
}

.am-button:hover,
.el-button--primary:hover,
.am-book-button:hover,
button.el-button.el-button--primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4) !important;
}

.am-button:active,
.el-button--primary:active {
    transform: translateY(-1px) !important;
}

/* Secondary Buttons */
.el-button--default,
.am-button-secondary {
    background-color: #ffffff !important;
    color: #ec4899 !important;
    border: 2px solid #ec4899 !important;
    border-radius: 25px !important;
    padding: 0.8rem 2rem !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.el-button--default:hover,
.am-button-secondary:hover {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: translateY(-3px) !important;
}

/* ============================================
   FORM INPUTS & FIELDS
   ============================================ */

/* Input Fields */
.el-input__inner,
.el-textarea__inner,
.am-input,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    border: 2px solid rgba(236, 72, 153, 0.2) !important;
    border-radius: 12px !important;
    padding: 0.8rem 1rem !important;
    font-size: 1rem !important;
    color: #2c3e50 !important;
    background: #ffffff !important;
    transition: all 0.3s !important;
}

.el-input__inner:focus,
.el-textarea__inner:focus,
.am-input:focus,
input:focus,
textarea:focus {
    border-color: #ec4899 !important;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1) !important;
    outline: none !important;
}

/* Input Labels */
.el-form-item__label,
.am-label,
label {
    color: #2c3e50 !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

/* Select Dropdown */
.el-select .el-input__inner {
    cursor: pointer !important;
}

.el-select-dropdown {
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 5px 25px rgba(236, 72, 153, 0.15) !important;
}

.el-select-dropdown__item {
    color: #2c3e50 !important;
    padding: 0.8rem 1rem !important;
}

.el-select-dropdown__item:hover,
.el-select-dropdown__item.selected {
    background: linear-gradient(135deg, #fef3f8 0%, #fff7ed 100%) !important;
    color: #ec4899 !important;
}

/* ============================================
   CALENDAR / DATE PICKER
   ============================================ */

/* Calendar Container */
.el-date-picker,
.el-picker-panel,
.am-calendar {
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 25px rgba(236, 72, 153, 0.15) !important;
    overflow: hidden !important;
}

/* Calendar Header */
.el-date-picker__header,
.el-picker-panel__icon-btn {
    color: #2c3e50 !important;
}

/* Calendar Days */
.el-date-table td {
    color: #2c3e50 !important;
}

.el-date-table td.available:hover {
    background: linear-gradient(135deg, #fef3f8 0%, #fff7ed 100%) !important;
    color: #ec4899 !important;
}

/* Selected Date */
.el-date-table td.current,
.el-date-table td.today,
.am-selected-date {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
}

/* Disabled Dates */
.el-date-table td.disabled {
    color: #cbd5e1 !important;
    background: #f8f9fa !important;
}

/* ============================================
   TIME SLOTS
   ============================================ */

/* Time Slot Container */
.am-time-slots,
.am-slots-wrapper {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
    gap: 1rem !important;
    margin: 1.5rem 0 !important;
}

/* Individual Time Slot */
.am-time-slot,
.am-slot-button {
    background: #ffffff !important;
    border: 2px solid rgba(236, 72, 153, 0.2) !important;
    border-radius: 12px !important;
    padding: 0.8rem 1rem !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    color: #2c3e50 !important;
    font-weight: 600 !important;
}

.am-time-slot:hover,
.am-slot-button:hover {
    background: linear-gradient(135deg, #fef3f8 0%, #fff7ed 100%) !important;
    border-color: #ec4899 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2) !important;
}

/* Selected Time Slot */
.am-time-slot.am-selected,
.am-slot-button.am-selected {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3) !important;
}

/* Disabled Time Slot */
.am-time-slot.am-disabled,
.am-slot-button.am-disabled {
    background: #f8f9fa !important;
    color: #cbd5e1 !important;
    border-color: #e5e7eb !important;
    cursor: not-allowed !important;
}

/* ============================================
   EMPLOYEE/STAFF SELECTION
   ============================================ */

/* Employee Card */
.am-employee-card,
.am-staff-item {
    background: linear-gradient(135deg, #ffffff 0%, #fef9f3 100%) !important;
    border: 2px solid rgba(236, 72, 153, 0.1) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s !important;
    cursor: pointer !important;
}

.am-employee-card:hover,
.am-staff-item:hover {
    border-color: #ec4899 !important;
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.2) !important;
    transform: translateY(-3px) !important;
}

.am-employee-card.am-selected,
.am-staff-item.am-selected {
    background: linear-gradient(135deg, #fef3f8 0%, #fff7ed 100%) !important;
    border-color: #ec4899 !important;
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.25) !important;
}

/* Employee Name */
.am-employee-name,
.am-staff-name {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 0.5rem !important;
}

/* Employee Image */
.am-employee-image img,
.am-staff-image img {
    border-radius: 50% !important;
    border: 3px solid rgba(236, 72, 153, 0.2) !important;
    transition: all 0.3s !important;
}

.am-employee-card:hover .am-employee-image img,
.am-staff-item:hover .am-staff-image img {
    border-color: #ec4899 !important;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3) !important;
}

/* ============================================
   STEP INDICATOR / PROGRESS
   ============================================ */

/* Steps Container */
.el-steps,
.am-steps {
    margin-bottom: 2rem !important;
}

/* Step Item */
.el-step__head,
.am-step {
    border-color: rgba(236, 72, 153, 0.3) !important;
}

/* Active Step */
.el-step__head.is-process,
.am-step.am-active {
    border-color: #ec4899 !important;
    color: #ec4899 !important;
}

.el-step__title.is-process {
    color: #ec4899 !important;
    font-weight: 600 !important;
}

/* Completed Step */
.el-step__head.is-finish,
.am-step.am-completed {
    border-color: #ec4899 !important;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    color: #ffffff !important;
}

/* Step Line */
.el-step__line {
    background-color: rgba(236, 72, 153, 0.2) !important;
}

.el-step__line.is-finish {
    background: linear-gradient(90deg, #ec4899 0%, #f97316 100%) !important;
}

/* ============================================
   CONFIRMATION / SUCCESS MESSAGE
   ============================================ */

/* Success Container */
.am-confirmation,
.am-success-booking,
.el-message--success {
    background: linear-gradient(135deg, #fef3f8 0%, #f0f9ff 100%) !important;
    border: 2px solid #ec4899 !important;
    border-radius: 20px !important;
    padding: 2rem !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2) !important;
}

/* Success Icon */
.am-success-icon,
.el-message__icon {
    color: #ec4899 !important;
    font-size: 3rem !important;
}

/* Success Title */
.am-confirmation-title,
.am-success-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 1rem 0 !important;
}

/* Success Message */
.am-confirmation-message {
    color: #64748b !important;
    line-height: 1.8 !important;
    font-size: 1.1rem !important;
}

/* ============================================
   LOADING SPINNER
   ============================================ */

/* Loader */
.el-loading-spinner,
.am-loader {
    color: #ec4899 !important;
}

.el-loading-spinner .circular {
    stroke: #ec4899 !important;
}

.el-loading-mask {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

/* ============================================
   DIALOG / MODAL
   ============================================ */

/* Modal Container */
.el-dialog,
.am-modal {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.3) !important;
}

/* Modal Header */
.el-dialog__header,
.am-modal-header {
    background: linear-gradient(135deg, #fef3f8 0%, #fff7ed 100%) !important;
    padding: 1.5rem 2rem !important;
    border-bottom: 2px solid rgba(236, 72, 153, 0.1) !important;
}

.el-dialog__title,
.am-modal-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #2c3e50 !important;
}

/* Modal Body */
.el-dialog__body,
.am-modal-body {
    padding: 2rem !important;
    background: #ffffff !important;
}

/* Modal Footer */
.el-dialog__footer,
.am-modal-footer {
    padding: 1.5rem 2rem !important;
    background: linear-gradient(135deg, #fef3f8 0%, #fff7ed 100%) !important;
    border-top: 2px solid rgba(236, 72, 153, 0.1) !important;
}

/* Close Button */
.el-dialog__close,
.am-modal-close {
    color: #64748b !important;
    transition: all 0.3s !important;
}

.el-dialog__close:hover,
.am-modal-close:hover {
    color: #ec4899 !important;
    transform: rotate(90deg) !important;
}

/* ============================================
   NOTIFICATIONS & ALERTS
   ============================================ */

/* Notification */
.el-notification,
.am-notification {
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2) !important;
    border-left: 4px solid #ec4899 !important;
}

/* Alert */
.el-alert,
.am-alert {
    border-radius: 12px !important;
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    background: linear-gradient(135deg, #fef3f8 0%, #fff7ed 100%) !important;
}

.el-alert__title {
    color: #2c3e50 !important;
    font-weight: 600 !important;
}

/* ============================================
   EXTRAS / ADD-ONS
   ============================================ */

/* Extra Item */
.am-extra-item,
.am-addon-item {
    background: #ffffff !important;
    border: 2px solid rgba(236, 72, 153, 0.1) !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s !important;
}

.am-extra-item:hover,
.am-addon-item:hover {
    border-color: #ec4899 !important;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.15) !important;
}

.am-extra-item.am-selected,
.am-addon-item.am-selected {
    background: linear-gradient(135deg, #fef3f8 0%, #fff7ed 100%) !important;
    border-color: #ec4899 !important;
}

/* Checkbox */
.el-checkbox__input.is-checked .el-checkbox__inner {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    border-color: #ec4899 !important;
}

.el-checkbox__label {
    color: #2c3e50 !important;
}

/* Radio Button */
.el-radio__input.is-checked .el-radio__inner {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    border-color: #ec4899 !important;
}

.el-radio__label {
    color: #2c3e50 !important;
}

/* ============================================
   PAYMENT SECTION
   ============================================ */

/* Payment Method Card */
.am-payment-method,
.am-payment-card {
    background: #ffffff !important;
    border: 2px solid rgba(236, 72, 153, 0.2) !important;
    border-radius: 15px !important;
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.am-payment-method:hover,
.am-payment-card:hover {
    border-color: #ec4899 !important;
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.2) !important;
}

.am-payment-method.am-selected,
.am-payment-card.am-selected {
    background: linear-gradient(135deg, #fef3f8 0%, #fff7ed 100%) !important;
    border-color: #ec4899 !important;
}

/* Total Price */
.am-total-price,
.am-booking-total {
    font-size: 2rem !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-align: center !important;
    margin: 1.5rem 0 !important;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .el-main {
        padding: 1rem !important;
        border-radius: 15px !important;
    }
    
    .am-service-card,
    .am-catalog-item,
    .el-card {
        border-radius: 15px !important;
    }
    
    .am-time-slots,
    .am-slots-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)) !important;
        gap: 0.75rem !important;
    }
    
    .am-button,
    .el-button--primary {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
    
    .am-service-name,
    .am-catalog-item-name {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .am-time-slots,
    .am-slots-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .el-dialog,
    .am-modal {
        width: 95% !important;
        margin: 1rem auto !important;
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

.el-scrollbar__wrap::-webkit-scrollbar,
.am-scrollbar::-webkit-scrollbar {
    width: 8px !important;
}

.el-scrollbar__wrap::-webkit-scrollbar-track,
.am-scrollbar::-webkit-scrollbar-track {
    background: #f8f9fa !important;
    border-radius: 10px !important;
}

.el-scrollbar__wrap::-webkit-scrollbar-thumb,
.am-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%) !important;
    border-radius: 10px !important;
}

.el-scrollbar__wrap::-webkit-scrollbar-thumb:hover,
.am-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d63384 0%, #e8590c 100%) !important;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus States */
.am-button:focus,
.el-button:focus,
.el-input__inner:focus,
.am-time-slot:focus {
    outline: 3px solid rgba(236, 72, 153, 0.5) !important;
    outline-offset: 2px !important;
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .am-service-card,
    .am-catalog-item,
    .el-card {
        box-shadow: none !important;
        border: 1px solid #e0e0e0 !important;
        break-inside: avoid !important;
    }
    
    .am-button,
    .el-button {
        display: none !important;
    }
}/* End custom CSS */