/* ==================================================
   BEAUTICIAN PAGE - PINK FEMININE THEME
   ================================================== */

/* Color Variables */
:root {
    --beauty-primary: #FF6B9D;
    --beauty-secondary: #C44569;
    --beauty-light: #FF8E9E;
    --beauty-gradient: linear-gradient(135deg, #FF6B9D 0%, #C44569 50%, #FF8E9E 100%);
    --beauty-bg: #FFF5F7;
    --beauty-card: #FFFFFF;
    --beauty-text: #4A1C33;
    --beauty-text-light: #8B5A6A;
    --beauty-gold: #D4AF37;
    --beauty-rose-gold: #B76E79;
    --beauty-border: rgba(212, 175, 55, 0.3);
    --beauty-shadow: rgba(255, 107, 157, 0.15);
}

/* Dark Mode Colors */
body.dark-mode {
    --beauty-primary: #FF8E9E;
    --beauty-secondary: #D55A7B;
    --beauty-light: #FF6B9D;
    --beauty-bg: #1A0F12;
    --beauty-card: #2A1A1D;
    --beauty-text: #FFE4EA;
    --beauty-text-light: #C8A0A8;
    --beauty-border: rgba(212, 175, 55, 0.4);
    --beauty-shadow: rgba(255, 107, 157, 0.2);
}

/* Page Container */
.beautician-page {
    background: var(--beauty-bg);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
}

/* Beautician Header */
.beauty-header {
    background: var(--beauty-gradient);
    padding: 20px 16px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.beauty-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.beauty-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.beauty-logo i {
    font-size: 28px;
    color: white;
}

.beauty-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.beauty-back-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.beauty-back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.beauty-hero {
    background: var(--beauty-gradient);
    padding: 30px 16px 50px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    margin-bottom: -30px;
    position: relative;
}

.beauty-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.beauty-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 20px;
}

/* Search Box */
.beauty-search-box {
    background: white;
    border-radius: 30px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.beauty-search-box i {
    color: var(--beauty-primary);
    font-size: 18px;
    margin-right: 12px;
}

.beauty-search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    color: var(--beauty-text);
    background: transparent;
}

.beauty-search-box input::placeholder {
    color: #B0A0A5;
}

body.dark-mode .beauty-search-box {
    background: var(--beauty-card);
}

body.dark-mode .beauty-search-box input {
    color: var(--beauty-text);
}

/* Main Container */
.beauty-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px;
}

/* Category Tabs */
.beauty-categories {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.beauty-categories::-webkit-scrollbar {
    display: none;
}

.beauty-cat-tab {
    flex-shrink: 0;
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--beauty-border);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--beauty-text);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.beauty-cat-tab:hover {
    border-color: var(--beauty-primary);
    color: var(--beauty-primary);
}

.beauty-cat-tab.active {
    background: var(--beauty-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px var(--beauty-shadow);
}

.beauty-cat-tab i {
    margin-right: 8px;
}

body.dark-mode .beauty-cat-tab {
    background: var(--beauty-card);
    color: var(--beauty-text);
}

body.dark-mode .beauty-cat-tab.active {
    background: var(--beauty-gradient);
    color: white;
}

/* Section Titles */
.beauty-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--beauty-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.beauty-section-title i {
    color: var(--beauty-primary);
}

/* Services Grid */
.beauty-services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Service Card */
.beauty-service-card {
    background: var(--beauty-card);
    border-radius: 20px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 16px;
    border: 2px solid var(--beauty-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.beauty-service-card:hover {
    border-color: var(--beauty-primary);
    box-shadow: 0 8px 30px var(--beauty-shadow);
    transform: translateY(-3px);
}

.beauty-service-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.beauty-service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--beauty-text);
    margin: 0;
    line-height: 1.3;
}

.beauty-service-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.beauty-service-rating i {
    color: #FFD700;
}

.beauty-rating-value {
    font-weight: 700;
    color: var(--beauty-text);
}

.beauty-rating-count {
    color: var(--beauty-text-light);
    font-size: 13px;
}

.beauty-service-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.beauty-price-new {
    font-size: 18px;
    font-weight: 700;
    color: var(--beauty-primary);
}

.beauty-price-old {
    font-size: 14px;
    color: var(--beauty-text-light);
    text-decoration: line-through;
}

.beauty-duration {
    font-size: 13px;
    color: var(--beauty-text-light);
}

.beauty-duration i {
    margin-right: 4px;
    color: var(--beauty-rose-gold);
}

.beauty-service-desc {
    font-size: 14px;
    color: var(--beauty-text-light);
    line-height: 1.5;
    margin: 0;
}

.beauty-warranty {
    font-size: 12px;
    color: var(--beauty-rose-gold);
    font-weight: 500;
}

.beauty-warranty i {
    margin-right: 4px;
}

/* Image and Add Button */
.beauty-service-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beauty-image-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE4EA 0%, #FFF5F7 100%);
    position: relative;
    flex-shrink: 0;
    max-width: 140px;
}

