/**
 * Fashionpoint Services Plugin Styles
 */

/* Ensure parent containers support absolute positioning */
.fashionpoint-service-card,
.fashionpoint-services-table tbody tr > td {
    position: relative !important;
}

.fashionpoint-services-table tbody tr > td {
    vertical-align: middle !important;
}

.fashionpoint-services-table tbody tr > td > div {
    position: relative !important;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fashionpoint-services-wrapper,
.fashionpoint-service-groups-wrapper {
    margin: 20px 0;
}

.fashionpoint-service-item,
.fashionpoint-service-group-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.fashionpoint-service-title,
.fashionpoint-service-group-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: bold;
}

.fashionpoint-service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

/* Removed conflicting inline-block styles */

.fashionpoint-price-old {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
}

.fashionpoint-price-new {
    color: #d32f2f;
    font-weight: bold;
}

.fashionpoint-service-description {
    margin-top: 10px;
    color: #666;
}

.fashionpoint-service-category {
    margin-top: 10px;
    color: #999;
}

.fashionpoint-promotion-badge {
    display: inline-block;
    padding: 4px 8px;
    background: #ff9800;
    color: #fff;
    border-radius: 3px;
    font-size: 0.85em;
    margin-top: 5px;
}

.fashionpoint-error {
    color: #d32f2f;
    padding: 10px;
    background: #ffebee;
    border-left: 4px solid #d32f2f;
}

.fashionpoint-info {
    color: #1976d2;
    padding: 10px;
    background: #e3f2fd;
    border-left: 4px solid #1976d2;
}

.fashionpoint-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.fashionpoint-services-list .fashionpoint-service-item {
    width: 100%;
}

.fashionpoint-service-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.fashionpoint-service-groups-list .fashionpoint-service-group-item {
    width: 100%;
}

@media (max-width: 768px) {
    .fashionpoint-services-grid,
    .fashionpoint-service-groups-grid {
        grid-template-columns: 1fr;
    }
    
    /* Prevent horizontal overflow on mobile */
    .fashionpoint-services-wrapper,
    .fashionpoint-service-groups-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
}

/* Lookup Form Styles */
.fashionpoint-lookup-wrapper {
    margin: 20px 0;
}

.fashionpoint-lookup-form {
    margin-bottom: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
}

.fashionpoint-form-group {
    margin-bottom: 15px;
}

.fashionpoint-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.fashionpoint-uuid-input {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.fashionpoint-submit-btn {
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.fashionpoint-submit-btn:hover {
    background: #005a87;
}

.fashionpoint-loading {
    padding: 15px;
    text-align: center;
    color: #0073aa;
    font-weight: bold;
}

.fashionpoint-results {
    margin-top: 20px;
}

#fashionpoint-category-filter {
    padding: 15px;
    background: #f8f9ff;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

#fashionpoint-category-filter label {
    color: #333;
    font-size: 14px;
}

#fashionpoint-category-select {
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

#fashionpoint-category-select:hover {
    border-color: #667eea;
}

#fashionpoint-category-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Search Styles */
.fashionpoint-search-wrapper {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.fashionpoint-search-filter-row {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.fashionpoint-search-container {
    position: relative;
    flex: 1;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.fashionpoint-location-filter-container {
    position: relative;
    min-width: 200px;
    max-width: 240px;
    width: 240px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

.fashionpoint-location-filter-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    pointer-events: none;
    z-index: 1;
}

.fashionpoint-location-filter {
    width: 100%;
    padding: 18px 45px 18px 50px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fashionpoint-location-filter:hover {
    background-color: #f8f9ff;
}

.fashionpoint-location-filter:focus {
    outline: none;
    background-color: #f8f9ff;
    box-shadow: inset 0 0 0 2px #667eea;
}

.fashionpoint-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    pointer-events: none;
    z-index: 1;
}

.fashionpoint-search-input {
    width: 100%;
    padding: 18px 56px 18px 56px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.fashionpoint-search-input:focus {
    outline: none;
    background: #f8f9ff;
    box-shadow: inset 0 0 0 2px #667eea;
}

.fashionpoint-search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.fashionpoint-search-clear {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: #f0f0f0;
    border: none;
    color: #667eea;
    cursor: pointer;
    padding: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
}

.fashionpoint-search-clear:hover {
    background: #667eea;
    color: #fff;
}

.fashionpoint-search-results-info {
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
}

.fashionpoint-search-has-results {
    color: #667eea;
    background: #f8f9ff;
}

.theme-bellissimo .fashionpoint-search-has-results {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.fashionpoint-search-no-results {
    color: #d32f2f;
    background: #ffebee;
}

/* Table Styles */
.fashionpoint-services-table-wrapper {
    margin: 20px 0;
    overflow-x: auto;
    width: 100%;
    box-sizing: border-box;
    display: block;
    text-align: left;
}

.fashionpoint-services-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    margin: 0;
    display: table;
}

.fashionpoint-services-table th,
.fashionpoint-services-table td {
    box-sizing: border-box;
}

.fashionpoint-services-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.fashionpoint-services-table th {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    border: none;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

.fashionpoint-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
}

.fashionpoint-service-icon,
.fashionpoint-clock-icon,
.fashionpoint-price-icon,
.fashionpoint-action-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.fashionpoint-services-table td {
    padding: 24px 25px;
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.fashionpoint-services-table tbody tr:last-child td {
    border-bottom: none;
}

.fashionpoint-services-table tbody tr {
    transition: all 0.2s ease;
    background: #fff;
    position: relative;
}

.fashionpoint-services-table tbody tr:nth-child(odd) {
    background: #fff;
}

.fashionpoint-services-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.fashionpoint-services-table tbody tr:nth-child(odd):hover {
    background: rgba(102, 126, 234, 0.03);
}

.fashionpoint-services-table tbody tr:nth-child(even):hover {
    background: rgba(102, 126, 234, 0.05);
}

.theme-bellissimo .fashionpoint-services-table tbody tr:nth-child(odd) {
    background: #fff !important;
}

.theme-bellissimo .fashionpoint-services-table tbody tr:nth-child(even) {
    background: #faf9f7 !important;
}

.theme-bellissimo .fashionpoint-services-table tbody tr:nth-child(odd):hover {
    background: rgba(212, 175, 55, 0.03) !important;
}

.theme-bellissimo .fashionpoint-services-table tbody tr:nth-child(even):hover {
    background: rgba(212, 175, 55, 0.05) !important;
}

.fashionpoint-services-table tbody tr:hover td {
    border-bottom-color: #e0e0e0;
}

/* Column 1: Service Name */
.fashionpoint-services-table th:nth-child(1) {
    width: 40%;
    text-align: center;
}

.fashionpoint-services-table td:nth-child(1) {
    width: 40%;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: inherit;
    line-height: 1.5;
    padding-right: 20px;
    vertical-align: top;
}

.fashionpoint-location-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.fashionpoint-location-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(102, 126, 234, 0.2);
    transition: all 0.2s ease;
    text-align: center;
    box-sizing: border-box;
}

.fashionpoint-location-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.fashionpoint-services-table th:nth-child(1) .fashionpoint-header-icon {
    justify-content: center;
    width: 100%;
}

/* Column 2: Duration */
.fashionpoint-services-table th:nth-child(2) {
    width: 15%;
    text-align: center;
}

.fashionpoint-services-table td:nth-child(2) {
    width: 15%;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    font-family: inherit;
    vertical-align: middle;
}

.fashionpoint-duration-display {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 8px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Column 3: Price */
.fashionpoint-services-table th:nth-child(3) {
    width: 20%;
    text-align: center;
}

.fashionpoint-services-table td:nth-child(3) {
    width: 20%;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    font-family: inherit;
    vertical-align: middle;
}

/* Column 4: Action */
.fashionpoint-services-table th:nth-child(4) {
    width: 15%;
    text-align: center;
}

.fashionpoint-services-table td:nth-child(4) {
    width: 15%;
    text-align: center;
    vertical-align: middle;
}

.fashionpoint-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fashionpoint-price-display {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
    box-sizing: border-box;
}

.fashionpoint-price-bgn {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: inherit;
    line-height: 1.3;
}

.fashionpoint-price-bgn.fashionpoint-price-promo {
    color: #ff6b35;
    font-weight: 700;
    font-size: 18px;
}

.fashionpoint-price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 4px;
}

.fashionpoint-price-eur {
    font-size: 12px;
    color: #999;
    opacity: 0.8;
    margin-top: 2px;
}

.fashionpoint-service-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fashionpoint-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
    border-radius: 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(238, 90, 36, 0.3);
    animation: fashionpoint-promo-pulse 2s ease-in-out infinite;
}

.fashionpoint-promo-badge svg {
    fill: #fff;
    animation: fashionpoint-promo-star-spin 3s linear infinite;
}

.fashionpoint-promo-duration {
    margin-left: 2px;
    padding-left: 6px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 9px;
    font-weight: 600;
}

@keyframes fashionpoint-promo-pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(238, 90, 36, 0.3);
    }
    50% {
        box-shadow: 0 2px 12px rgba(238, 90, 36, 0.5);
    }
}

@keyframes fashionpoint-promo-star-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fashionpoint-price-eur {
    font-size: 13px;
    font-weight: 500;
    color: #667eea;
    opacity: 0.85;
    font-family: inherit;
}

/* Column 4: Action */
.fashionpoint-services-table th:nth-child(4) {
    text-align: center;
    width: 32%;
    min-width: 150px;
}

.fashionpoint-services-table td:nth-child(4) {
    text-align: center;
    overflow: visible;
    word-wrap: break-word;
}

.fashionpoint-action-btn,
.fashionpoint-select-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-sizing: border-box;
}

