/* 1. No end time for appointment booking */
.bs-dt .booking-ts div:last-child,
.bs-dt .booking-ts > span {
  display: none;
}
/*2
 * ADVANCED SERVICE CARD STYLING
 * Purpose: Create Pinterest-style service cards
 * Source: Community customization examples
 * What it does: Creates masonry-style layout for services
 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.service-card {
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: 20px;
    box-shadow: 5px 5px 15px #d1d1d1, -5px -5px 15px #ffffff;
    padding: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) rotate(1deg);
}
/*3
 * CUSTOM TIME SLOT STYLING
 * Purpose: Make time slots more visually appealing
 * Source: Community styling discussions
 * What it does: Creates pill-shaped, colorful time slots
 */
.time-slot, [class*="time"], .appointment-time {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border: none !important;
    border-radius: 25px !important;
    color: white !important;
    padding: 10px 20px !important;
    margin: 5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.time-slot:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

.time-slot.selected {
    background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%) !important;
    transform: scale(1.05) !important;
}


/*4
 * ENHANCED BUTTON STYLING
 * Purpose: Creates modern, attractive buttons with hover effects
 * What it does:
 * - Adds gradient background matching your brand colors
 * - Creates smooth hover animations with lift effect
 * - Adds subtle glow effect with box shadows
 * - Includes shine animation on hover
 * - Styles both primary and secondary buttons
 * - Improves button accessibility and visual feedback
 */
.btn, button, [class*="book"] button, .book-now {
    background: linear-gradient(135deg, #8B5CF6, #A855F7) !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 12px 30px !important;
    color: white !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3) !important;
}

.btn::before, button::before, [class*="book"] button::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:hover, button:hover, [class*="book"] button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4) !important;
}

.btn:hover::before, button:hover::before, [class*="book"] button:hover::before {
    left: 100%;
}

/* Learn More buttons */
.learn-more, [class*="learn"] {
    background: transparent !important;
    border: 2px solid #8B5CF6 !important;
    color: #8B5CF6 !important;
}

.learn-more:hover, [class*="learn"]:hover {
    background: #8B5CF6 !important;
    color: white !important;
}
/*5
 * ENHANCED SEARCH BAR STYLING
 * Purpose: Improves the search functionality appearance and usability
 * What it does:
 * - Creates rounded, modern search input design
 * - Adds focus states with purple brand color
 * - Includes subtle shadows for depth
 * - Adds search icon positioning
 * - Improves overall search experience
 * - Makes search bar more prominent and user-friendly
 */
/*
.search-bar, [class*="search"] input, input[placeholder*="search" i] {
    border-radius: 25px !important;
    border: 2px solid #E5E7EB !important;
    padding: 12px 20px 12px 45px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

.search-bar:focus, [class*="search"] input:focus, input[placeholder*="search" i]:focus {
    border-color: #8B5CF6 !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
    outline: none !important;
}

/* Search icon enhancement */
.search-bar::before, [class*="search"]::before {
    content: '🔍';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
} 
*/
/*6
 * FORM VALIDATION STYLING
 * Purpose: Provides visual feedback for form field validation
 * What it does:
 * - Adds green styling for valid form fields
 * - Adds red styling for invalid form fields
 * - Includes success and error indicators
 * - Improves user experience during form completion
 * - Provides immediate visual feedback
 * - Helps users understand form requirements
 */
input.valid, select.valid, textarea.valid {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

input.invalid, select.invalid, textarea.invalid {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Success and error indicators */
input.valid::after {
    content: '✓';
    position: absolute;
    right: 10px;
    color: #10B981;
    font-weight: bold;
}

input.invalid::after {
    content: '!';
    position: absolute;
    right: 10px;
    color: #EF4444;
    font-weight: bold;
}

/*
 * MOBILE OPTIMIZATION STYLES
 * Purpose: Ensures website looks great and functions well on mobile devices
 * What it does:
 * - Adjusts font sizes for smaller screens
 * - Optimizes spacing and padding for mobile
 * - Improves touch targets for better mobile interaction
 * - Stacks elements vertically when needed
 * - Ensures all elements are easily accessible on mobile
 * - Maintains visual hierarchy on smaller screens
 */
@media (max-width: 768px) {
    .hero-section h1, [class*="hero"] h1 {
        font-size: 2.5rem !important;
    }
    
    .service-card, [class*="service"] {
        margin-bottom: 15px !important;
    }
    
    .btn, button, [class*="book"] button {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
    
    /* Improve touch targets */
    .service-card, [class*="service"] {
        min-height: 44px !important;
    }
    
    /* Stack elements vertically on mobile */
    .service-details {
        flex-direction: column !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px !important;
    }
    
    .hero-section h1, [class*="hero"] h1 {
        font-size: 2rem !important;
    }
    
    .hero-section p, [class*="hero"] p {
        font-size: 1rem !important;
    }
}

/*
 * HIDE EMPLOYEE SELECTION STEP
 * Purpose: Skip employee selection when you have only one employee
 * Source: Trafft Community Feature Requests
 * What it does: Completely hides the employee selection step
 */
.employee-selection, [class*="employee-step"], .staff-selection {
    display: none !important;
}

/* Auto-advance past employee selection */
.employee-container {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}