.beauty-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add Button */
.beauty-add-container {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.beauty-add-btn {
    background: var(--beauty-gradient);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--beauty-shadow);
    display: flex;
    align-items: center;
    gap: 6px;
}

.beauty-add-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px var(--beauty-shadow);
}

/* Quantity Control */
.beauty-qty-control {
    display: flex;
    align-items: center;
    background: var(--beauty-gradient);
    border-radius: 25px;
    padding: 6px 10px;
    box-shadow: 0 4px 15px var(--beauty-shadow);
}

.beauty-qty-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.beauty-qty-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.beauty-qty-count {
    color: white;
    font-size: 16px;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

/* Sticky Footer */
.beauty-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--beauty-gradient);
    padding: 16px 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px var(--beauty-shadow);
}

.beauty-sticky-footer.show {
    display: block;
}

.beauty-footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.beauty-cart-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.beauty-cart-badge {
    background: white;
    color: var(--beauty-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.beauty-cart-total {
    color: white;
}

.beauty-cart-total .label {
    font-size: 12px;
    opacity: 0.9;
}

.beauty-cart-total .value {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.beauty-book-btn {
    background: white;
    color: var(--beauty-primary);
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beauty-book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Booking Modal */
.beauty-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.beauty-modal-overlay.show {
    display: flex;
}

.beauty-modal {
    background: var(--beauty-card);
    border-radius: 30px 30px 0 0;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.beauty-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--beauty-border);
}

.beauty-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--beauty-text);
}

.beauty-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--beauty-text-light);
    cursor: pointer;
}

.beauty-form-group {
    margin-bottom: 20px;
}

.beauty-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--beauty-text);
    margin-bottom: 8px;
}

.beauty-form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--beauty-border);
    border-radius: 12px;
    font-size: 15px;
    color: var(--beauty-text);
    background: transparent;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.beauty-form-input:focus {
    outline: none;
    border-color: var(--beauty-primary);
}

.beauty-confirm-btn {
    width: 100%;
    background: var(--beauty-gradient);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.beauty-confirm-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px var(--beauty-shadow);
}

/* SEO Section */
.beauty-seo-section {
    background: linear-gradient(135deg, #FFE4EA 0%, #FFF5F7 100%);
    padding: 40px 16px;
    margin-top: 40px;
    border-radius: 30px;
}

body.dark-mode .beauty-seo-section {
    background: var(--beauty-card);
}

.beauty-article-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid var(--beauty-border);
}

body.dark-mode .beauty-article-card {
    background: #3A2A2D;
}

.beauty-article-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--beauty-text);
    margin-bottom: 15px;
}

.beauty-article-content {
    color: var(--beauty-text-light);
    line-height: 1.7;
}

/* FAQ Section */
.beauty-faq-section {
    padding: 40px 16px;
}

.beauty-faq-item {
    background: var(--beauty-card);
    border: 2px solid var(--beauty-border);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
}

.beauty-faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--beauty-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.beauty-faq-question i {
    color: var(--beauty-primary);
    transition: transform 0.3s ease;
}

.beauty-faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--beauty-text-light);
    line-height: 1.6;
}

/* Toast Notification */
.beauty-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--beauty-gradient);
    color: white;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px var(--beauty-shadow);
    opacity: 0;
    transition: all 0.3s ease;
}

.beauty-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.beauty-toast i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .beauty-hero h1 {
        font-size: 26px;
    }

    .beauty-service-card {
        grid-template-columns: 1fr 120px;
        gap: 12px;
        padding: 16px;
    }

    .beauty-image-wrapper {
        width: 120px;
        height: 120px;
    }

    .beauty-service-title {
        font-size: 16px;
    }

    .beauty-add-btn {
        padding: 8px 22px;
        font-size: 14px;
    }

    .beauty-section-title {
        font-size: 22px;
    }
}

/* Bottom padding for sticky footer */
.beauty-page-content {
    padding-bottom: 100px;
}