.fashionpoint-action-btn svg,
.fashionpoint-select-btn svg {
    flex-shrink: 0;
}

.fashionpoint-action-btn:hover,
.fashionpoint-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.fashionpoint-action-btn:active,
.fashionpoint-select-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.25);
}

.fashionpoint-booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.25);
    white-space: nowrap;
    box-sizing: border-box;
}

.fashionpoint-booking-btn svg {
    flex-shrink: 0;
}

.fashionpoint-booking-btn button {
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.fashionpoint-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: #fff !important;
    text-decoration: none;
}

.fashionpoint-booking-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.25);
}

.fashionpoint-table-info {
    margin-top: 20px;
    padding: 15px 20px;
    background: #f8f9ff;
    border-radius: 8px;
    text-align: right;
    font-size: 14px;
    color: #666;
    border: 1px solid #e8e8e8;
}

.fashionpoint-table-info strong {
    color: #667eea;
    font-size: 16px;
}

/* Location Badges */
.fashionpoint-location-badges {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fashionpoint-location-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
}

/* Multiple Booking Buttons */
.fashionpoint-multi-booking {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.fashionpoint-booking-btn-location {
    width: 100%;
    max-width: 100%;
    font-size: 13px;
    padding: 8px 12px;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
}

@media (max-width: 768px) {
    .fashionpoint-search-wrapper {
        padding: 0;
        margin-bottom: 15px;
    }
    
    .fashionpoint-search-filter-row {
        flex-direction: row;
        gap: 10px;
        align-items: stretch;
        width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .fashionpoint-search-container {
        flex: 1;
        min-width: 0;
        box-sizing: border-box;
    }
    
    .fashionpoint-location-filter-container {
        flex: 0 0 auto;
        min-width: 130px;
        max-width: 150px;
        width: auto;
        box-sizing: border-box;
        overflow: visible;
        flex-shrink: 0;
    }
    
    .fashionpoint-search-input {
        padding: 15px 48px 15px 48px;
        font-size: 14px;
    }
    
    .fashionpoint-location-filter {
        padding: 15px 30px 15px 40px;
        font-size: 13px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .fashionpoint-search-icon {
        left: 16px;
        width: 18px;
        height: 18px;
    }
    
    .fashionpoint-location-filter-icon {
        left: 16px;
        width: 18px;
        height: 18px;
    }
    
    .fashionpoint-search-clear {
        right: 12px;
        width: 28px;
        height: 28px;
        padding: 6px;
    }
    
    .fashionpoint-search-clear svg {
        width: 14px;
        height: 14px;
    }
    
    .fashionpoint-search-results-info {
        font-size: 13px;
        margin-top: 10px;
        padding: 8px 16px;
    }
    
    .fashionpoint-services-table-wrapper {
        margin: 15px 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        background: transparent;
    }
    
    .fashionpoint-category-header {
        padding: 15px 20px !important;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px !important;
        border-radius: 8px !important;
    }
    
    .fashionpoint-category-header h2 {
        font-size: 18px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .fashionpoint-services-table {
        font-size: 13px;
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    
    .fashionpoint-services-table thead {
        display: none;
    }
    
    .fashionpoint-services-table tbody {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        background: transparent;
    }
    
    .fashionpoint-services-table tbody tr {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        background: #fff;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        padding: 0;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .fashionpoint-services-table tbody tr:last-child {
        margin-bottom: 0;
    }
    
    .fashionpoint-services-table tbody td {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 12px 15px;
        text-align: left !important;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .fashionpoint-services-table tbody td:last-child {
        border-bottom: none;
    }
    
    .fashionpoint-services-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #667eea;
        display: block;
        margin-bottom: 5px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .fashionpoint-services-table tbody td:nth-child(1) {
        font-weight: 500;
        font-size: 14px;
        padding-top: 15px;
        padding-bottom: 10px;
        font-family: inherit;
    }
    
    .fashionpoint-services-table tbody td:nth-child(2) {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 8px 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
        font-weight: 500;
        font-family: inherit;
        box-sizing: border-box;
    }
    
    .fashionpoint-services-table tbody td:nth-child(3) {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 8px 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
        font-weight: 500;
        font-family: inherit;
        box-sizing: border-box;
        text-align: right;
    }
    
    .fashionpoint-services-table tbody td:nth-child(2):before {
        content: 'Продължителност: ';
    }
    
    .fashionpoint-services-table tbody td:nth-child(3):before {
        content: 'Цена: ';
        margin-left: 0;
        text-align: right;
        display: block;
        margin-bottom: 5px;
    }
    
    .fashionpoint-price-wrapper {
        align-items: flex-end;
        gap: 6px;
        width: 100%;
    }
    
    .fashionpoint-services-table tbody td:nth-child(3) .fashionpoint-price-display {
        align-items: flex-end;
        text-align: right;
    }
    
    .fashionpoint-price-display {
        align-items: flex-end;
        gap: 3px;
        text-align: right;
    }
    
    .fashionpoint-price-bgn {
        font-size: 14px;
        font-weight: 500;
        font-family: inherit;
    }
    
    .fashionpoint-price-bgn.fashionpoint-price-promo {
        color: #e53935;
        font-weight: 600;
    }
    
    .fashionpoint-price-old {
        font-size: 12px;
        color: #999;
        text-decoration: line-through;
        margin-bottom: 2px;
    }
    
    .fashionpoint-price-eur {
        font-size: 12px;
        font-weight: 500;
        font-family: inherit;
    }
    
    .fashionpoint-promo-badge {
        font-size: 9px;
        padding: 3px 8px;
        gap: 3px;
        align-self: flex-end;
    }
    
    .fashionpoint-promo-badge svg {
        width: 10px;
        height: 10px;
    }
    
    .fashionpoint-promo-duration {
        font-size: 8px;
        padding-left: 5px;
        margin-left: 1px;
    }
    
    .fashionpoint-services-table tbody td:nth-child(4) {
        padding: 15px;
        text-align: center !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .fashionpoint-services-table tbody td:nth-child(4):before {
        display: none;
    }
    
    .fashionpoint-location-badges {
        margin-top: 10px !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .fashionpoint-location-badge {
        font-size: 9px !important;
        padding: 3px 8px !important;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
    }
    
    .fashionpoint-action-btn,
    .fashionpoint-booking-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        white-space: normal;
    }
    
    .fashionpoint-booking-btn-location {
        font-size: 12px;
        padding: 8px 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Location Selection Modal */
.fashionpoint-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.fashionpoint-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 100000;
}

.fashionpoint-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    z-index: 100001;
    animation: fashionpoint-modal-fade-in 0.3s ease;
}

@keyframes fashionpoint-modal-fade-in {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.fashionpoint-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fashionpoint-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fashionpoint-modal-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.fashionpoint-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.fashionpoint-modal-body {
    padding: 25px;
}

.fashionpoint-modal-service-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8e8e8;
    text-align: center;
    line-height: 1.4;
}

.fashionpoint-location-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fashionpoint-location-container {
    margin-bottom: 12px;
}

.fashionpoint-location-option {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.25s ease;
    cursor: pointer;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.fashionpoint-location-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.fashionpoint-location-option:hover {
    border-color: #667eea;
    background: linear-gradient(to bottom, rgba(102, 126, 234, 0.02), white);
    transform: translateY(-2px);
}

.fashionpoint-location-option:hover::before {
    transform: scaleX(1);
}

.fashionpoint-location-option:active {
    transform: translateY(0);
}

.fashionpoint-location-option.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #fff;
    transform: translateY(0);
}

.fashionpoint-location-option.selected::before {
    transform: scaleX(1);
    background: white;
}

.fashionpoint-location-option.selected:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6941a0 100%) !important;
    border-color: #5568d3 !important;
    transform: translateY(0) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

.fashionpoint-location-option.selected:hover .fashionpoint-location-option-name,
.fashionpoint-location-option.selected:hover .fashionpoint-available-count,
.fashionpoint-location-option.selected:hover .fashionpoint-unavailable-services small {
    color: #fff !important;
}

/* Bellissimo theme location options */
.theme-bellissimo .fashionpoint-location-option::before {
    background: linear-gradient(90deg, #d4af37 0%, #c19d2e 100%);
}

.theme-bellissimo .fashionpoint-location-option:hover {
    border-color: #d4af37;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.02), white);
}

.theme-bellissimo .fashionpoint-location-option.selected {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
    border-color: #d4af37;
}

.theme-bellissimo .fashionpoint-location-option.selected:hover {
    background: linear-gradient(135deg, #c19d2e 0%, #b08c28 100%) !important;
    border-color: #c19d2e !important;
    transform: translateY(0) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4) !important;
}

.theme-bellissimo .fashionpoint-location-option.selected:hover .fashionpoint-location-option-name,
.theme-bellissimo .fashionpoint-location-option.selected:hover .fashionpoint-available-count,
.theme-bellissimo .fashionpoint-location-option.selected:hover .fashionpoint-unavailable-services small {
    color: #fff !important;
}

.fashionpoint-location-option.selected .fashionpoint-location-option-name {
    color: #fff;
}

.fashionpoint-location-option.selected .fashionpoint-available-count {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.fashionpoint-location-option.selected .fashionpoint-available-count::before {
    background: #fff;
    color: #667eea;
}

.fashionpoint-location-option.selected .fashionpoint-unavailable-services {
    background: rgba(255, 255, 255, 0.15);
    border-left-color: rgba(255, 255, 255, 0.4);
}

.fashionpoint-location-option.selected .fashionpoint-unavailable-services small {
    color: #fff;
}

.fashionpoint-location-option:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.fashionpoint-location-option:hover .fashionpoint-location-option-name {
    color: #667eea;
}

.fashionpoint-location-option-name {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.fashionpoint-location-option-action {
    display: none;
}

.fashionpoint-modal-page {
    position: relative;
    width: 100%;
    min-height: 200px;
}

.fashionpoint-page-enter {
    animation: fashionpoint-slide-in 0.3s ease-out forwards;
}

.fashionpoint-page-exit {
    animation: fashionpoint-slide-out 0.3s ease-in forwards;
}

@keyframes fashionpoint-slide-in {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fashionpoint-slide-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.fashionpoint-modal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    color: #667eea;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 16px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}

.fashionpoint-modal-back:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    border-color: rgba(102, 126, 234, 0.3);
    color: #764ba2;
    transform: translateX(-3px);
}

.fashionpoint-modal-back svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.fashionpoint-modal-back:hover svg {
    transform: translateX(-2px);
}

/* Bellissimo theme back button */
.theme-bellissimo .fashionpoint-modal-back,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-modal-back {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(193, 157, 46, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.theme-bellissimo .fashionpoint-modal-back:hover,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-modal-back:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(193, 157, 46, 0.12) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    color: #c19d2e;
}

.fashionpoint-doctor-section-title,
.fashionpoint-calendar-section-title,
.fashionpoint-login-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fashionpoint-doctor-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .fashionpoint-doctor-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .fashionpoint-doctor-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fashionpoint-doctor-option {
    display: block;
    padding: 0;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.fashionpoint-doctor-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03), rgba(118, 75, 162, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.fashionpoint-doctor-option:hover {
    border-color: #667eea;
    transform: translateY(-6px);
}

.fashionpoint-doctor-option:hover::before {
    opacity: 1;
}

.fashionpoint-doctor-option:active {
    transform: translateY(-3px);
}

.fashionpoint-doctor-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fashionpoint-doctor-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.fashionpoint-doctor-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1);
}

.fashionpoint-doctor-option:hover .fashionpoint-doctor-image {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.fashionpoint-doctor-image-placeholder {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.fashionpoint-doctor-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    background: white;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.fashionpoint-doctor-title {
    font-size: 11px;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.fashionpoint-doctor-option-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    display: block;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.fashionpoint-doctor-specialty {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    line-height: 1.5;
    margin-top: 4px;
}

.fashionpoint-doctor-bio {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fashionpoint-doctor-option:hover .fashionpoint-doctor-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.fashionpoint-doctor-option:hover .fashionpoint-doctor-option-name,
.fashionpoint-doctor-option:hover .fashionpoint-doctor-title,
.fashionpoint-doctor-option:hover .fashionpoint-doctor-specialty,
.fashionpoint-doctor-option:hover .fashionpoint-doctor-bio {
    color: #ffffff;
}

.fashionpoint-doctor-option-any {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    border-color: #e0e7ff;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fashionpoint-doctor-option-any .fashionpoint-doctor-card-content {
    padding: 32px 24px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}

.fashionpoint-doctor-option-any .fashionpoint-doctor-option-name {
    font-size: 17px;
    font-weight: 600;
}

.fashionpoint-doctor-option-any::after {
    content: '→';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #667eea;
    opacity: 0;
    transition: all 0.3s ease;
}

.fashionpoint-doctor-option-any:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.fashionpoint-doctor-option-any:hover::after {
    opacity: 1;
    right: 20px;
    color: white;
}

.fashionpoint-doctor-option-any:hover .fashionpoint-doctor-option-name {
    color: #ffffff;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-doctor-option,
.theme-bellissimo .fashionpoint-doctor-option {
    background: #ffffff;
    border-color: #f0e9dc;
}

.theme-bellissimo .fashionpoint-doctor-option::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(193, 157, 46, 0.03));
}

.theme-bellissimo .fashionpoint-doctor-image-wrapper {
    background: linear-gradient(135deg, #fffbf5 0%, #fff5e8 100%);
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-doctor-option:hover,
.theme-bellissimo .fashionpoint-doctor-option:hover {
    border-color: #d4af37;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-doctor-option:hover .fashionpoint-doctor-info,
.theme-bellissimo .fashionpoint-doctor-option:hover .fashionpoint-doctor-info {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-doctor-title,
.theme-bellissimo .fashionpoint-doctor-title {
    color: #d4af37;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-doctor-option-any,
.theme-bellissimo .fashionpoint-doctor-option-any {
    background: linear-gradient(135deg, #fffbf5 0%, #fff5e8 100%);
    border-color: #f0e9dc;
}

.theme-bellissimo .fashionpoint-doctor-option-any::after {
    color: #d4af37;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-doctor-option-any:hover,
.theme-bellissimo .fashionpoint-doctor-option-any:hover {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
    border-color: #d4af37;
}

/* Multi-select floating button */
.fashionpoint-book-selected-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    max-width: calc(100vw - 40px);
    white-space: nowrap;
}

.fashionpoint-book-selected-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

/* Bellissimo theme - Book Selected button */
.theme-bellissimo .fashionpoint-book-selected-btn,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-book-selected-btn,
.fashionpoint-book-selected-btn.theme-bellissimo {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%) !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4) !important;
}

.theme-bellissimo .fashionpoint-book-selected-btn:hover,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-book-selected-btn:hover,
.fashionpoint-book-selected-btn.theme-bellissimo:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5) !important;
}

.fashionpoint-selected-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

/* Multi-service summary */
.fashionpoint-multi-service-summary {
    background: transparent;
    border: none;
    padding: 0 0 20px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}

.fashionpoint-multi-service-summary h4 {
    margin: 0 0 16px 0;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fashionpoint-multi-service-summary ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fashionpoint-multi-service-summary li {
    margin: 0;
    padding: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.fashionpoint-service-name {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fashionpoint-service-price {
    color: #667eea;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.theme-bellissimo .fashionpoint-service-price {
    color: #d4af37;
}

.fashionpoint-remove-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.2);
    border-radius: 50%;
    color: #ff3b30;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.fashionpoint-remove-service:hover {
    background: #ff3b30;
    border-color: #ff3b30;
    color: white;
    transform: scale(1.1);
}

.fashionpoint-remove-service svg {
    width: 14px;
    height: 14px;
}

.fashionpoint-multi-service-summary .fashionpoint-info-text {
    margin: 16px 0 0 0;
    padding: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-align: left;
    border: none;
}

/* Location services info */
.fashionpoint-location-services-info {
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fashionpoint-available-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    color: #667eea;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.1);
}

.fashionpoint-available-count::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
}

.fashionpoint-unavailable-services {
    margin-top: 4px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.08) 0%, rgba(255, 193, 7, 0.08) 100%);
    border-left: 3px solid #ff9800;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(255, 152, 0, 0.1);
}

.fashionpoint-unavailable-services small {
    color: #e65100;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fashionpoint-unavailable-services small::before {
    content: '⚠';
    font-size: 13px;
    flex-shrink: 0;
}

/* Warning message */
.fashionpoint-warning-message {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(255, 152, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.fashionpoint-warning-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9800 0%, #ffc107 100%);
}

.fashionpoint-warning-message p {
    margin: 8px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.fashionpoint-warning-message p:first-of-type {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fashionpoint-warning-message strong {
    color: #e65100;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fashionpoint-warning-message strong::before {
    content: '⚠';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
    color: white;
    border-radius: 50%;
    font-size: 14px;
}

.fashionpoint-warning-message ul {
    margin: 12px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.fashionpoint-warning-message li {
    margin: 0;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    color: #e65100;
    font-weight: 500;
    font-size: 13px;
    box-shadow: 0 1px 3px rgba(255, 152, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.fashionpoint-warning-message li::before {
    content: '×';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255, 152, 0, 0.15);
    color: #e65100;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.fashionpoint-service-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: opacity 0.2s ease;
}

.fashionpoint-service-checkbox-label:hover {
    opacity: 0.8;
}

.fashionpoint-service-checkbox-label-top {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 999 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px;
    background: white !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e5e7eb !important;
    font-size: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.fashionpoint-service-checkbox-label-top::before {
    content: '+' !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #667eea !important;
    line-height: 1;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
}

/* OLD RULES REMOVED - REPLACED WITH NEW ONES AT THE END OF FILE */

.fashionpoint-checkbox-checkmark-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    z-index: 3;
    pointer-events: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fashionpoint-checkmark-pop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes fashionpoint-checkmark-pop {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* OLD HOVER RULES REMOVED - REPLACED WITH NEW ONES AT THE END OF FILE */

.fashionpoint-service-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.fashionpoint-checkbox-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 3px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.fashionpoint-checkbox-custom::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fashionpoint-checkbox-custom::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.25s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    top: 5px;
    left: 9px;
    z-index: 2;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.fashionpoint-service-checkbox:checked + .fashionpoint-checkbox-custom::before {
    opacity: 1;
    transform: scale(1);
}

.fashionpoint-service-checkbox:checked + .fashionpoint-checkbox-custom {
    border-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.fashionpoint-service-checkbox:checked + .fashionpoint-checkbox-custom::after {
    transform: rotate(45deg) scale(1);
    border-color: #ffffff;
    border-width: 0 3px 3px 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.fashionpoint-service-checkbox-label-top:hover .fashionpoint-checkbox-custom {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25), inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fashionpoint-service-checkbox-label-top:active .fashionpoint-checkbox-custom {
    transform: scale(0.95);
}

/* Selected state for cards and rows */
.fashionpoint-service-card.fashionpoint-service-selected,
tr.fashionpoint-service-selected {
    position: relative;
    border: 3px solid #667eea !important;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fashionpoint-selected-fade 0.5s ease-out;
}

@keyframes fashionpoint-selected-fade {
    0% {
        border-color: transparent;
        background: transparent;
        opacity: 0.5;
    }
    100% {
        border-color: #667eea;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.05) 100%);
        opacity: 1;
    }
}

.fashionpoint-service-card.fashionpoint-service-selected::before {
    content: none;
    border-radius: 12px 12px 0 0;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.fashionpoint-service-card.fashionpoint-service-selected::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
}

.fashionpoint-service-card.fashionpoint-service-selected .fashionpoint-card-header,
tr.fashionpoint-service-selected td:first-child {
    position: relative;
}

.fashionpoint-service-card.fashionpoint-service-selected .fashionpoint-card-title,
tr.fashionpoint-service-selected .fashionpoint-service-title {
    color: #667eea;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(102, 126, 234, 0.1);
}

/* Bellissimo theme support */
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-checkbox-custom,
.theme-bellissimo .fashionpoint-checkbox-custom {
    border-color: #E8DCC8;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-checkbox-custom::before,
.theme-bellissimo .fashionpoint-checkbox-custom::before {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-checkbox:checked + .fashionpoint-checkbox-custom,
.theme-bellissimo .fashionpoint-service-checkbox:checked + .fashionpoint-checkbox-custom {
    border-color: #d4af37;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-checkbox-label-top:hover .fashionpoint-checkbox-custom,
.theme-bellissimo .fashionpoint-service-checkbox-label-top:hover .fashionpoint-checkbox-custom {
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25), inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-checkbox-label-top::before,
.theme-bellissimo .fashionpoint-service-checkbox-label-top::before {
    color: #d4af37;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-checkbox-label-top:hover,
.theme-bellissimo .fashionpoint-service-checkbox-label-top:hover {
    background: #fffbf0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2), 0 2px 4px rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-checkbox-label-top.fashionpoint-checkbox-selected,
.theme-bellissimo .fashionpoint-service-checkbox-label-top.fashionpoint-checkbox-selected,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-checkbox-label-top:has(.fashionpoint-service-checkbox:checked),
.theme-bellissimo .fashionpoint-service-checkbox-label-top:has(.fashionpoint-service-checkbox:checked) {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%) !important;
    border: 2px solid #d4af37 !important;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3), 0 2px 8px rgba(212, 175, 55, 0.2), 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
    transform: scale(1.05) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-checkbox-label-top.fashionpoint-checkbox-selected:hover,
.theme-bellissimo .fashionpoint-service-checkbox-label-top.fashionpoint-checkbox-selected:hover,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-checkbox-label-top:has(.fashionpoint-service-checkbox:checked):hover,
.theme-bellissimo .fashionpoint-service-checkbox-label-top:has(.fashionpoint-service-checkbox:checked):hover {
    background: linear-gradient(135deg, #c19d2e 0%, #b8942a 100%) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4), 0 3px 10px rgba(212, 175, 55, 0.25), 0 0 0 4px rgba(212, 175, 55, 0.15) !important;
    transform: scale(1.08) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-card.fashionpoint-service-selected,
.theme-bellissimo .fashionpoint-service-card.fashionpoint-service-selected,
.fashionpoint-services-table-wrapper.theme-bellissimo tr.fashionpoint-service-selected,
.theme-bellissimo tr.fashionpoint-service-selected {
    border: 3px solid #d4af37 !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(193, 157, 46, 0.05) 100%) !important;
    animation: fashionpoint-selected-fade-gold 0.5s ease-out;
}

@keyframes fashionpoint-selected-fade-gold {
    0% {
        border-color: transparent;
        background: transparent;
        opacity: 0.5;
    }
    100% {
        border-color: #d4af37;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(193, 157, 46, 0.05) 100%);
        opacity: 1;
    }
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-card.fashionpoint-service-selected::before,
.theme-bellissimo .fashionpoint-service-card.fashionpoint-service-selected::before {
    background: linear-gradient(90deg, #d4af37 0%, #c19d2e 100%);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-card.fashionpoint-service-selected::after,
.theme-bellissimo .fashionpoint-service-card.fashionpoint-service-selected::after {
    border-color: rgba(212, 175, 55, 0.2);
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-service-card.fashionpoint-service-selected .fashionpoint-card-title,
.theme-bellissimo .fashionpoint-service-card.fashionpoint-service-selected .fashionpoint-card-title,
.fashionpoint-services-table-wrapper.theme-bellissimo tr.fashionpoint-service-selected .fashionpoint-service-title,
.theme-bellissimo tr.fashionpoint-service-selected .fashionpoint-service-title {
    color: #d4af37;
    text-shadow: 0 1px 2px rgba(212, 175, 55, 0.1);
}

/* Bellissimo theme - Multi-service summary */
.theme-bellissimo .fashionpoint-multi-service-summary,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-multi-service-summary {
    background: transparent;
    border-color: transparent;
}

.theme-bellissimo .fashionpoint-multi-service-summary::before,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-multi-service-summary::before {
    background: linear-gradient(90deg, #d4af37 0%, #c19d2e 100%);
}

.theme-bellissimo .fashionpoint-multi-service-summary h4,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-multi-service-summary h4 {
    color: #d4af37;
}

.theme-bellissimo .fashionpoint-multi-service-summary h4::before,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-multi-service-summary h4::before {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
}

.theme-bellissimo .fashionpoint-multi-service-summary li::before,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-multi-service-summary li::before {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
}

.theme-bellissimo .fashionpoint-multi-service-summary li:hover,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-multi-service-summary li:hover {
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.15);
}

.theme-bellissimo .fashionpoint-multi-service-summary .fashionpoint-info-text,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-multi-service-summary .fashionpoint-info-text {
    background: transparent;
    color: #666;
    border: none;
}

.theme-bellissimo .fashionpoint-available-count,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-available-count {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(193, 157, 46, 0.12) 100%);
    border-color: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.1);
}

.theme-bellissimo .fashionpoint-available-count::before,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-available-count::before {
    background: #d4af37;
}

.theme-bellissimo .fashionpoint-remove-service,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-remove-service {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.theme-bellissimo .fashionpoint-remove-service:hover,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-remove-service:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: white;
}

@media (max-width: 768px) {
    /* Mobile app-like experience */
    body.fashionpoint-modal-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100vh;
    }
    
    .fashionpoint-book-selected-btn {
        bottom: 20px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
        max-width: calc(100vw - 30px);
        padding: 16px 24px;
        font-size: 15px;
        font-weight: 700;
        justify-content: center;
        text-align: center;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .fashionpoint-modal {
        padding: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .fashionpoint-modal-content {
        max-width: 100%;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
        top: 0;
        left: 0;
        transform: none !important;
        position: fixed;
        animation: fashionpoint-modal-slide-up 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: #ffffff !important;
    }
    
    @keyframes fashionpoint-modal-slide-up {
        from {
            transform: translateY(100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .fashionpoint-modal-header {
        padding: 16px 20px;
        background: white;
        border-bottom: 1px solid #f0f0f0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    
    .fashionpoint-modal-title {
        font-size: 18px;
        font-weight: 700;
    }
    
    .fashionpoint-modal-close {
        font-size: 24px;
        width: 32px;
        height: 32px;
        background: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    
    .fashionpoint-modal-close:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: scale(1.05);
    }
    
    .fashionpoint-modal-body {
        padding: 20px 15px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex: 1;
        background: transparent;
    }
    
    .fashionpoint-modal-service-title {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 16px;
        padding-bottom: 12px;
        line-height: 1.4;
        color: #1a1a1a;
    }
    
    /* Multi-service summary mobile */
    .fashionpoint-multi-service-summary {
        border-radius: 12px;
        margin-bottom: 20px;
        background: transparent;
    }
    
    .fashionpoint-multi-service-summary h4 {
        font-size: 14px;
    }
    
    .fashionpoint-multi-service-summary li {
        padding: 0;
        font-size: 15px;
    }
    
    .fashionpoint-service-price {
        font-size: 15px;
    }
    
    .fashionpoint-remove-service {
        width: 32px;
        height: 32px;
    }
    
    /* Location list mobile - App-like experience */
    .fashionpoint-location-list {
        gap: 14px;
        padding: 6px;
    }
    
    .fashionpoint-location-option {
        padding: 22px 24px;
        text-align: left;
        display: flex;
        flex-direction: column;
        width: 100%;
        box-sizing: border-box;
        border-radius: 18px;
        background: white;
        border: 2px solid transparent;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        position: relative;
        min-height: 80px;
        justify-content: center;
    }
    
    .fashionpoint-location-option:active {
        transform: scale(0.97);
        background: #f8f9ff;
    }
    
    .fashionpoint-location-option-name {
        font-size: 17px;
        font-weight: 600;
        width: 100%;
        display: block;
        margin-bottom: 4px;
        letter-spacing: -0.01em;
    }
    
    .fashionpoint-location-services-info {
        margin-top: 8px;
    }
    
    .fashionpoint-available-count {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .fashionpoint-unavailable-services {
        margin-top: 8px;
    }
    
    .fashionpoint-unavailable-services small {
        font-size: 12px;
    }
    
    /* Doctor list mobile */
    .fashionpoint-doctor-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .fashionpoint-doctor-option {
        border-radius: 18px;
        background: white;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
    }
    
    .fashionpoint-doctor-option:active {
        transform: scale(0.96);
    }
    
    .fashionpoint-doctor-image-wrapper {
        height: 220px;
        padding: 20px;
    }
    
    .fashionpoint-doctor-info {
        padding: 20px;
    }
    
    .fashionpoint-doctor-option-name {
        font-size: 17px;
    }
    
    .fashionpoint-doctor-specialty {
        font-size: 13px;
    }
    
    .fashionpoint-doctor-bio {
        font-size: 12px;
    }
    
    .fashionpoint-doctor-option-any {
        min-height: 100px;
        border-radius: 18px;
    }
    
    .fashionpoint-doctor-option-any .fashionpoint-doctor-card-content {
        padding: 28px 20px;
    }
    
    /* Warning message mobile */
    .fashionpoint-warning-message {
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 16px;
    }
    
    /* Back buttons mobile */
    .fashionpoint-modal-back {
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 10px;
        margin-bottom: 16px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .fashionpoint-modal-back:active {
        transform: scale(0.97);
        opacity: 0.8;
    }
    
    .fashionpoint-modal-back svg {
        width: 18px;
        height: 18px;
    }
    
    .fashionpoint-location-option-action {
        display: none;
    }
    
    /* Smooth scrolling */
    .fashionpoint-modal-body::-webkit-scrollbar {
        display: none;
    }
    
    /* Pull to refresh indicator */
    .fashionpoint-modal-body {
        overscroll-behavior: contain;
    }
}

@media (max-width: 480px) {
    .fashionpoint-modal {
        padding: 0;
    }
    
    .fashionpoint-modal-content {
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
        position: fixed;
        width: 100%;
        max-width: 100%;
    }
    
    .fashionpoint-modal-header {
        padding: 12px 15px;
    }
    
    .fashionpoint-modal-title {
        font-size: 16px;
    }
    
    .fashionpoint-modal-body {
        padding: 15px 12px;
    }
    
    .fashionpoint-location-option {
        padding: 16px 18px;
        text-align: center;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .fashionpoint-location-option-name {
        font-size: 15px;
        width: 100%;
        display: block;
    }
    
    .fashionpoint-location-option-action {
        display: none;
    }
}

/* Bellissimo Theme Styles */
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-services-table thead,
.theme-bellissimo .fashionpoint-services-table thead {
    background: #F2E5D2 !important;
    color: #1a1a1a !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-services-table th {
    background: transparent !important;
    color: #1a1a1a !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-category-header,
.theme-bellissimo .fashionpoint-category-header {
    background: #F2E5D2 !important;
    color: #1a1a1a !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-services-table tbody tr {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-services-table tbody tr:nth-child(odd) {
    background: #fff !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-services-table tbody tr:nth-child(even) {
    background: #faf9f7 !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-services-table tbody tr:nth-child(odd):hover {
    background: rgba(212, 175, 55, 0.03) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-services-table tbody tr:nth-child(even):hover {
    background: rgba(212, 175, 55, 0.05) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-services-table td {
    border-bottom: 1px solid #e8e8e8;
    color: #333;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-booking-btn,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-booking-btn-location,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-action-btn,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-select-btn,
.theme-bellissimo .fashionpoint-booking-btn,
.theme-bellissimo .fashionpoint-booking-btn-location,
.theme-bellissimo .fashionpoint-action-btn,
.theme-bellissimo .fashionpoint-select-btn {
    background: #d4af37 !important;
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.25) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-booking-btn:hover,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-booking-btn-location:hover,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-action-btn:hover,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-select-btn:hover {
    background: #c19d2e !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-badge {
    background: #d4af37 !important;
    color: #fff !important;
    box-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-badge:hover {
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.4);
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-modal-header,
.theme-bellissimo .fashionpoint-modal-header {
    background: #F2E5D2 !important;
    color: #1a1a1a !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-modal-close,
.theme-bellissimo .fashionpoint-modal-close {
    color: #1a1a1a !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-modal-close:hover,
.theme-bellissimo .fashionpoint-modal-close:hover {
    background: rgba(0, 0, 0, 0.1) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-option,
.theme-bellissimo .fashionpoint-location-option {
    background: #fff !important;
    border: 2px solid #e8e8e8 !important;
    color: #333 !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-option.selected,
.theme-bellissimo .fashionpoint-location-option.selected {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%) !important;
    border-color: #d4af37 !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-option.selected .fashionpoint-available-count::before,
.theme-bellissimo .fashionpoint-location-option.selected .fashionpoint-available-count::before {
    color: #d4af37 !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-option:hover,
.theme-bellissimo .fashionpoint-location-option:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(193, 157, 46, 0.05) 100%) !important;
    border-color: #d4af37 !important;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-option:hover .fashionpoint-location-option-name,
.theme-bellissimo .fashionpoint-location-option:hover .fashionpoint-location-option-name {
    color: #d4af37 !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-option-action,
.theme-bellissimo .fashionpoint-location-option-action {
    display: none !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-price-bgn.fashionpoint-price-promo {
    color: #d4af37;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-promo-badge,
.theme-bellissimo .fashionpoint-promo-badge {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%) !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
}

.theme-bellissimo .fashionpoint-category-promo-badge {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%) !important;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3) !important;
}

.theme-bellissimo .fashionpoint-promo-row {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.02) 100%) !important;
}

.theme-bellissimo .fashionpoint-promo-row:nth-child(even) {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%) !important;
}

.theme-bellissimo .fashionpoint-promo-row:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.04) 100%) !important;
}

.theme-bellissimo .fashionpoint-promo-row:nth-child(even):hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.05) 100%) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-duration-display,
.theme-bellissimo .fashionpoint-duration-display {
    background: rgba(212, 175, 55, 0.1) !important;
    color: #333;
}

.theme-bellissimo .fashionpoint-duration-display svg {
    color: #d4af37 !important;
}

.theme-bellissimo .fashionpoint-promo-badge-mobile {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%) !important;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3) !important;
}

.theme-bellissimo .fashionpoint-promo-card {
    border: 2px solid #d4af37 !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%) !important;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2) !important;
}

.theme-bellissimo .fashionpoint-promo-card::before {
    background: linear-gradient(180deg, #d4af37 0%, #c19d2e 100%) !important;
}

.theme-bellissimo .fashionpoint-product-buy-btn {
    background: #d4af37 !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
}

.theme-bellissimo .fashionpoint-product-buy-btn:hover {
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4) !important;
}

.theme-bellissimo .fashionpoint-product-buy-btn:active {
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-search-container,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-filter-container {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-search-input:focus,
.theme-bellissimo .fashionpoint-search-input:focus {
    background: #fafafa;
    box-shadow: inset 0 0 0 2px #000000;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-filter:hover,
.theme-bellissimo .fashionpoint-location-filter:hover {
    background-color: rgba(212, 175, 55, 0.1) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-filter:focus,
.theme-bellissimo .fashionpoint-location-filter:focus {
    background-color: rgba(212, 175, 55, 0.1) !important;
    box-shadow: inset 0 0 0 2px #d4af37 !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-filter,
.theme-bellissimo .fashionpoint-location-filter {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-filter option:hover,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-filter option:checked,
.theme-bellissimo .fashionpoint-location-filter option:hover,
.theme-bellissimo .fashionpoint-location-filter option:checked {
    background-color: rgba(212, 175, 55, 0.2) !important;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-search-icon,
.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-location-filter-icon,
.theme-bellissimo .fashionpoint-search-icon,
.theme-bellissimo .fashionpoint-location-filter-icon {
    color: #000000;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-table-info {
    background: #F2E5D2;
    border: 1px solid #e8e8e8;
    color: #333;
}

.fashionpoint-services-table-wrapper.theme-bellissimo .fashionpoint-table-info strong {
    color: #d4af37;
}

/* Bellissimo Theme - Type Toggle Buttons */
.theme-bellissimo .fashionpoint-type-toggle-btn.fashionpoint-type-services.active,
.theme-bellissimo .fashionpoint-type-toggle-btn.fashionpoint-type-packages.active,
.theme-bellissimo .fashionpoint-type-toggle-btn.fashionpoint-type-products.active {
    background: #d4af37 !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4) !important;
}

/* Bellissimo Theme - Mobile Buttons */
.theme-bellissimo .fashionpoint-booking-btn-mobile,
.theme-bellissimo .fashionpoint-action-btn-mobile {
    background: #d4af37 !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
}

.theme-bellissimo .fashionpoint-booking-btn-mobile:hover,
.theme-bellissimo .fashionpoint-action-btn-mobile:hover {
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4) !important;
}

/* Bellissimo Theme - Mobile Promo Card Styles */
@media (max-width: 768px) {
    .theme-bellissimo .fashionpoint-promo-card {
        border: 2px solid rgba(212, 175, 55, 0.2) !important;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(212, 175, 55, 0.01) 100%) !important;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15) !important;
    }
    
    .theme-bellissimo .fashionpoint-promo-card .fashionpoint-card-header {
        border-bottom-color: rgba(212, 175, 55, 0.1) !important;
    }
    
    .theme-bellissimo .fashionpoint-promo-card .fashionpoint-card-pricing {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%) !important;
        border: 1px solid rgba(212, 175, 55, 0.15) !important;
    }
    
    .theme-bellissimo .fashionpoint-price-promo-mobile {
        color: #d4af37 !important;
    }
}

/* Calendar Page Styles */
.fashionpoint-date-picker {
    margin-bottom: 24px;
    text-align: center;
}

.fashionpoint-date-input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    min-width: 200px;
    transition: all 0.2s ease;
}

.fashionpoint-date-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Calendar Wrapper - Two Column Layout */
.fashionpoint-calendar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.fashionpoint-calendar-main {
    width: 100%;
}

/* Calendar Loading State */
.fashionpoint-calendar-loading {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}

.fashionpoint-calendar-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 3px solid #ddd;
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Calendar Header */
.fashionpoint-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 4px;
}

.fashionpoint-calendar-month-year {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
    flex: 1;
    text-align: center;
}

.fashionpoint-calendar-nav-btn {
    background: transparent;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.fashionpoint-calendar-nav-btn:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

.fashionpoint-calendar-nav-btn:active {
    transform: scale(0.95);
}

/* Theme-specific navigation button styles */
.theme-bellissimo .fashionpoint-calendar-nav-btn {
    border-color: #d4af37;
    color: #d4af37;
}

.theme-bellissimo .fashionpoint-calendar-nav-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-color: #d4af37;
    color: white;
}

.fashionpoint-calendar-nav {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.fashionpoint-calendar-nav:hover {
    background: #f5f5f5;
    color: #667eea;
}

/* Bellissimo theme - Month navigation */
.theme-bellissimo .fashionpoint-calendar-nav:hover {
    color: #d4af37;
}

.fashionpoint-calendar-nav:active {
    transform: scale(0.95);
}

.fashionpoint-calendar-nav svg {
    display: block;
}

/* Day Names Header */
.fashionpoint-calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.fashionpoint-calendar-day-name {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    padding: 8px 4px;
    text-transform: uppercase;
}

/* Calendar Grid */
.fashionpoint-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.fashionpoint-calendar-day {
    aspect-ratio: 1;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 40px;
}

.fashionpoint-calendar-day:hover:not(.fashionpoint-calendar-day-empty):not(.fashionpoint-calendar-day-past):not(.fashionpoint-calendar-day-unavailable) {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

/* Bellissimo theme - Calendar day hover */
.theme-bellissimo .fashionpoint-calendar-day:hover:not(.fashionpoint-calendar-day-empty):not(.fashionpoint-calendar-day-past):not(.fashionpoint-calendar-day-unavailable) {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.fashionpoint-calendar-day-empty {
    border: none;
    background: transparent;
    cursor: default;
}

.fashionpoint-calendar-day-past {
    color: #ccc !important;
    background: #f5f5f5 !important;
    border-color: #e0e0e0 !important;
    cursor: not-allowed !important;
    opacity: 0.5;
    pointer-events: none;
}

.fashionpoint-calendar-day-past:hover {
    background: #f5f5f5 !important;
    border-color: #e0e0e0 !important;
    transform: none !important;
    box-shadow: none !important;
}

.fashionpoint-calendar-day-today {
    border-color: #667eea;
    background: #f8f9ff;
    font-weight: 600;
    color: #667eea;
}

/* Bellissimo theme - Today */
.theme-bellissimo .fashionpoint-calendar-day-today {
    border-color: #d4af37;
    background: #faf9f7;
    color: #d4af37;
}

.fashionpoint-calendar-day-available {
    border-color: #4caf50;
    background: #f1f8f4;
    position: relative;
}

.fashionpoint-calendar-day-available::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #4caf50;
    border-radius: 50%;
}

.fashionpoint-calendar-day-available:hover {
    border-color: #4caf50;
    background: #e8f5e9;
}

.fashionpoint-calendar-day-unavailable {
    color: #999;
    background: #f5f5f5;
    border-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.6;
}

.fashionpoint-calendar-day-selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #667eea;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.fashionpoint-calendar-day-selected:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    border-color: #764ba2;
}

/* Bellissimo theme - Selected date */
.theme-bellissimo .fashionpoint-calendar-day-selected {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    color: #d4af37 !important;
    font-weight: 700;
}

.theme-bellissimo .fashionpoint-calendar-day-selected:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #c19d2e;
    color: #d4af37 !important;
}

/* Time Slots Container */
.fashionpoint-calendar-timeslots {
    width: 100%;
}

/* Loading state for time slots */
.fashionpoint-time-slots-loading {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
}

.fashionpoint-time-slots-loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.fashionpoint-time-slots {
    margin-top: 0;
}

.fashionpoint-time-slots h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}

.fashionpoint-time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.fashionpoint-time-slot {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.fashionpoint-time-slot:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.15);
}

.fashionpoint-time-slot.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.fashionpoint-time-slot.unavailable,
.fashionpoint-time-slot:disabled {
    background: #f5f5f5 !important;
    color: #ccc !important;
    border-color: #e0e0e0 !important;
    cursor: not-allowed !important;
    opacity: 0.5;
    pointer-events: none;
}

.fashionpoint-time-slot.unavailable:hover,
.fashionpoint-time-slot:disabled:hover {
    background: #f5f5f5 !important;
    border-color: #e0e0e0 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Bellissimo theme - Time slots */
.theme-bellissimo .fashionpoint-time-slot:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.theme-bellissimo .fashionpoint-time-slot.selected {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Continue Button */
.fashionpoint-continue-btn {
    width: 100%;
    padding: 16px 24px;
    margin-top: 24px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fashionpoint-continue-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.fashionpoint-continue-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.fashionpoint-continue-btn:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

/* Bellissimo theme - Continue button */
.theme-bellissimo .fashionpoint-continue-btn {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.theme-bellissimo .fashionpoint-continue-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #c19d2e 0%, #b08c28 100%);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.theme-bellissimo .fashionpoint-continue-btn:active:not(:disabled) {
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.fashionpoint-continue-btn.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .fashionpoint-modal-content {
        max-width: 600px;
        width: 90%;
    }
    
    .fashionpoint-calendar-container {
        width: 100%;
        max-width: 100%;
    }
    
    .fashionpoint-calendar-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
        max-width: 100%;
    }
    
    .fashionpoint-calendar-main {
        width: 100%;
        max-width: 100%;
    }
    
    .fashionpoint-calendar-timeslots {
        width: 100%;
        max-width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .fashionpoint-calendar-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .fashionpoint-calendar-day {
        min-height: 36px;
        font-size: 13px;
    }
    
    .fashionpoint-calendar-month-year {
        font-size: 16px;
    }
    
    .fashionpoint-time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }
}

/* Login Page Styles */
.fashionpoint-login-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid #e0e0e0;
}

.fashionpoint-tab-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    margin-bottom: -2px;
}

.fashionpoint-tab-btn:hover {
    color: #667eea;
}

.fashionpoint-tab-btn.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

/* Bellissimo theme - Login tabs */
.theme-bellissimo .fashionpoint-tab-btn:hover {
    color: #d4af37;
}

.theme-bellissimo .fashionpoint-tab-btn.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

.fashionpoint-tab-content {
    padding: 8px 0;
}

.fashionpoint-form-group {
    margin-bottom: 20px;
}

.fashionpoint-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.fashionpoint-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.fashionpoint-form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Bellissimo theme - Form inputs */
.theme-bellissimo .fashionpoint-form-input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.fashionpoint-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.fashionpoint-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.fashionpoint-submit-btn:active {
    transform: translateY(0);
}

/* Bellissimo theme - Submit button */
.theme-bellissimo .fashionpoint-submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
}

.theme-bellissimo .fashionpoint-submit-btn:hover {
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

/* ============================================
   MULTI-SELECT CHECKBOX BUTTON - FINAL OVERRIDE
   ============================================ */

/* Force checkbox button to display */
label.fashionpoint-service-checkbox-label-top,
.fashionpoint-service-card label.fashionpoint-service-checkbox-label-top,
.fashionpoint-services-table label.fashionpoint-service-checkbox-label-top {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    z-index: 999 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 12px !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    cursor: pointer !important;
    transition: background 0.3s ease, border-color 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    font-size: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Desktop table - center vertically */
.fashionpoint-services-table label.fashionpoint-service-checkbox-label-top {
    top: 12px !important;
    right: 12px !important;
}

/* Mobile card view - keep at top */
.fashionpoint-service-card label.fashionpoint-service-checkbox-label-top {
    top: 12px !important;
    right: 12px !important;
    transform: none !important;
}

/* Plus icon */
label.fashionpoint-service-checkbox-label-top::before,
.fashionpoint-service-card label.fashionpoint-service-checkbox-label-top::before,
.fashionpoint-services-table label.fashionpoint-service-checkbox-label-top::before {
    content: '+' !important;
    display: block !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #667eea !important;
    line-height: 1 !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
}

/* Hover state */
label.fashionpoint-service-checkbox-label-top:hover,
.fashionpoint-service-card label.fashionpoint-service-checkbox-label-top:hover {
    background: rgba(102, 126, 234, 0.05) !important;
    border-color: #667eea !important;
}

/* Desktop table hover - keep centered */
.fashionpoint-services-table label.fashionpoint-service-checkbox-label-top:hover {
    background: rgba(102, 126, 234, 0.05) !important;
    border-color: #667eea !important;
}

/* Only rotate the + icon on hover, not the checkmark */
label.fashionpoint-service-checkbox-label-top:not(.fashionpoint-checkbox-selected):hover::before,
.fashionpoint-service-card label.fashionpoint-service-checkbox-label-top:not(.fashionpoint-checkbox-selected):hover::before,
.fashionpoint-services-table label.fashionpoint-service-checkbox-label-top:not(.fashionpoint-checkbox-selected):hover::before {
    transform: rotate(90deg) !important;
}

/* Selected state */
label.fashionpoint-service-checkbox-label-top.fashionpoint-checkbox-selected,
.fashionpoint-service-card label.fashionpoint-service-checkbox-label-top.fashionpoint-checkbox-selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: 2px solid #667eea !important;
}

/* Desktop table - keep centered when selected */
.fashionpoint-services-table label.fashionpoint-service-checkbox-label-top.fashionpoint-checkbox-selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: 2px solid #667eea !important;
}

label.fashionpoint-service-checkbox-label-top.fashionpoint-checkbox-selected::before,
.fashionpoint-service-card label.fashionpoint-service-checkbox-label-top.fashionpoint-checkbox-selected::before,
.fashionpoint-services-table label.fashionpoint-service-checkbox-label-top.fashionpoint-checkbox-selected::before {
    content: '✓' !important;
    color: white !important;
    font-size: 22px !important;
}

/* Bellissimo theme */
.theme-bellissimo label.fashionpoint-service-checkbox-label-top::before {
    color: #d4af37 !important;
}

.theme-bellissimo label.fashionpoint-service-checkbox-label-top:hover {
    background: rgba(212, 175, 55, 0.05) !important;
    border-color: #d4af37 !important;
}

.theme-bellissimo label.fashionpoint-service-checkbox-label-top.fashionpoint-checkbox-selected {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%) !important;
    border: 2px solid #d4af37 !important;
}

/* Hide the actual checkbox input */
.fashionpoint-service-checkbox {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}
