/* Extracted styles from templates/all-services-table.php
 * This file contains the layout and visual styles for the
 * [fashionpoint_all_services] table, location selector,
 * toggle buttons, promo badges, and responsive behavior.
 *
 * NOTE: The original template forces the "bellissimo" theme
 * globally for this view, so all dynamic PHP branches that
 * depended on $theme have been resolved to the bellissimo
 * variants here to preserve current behavior.
 */

/* Critical CSS - Load First to Prevent FOUC */
.fashionpoint-all-services-container {
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    text-align: left !important;
    box-sizing: border-box !important;
    display: block !important;
}

/* Location selection modal - refined styling */
.fashionpoint-modal {
    position: fixed !important;
    inset: 0 !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    display: none;
}

.fashionpoint-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
}

.fashionpoint-modal-content {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: #ffffff;
    border-radius: 18px;
    max-width: 520px;
    width: calc(100% - 32px);
    max-height: calc(100vh - 40px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 9999;
}

.fashionpoint-modal-header {
    padding: 16px 24px;
    background: #F2E5D2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.fashionpoint-modal-close {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.fashionpoint-modal-body {
    padding: 20px 24px 24px;
}

.fashionpoint-modal-service-title {
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 600;
}

.fashionpoint-location-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fashionpoint-location-option {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.fashionpoint-location-option:hover {
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
}

/* Theme overrides: Bellissimo (default for this view) and Reina */
.theme-bellissimo .fashionpoint-modal-header {
    background: #F2E5D2;
}

.theme-reina .fashionpoint-modal-header {
    background: #f5f0e6;
}

.theme-bellissimo .fashionpoint-location-option:hover {
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
}

.theme-reina .fashionpoint-location-option:hover {
    border-color: #d79a27;
    box-shadow: 0 2px 8px rgba(215, 154, 39, 0.25);
}

.theme-bellissimo .fashionpoint-location-box.selected {
    background: #d4af37 !important;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4) !important;
}

.theme-reina .fashionpoint-location-box.selected {
    background: #d79a27 !important;
    box-shadow: 0 4px 16px rgba(215, 154, 39, 0.35) !important;
}

.theme-bellissimo .fashionpoint-promo-badge,
.theme-bellissimo .fashionpoint-promo-badge-mobile {
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
}

.theme-reina .fashionpoint-promo-badge,
.theme-reina .fashionpoint-promo-badge-mobile {
    background: linear-gradient(135deg, #d79a27 0%, #b97b12 100%);
}

.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-reina .fashionpoint-promo-row {
    background: linear-gradient(90deg, rgba(215, 154, 39, 0.06) 0%, rgba(215, 154, 39, 0.02) 100%) !important;
}

.theme-bellissimo .fashionpoint-price-bgn.fashionpoint-price-promo,
.theme-bellissimo .fashionpoint-price-promo-mobile {
    color: #d4af37;
}

.theme-reina .fashionpoint-price-bgn.fashionpoint-price-promo,
.theme-reina .fashionpoint-price-promo-mobile {
    color: #d79a27;
}

.theme-bellissimo .fashionpoint-category-header {
    background: #f2e5d2;
}

.theme-reina .fashionpoint-category-header {
    background: #f5f0e6;
}

/* ============================================
   REINA THEME - Complete Visual Overhaul
   Matches the clean table design from screenshot
   ============================================ */

/* Reina: Categories are NOT accordions - always expanded, simple title */
.theme-reina .fashionpoint-category-section {
    margin-bottom: 40px !important;
}

.theme-reina .fashionpoint-category-section.collapsed .fashionpoint-category-content {
    max-height: 5000px !important;
    opacity: 1 !important;
    display: block !important;
}

.theme-reina .fashionpoint-category-header {
    background: transparent !important;
    padding: 0 0 15px 0 !important;
    cursor: default !important;
    justify-content: flex-start !important;
    border: none !important;
    box-shadow: none !important;
}

.theme-reina .fashionpoint-category-header h2 {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

/* Reina: Hide accordion chevron and promo badge in header */
.theme-reina .fashionpoint-category-chevron-container,
.theme-reina .fashionpoint-category-promo-badge-container {
    display: none !important;
}

.theme-reina .fashionpoint-category-name-container {
    justify-content: flex-start !important;
    padding: 0 !important;
    max-width: 100% !important;
}

/* Reina: Table styling - clean with beige header and visible outer border */
.theme-reina .fashionpoint-services-table-wrapper {
    border: 1px solid #ebe6db !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

.theme-reina .fashionpoint-services-table {
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}

.theme-reina .fashionpoint-services-table thead,
.theme-reina .fashionpoint-services-table thead tr,
.fashionpoint-all-services-container.theme-reina .fashionpoint-services-table thead,
.fashionpoint-all-services-container.theme-reina .fashionpoint-services-table thead tr {
background: #d9c9a3 !important;
background-image: none !important;
}

.theme-reina .fashionpoint-services-table thead th,
.fashionpoint-all-services-container.theme-reina .fashionpoint-services-table thead th {
background: transparent !important;
background-image: none !important;
color: #1a1a1a !important;
font-size: var(--fashionpoint-table-font-size-header, 14px) !important;
font-weight: 600 !important;
text-transform: none !important;
letter-spacing: 0 !important;
padding: 14px 20px !important;
border-bottom: 1px solid #e8dcc8 !important;
}

.theme-reina .fashionpoint-services-table tbody tr {
background: #ffffff !important;
border-bottom: 1px solid #f0e8dc !important;
}

.theme-reina .fashionpoint-services-table tbody tr:nth-child(odd),
.theme-reina .fashionpoint-services-table tbody tr:nth-child(even) {
background: #ffffff !important;
}

.theme-reina .fashionpoint-services-table tbody tr:hover {
background: #fdfcfa !important;
}

.theme-reina .fashionpoint-services-table tbody tr:last-child {
border-bottom: none !important;
}

.theme-reina .fashionpoint-services-table td {
padding: 18px 20px !important;
vertical-align: middle !important;
border-bottom: 1px solid #f0e8dc !important;
}

/* Reina: Service title - left aligned, clean */
.theme-reina .fashionpoint-service-title {
text-align: left !important;
font-size: var(--fashionpoint-table-font-size-body, 14px) !important;
font-weight: 500 !important;
color: #1a1a1a !important;
}

.theme-reina .fashionpoint-services-table td:first-child > div {
align-items: flex-start !important;
text-align: left !important;
padding-right: 0 !important;
padding-left: 0 !important;
}

.theme-reina .fashionpoint-packages-section .fashionpoint-services-table td:first-child > div {
align-items: flex-start !important;
text-align: left !important;
}

.theme-reina .fashionpoint-packages-section .fashionpoint-service-title,
.theme-reina .fashionpoint-packages-section .fashionpoint-services-table td:first-child .fashionpoint-service-title {
justify-content: flex-start !important;
text-align: left !important;
}

.theme-reina .fashionpoint-packages-section .fashionpoint-duration-inline {
align-items: flex-start !important;
text-align: left !important;
width: 100% !important;
}

/* Reina: Hide promo badges in table rows */
.theme-reina .fashionpoint-promo-badge,
.theme-reina .fashionpoint-promo-row {
background: transparent !important;
}

.theme-reina .fashionpoint-promo-badge {
display: none !important;
}

/* Reina: Show the special promo badge wrapper above the title */
.theme-reina .fashionpoint-reina-promo-badge-wrapper {
display: block !important;
}

/* Reina: Duration display - simple text, no background pill */
.theme-reina .fashionpoint-duration-display {
background: transparent !important;
padding: 0 !important;
font-size: var(--fashionpoint-table-font-size-body, 14px) !important;
color: #1a1a1a !important;
}

.theme-reina .fashionpoint-duration-display svg {
display: none !important;
}

/* Reina: Price display - clean, right-aligned */
.theme-reina .fashionpoint-price-bgn {
font-size: var(--fashionpoint-table-font-size-body, 14px) !important;
font-weight: 500 !important;
color: #1a1a1a !important;
}

/* Reina: Price column is 2nd (no time column in Reina), right-aligned */
.theme-reina .fashionpoint-services-table th:nth-child(2) {
text-align: right !important;
padding-right: 30px !important;
}

.theme-reina .reina-price-cell,
.theme-reina td.reina-price-cell,
.theme-reina .fashionpoint-services-table td.reina-price-cell,
.theme-reina .fashionpoint-services-table td:nth-child(2) {
    text-align: right !important;
    padding-right: 30px !important;
}

.theme-reina .fashionpoint-services-table td:nth-child(2) span,
.theme-reina .fashionpoint-services-table td.reina-price-cell span,
.theme-reina .fashionpoint-services-table td span[style*="text-align"] {
    text-align: right !important;
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Reina: make price container a right-aligned column so old and new prices line up */
.theme-reina .fashionpoint-price-display,
.theme-reina .fashionpoint-price-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    text-align: right !important;
    width: 100% !important;
}

.theme-reina .fashionpoint-price-bgn,
.theme-reina .fashionpoint-price-old,
.theme-reina .fashionpoint-price-eur {
    text-align: right !important;
    width: 100% !important;
}

/* Reina: Button column (3rd) centered */
.theme-reina .fashionpoint-services-table td:nth-child(3) {
    text-align: center !important;
    vertical-align: middle !important;
}

/* Reina: Consistent font size for all table cells */
.theme-reina .fashionpoint-services-table td {
    font-size: var(--fashionpoint-table-font-size-body, 14px) !important;
}

.theme-reina .fashionpoint-services-table td span {
    font-size: var(--fashionpoint-table-font-size-body, 14px) !important;
}

/* Reina: Book button font size */
.theme-reina .fashionpoint-book-button {
    font-size: var(--fashionpoint-table-font-size-button, 14px) !important;
}

.theme-reina .fashionpoint-services-table td,
.theme-reina .fashionpoint-services-table th {
    border: none !important;
}

.theme-reina .fashionpoint-price-eur {
    display: block !important;
}

/* Reina: Booking button - outline style with gold border */
.theme-reina .fashionpoint-booking-btn,
.theme-reina .fashionpoint-booking-btn-mobile,
.theme-reina button.fashionpoint-booking-btn,
.theme-reina button.fashionpoint-external-booking,
.fashionpoint-all-services-container.theme-reina .fashionpoint-booking-btn,
.fashionpoint-all-services-container.theme-reina .fashionpoint-external-booking,
.fashionpoint-all-services-container.theme-reina button {
    background: transparent !important;
    background-image: none !important;
    border: 2px solid #d79a27 !important;
    color: #d79a27 !important;
    font-size: var(--fashionpoint-table-font-size-button, 11px) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
}

.theme-reina .fashionpoint-booking-btn:hover,
.theme-reina .fashionpoint-booking-btn-mobile:hover,
.theme-reina button.fashionpoint-booking-btn:hover,
.theme-reina button.fashionpoint-external-booking:hover,
.fashionpoint-all-services-container.theme-reina .fashionpoint-booking-btn:hover,
.fashionpoint-all-services-container.theme-reina .fashionpoint-external-booking:hover {
    background: #d79a27 !important;
    background-image: none !important;
    color: #ffffff !important;
}

/* Reina: Search wrapper - simpler styling */
.theme-reina .fashionpoint-search-wrapper {
    margin-bottom: 30px !important;
}

.theme-reina .fashionpoint-search-filter-row {
    justify-content: center !important;
}

.theme-reina .fashionpoint-search-container {
    position: relative !important;
    max-width: 520px !important;
}

.theme-reina .fashionpoint-search-container .fashionpoint-search-icon {
    display: none !important;
}

.theme-reina .fashionpoint-search-icon {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
    color: #b7a47c !important;
    pointer-events: none !important;
}

.theme-reina .fashionpoint-search-input {
    width: 100% !important;
    border: 1px solid #ebe6db !important;
    border-radius: 10px !important;
    padding: 12px 44px 12px 16px !important;
    line-height: 1.2 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
}

.theme-reina .fashionpoint-search-input::placeholder {
    color: #9c9588 !important;
}

.theme-reina .fashionpoint-search-input:focus {
    outline: none !important;
    border-color: #c9963a !important;
    box-shadow: 0 0 0 3px rgba(201, 150, 58, 0.18) !important;
}

.theme-reina .fashionpoint-search-clear {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 999px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    color: #b7a47c !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.theme-reina #fashionpoint-all-search-clear {
    display: inline-flex !important;
}

.theme-reina .fashionpoint-search-clear svg {
    flex-shrink: 0 !important;
}

.theme-reina .fashionpoint-search-clear .fashionpoint-search-btn-icon--search {
    display: none !important;
}

.theme-reina .fashionpoint-search-input:placeholder-shown ~ .fashionpoint-search-clear .fashionpoint-search-btn-icon--search {
    display: block !important;
}

.theme-reina .fashionpoint-search-input:placeholder-shown ~ .fashionpoint-search-clear svg:not(.fashionpoint-search-btn-icon--search) {
    display: none !important;
}

.theme-reina .fashionpoint-search-clear:hover {
    background: rgba(201, 150, 58, 0.1) !important;
    border-color: rgba(201, 150, 58, 0.2) !important;
    color: #c9963a !important;
}

.fashionpoint-search-results-info {
    margin-top: 10px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: center !important;
    color: #666666 !important;
}

.theme-reina .fashionpoint-search-results-info {
    color: #9c9588 !important;
}

/* Reina: Location filter hidden (single location assumed) */
.theme-reina .fashionpoint-location-filter-container {
    display: none !important;
}

/* Reina: Hide checkboxes (external booking mode) */
.theme-reina .fashionpoint-service-checkbox-label-top {
    display: none !important;
}

/* Reina: Mobile cards - clean styling */
@media (max-width: 768px) {
    .theme-reina .fashionpoint-service-card {
        border: 1px solid #e8dcc8 !important;
        border-radius: 8px !important;
        background: #ffffff !important;
        box-shadow: none !important;
        margin-bottom: 12px !important;
    }

    .theme-reina .fashionpoint-card-header {
        padding: 16px !important;
        border-bottom: 1px solid #f0e8dc !important;
    }

    .theme-reina .fashionpoint-card-title {
        font-size: 15px !important;
        font-weight: 500 !important;
        color: #1a1a1a !important;
    }

    .theme-reina .fashionpoint-promo-badge-mobile {
        display: none !important;
    }

    .theme-reina .fashionpoint-card-pricing {
        background: transparent !important;
        border: none !important;
    }
}

/* Reina: Container width adjustments */
.theme-reina .fashionpoint-services-table-wrapper,
.theme-reina .fashionpoint-search-wrapper {
    width: 100% !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.theme-reina .fashionpoint-all-services-container {
    padding: 20px !important;
}

.fashionpoint-search-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 20px auto !important;
    display: block !important;
}

.fashionpoint-services-table-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: left !important;
    display: block !important;
}

.fashionpoint-services-table {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: table !important;
    text-align: left !important;
    table-layout: fixed !important;
}

/* --- Extracted second style block (breakout, selectors, toggle, promo etc.) --- */

/* Break out of centered parent containers */
.fashionpoint-all-services-container {
    position: relative !important;
    left: 0 !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    text-align: left !important;
    box-sizing: border-box !important;
    display: block !important;
}

/* Override any parent container centering */
* .fashionpoint-all-services-container,
.entry-content .fashionpoint-all-services-container,
.wp-block-group .fashionpoint-all-services-container,
.content .fashionpoint-all-services-container,
.main .fashionpoint-all-services-container,
.container .fashionpoint-all-services-container,
.wrapper .fashionpoint-all-services-container,
div .fashionpoint-all-services-container,
[class*="container"] .fashionpoint-all-services-container,
[class*="wrapper"] .fashionpoint-all-services-container {
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    left: 0 !important;
    right: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

/* Location Selector - First Step */
.fashionpoint-location-selector-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 40px auto !important;
    padding: 40px 20px !important;
    text-align: center !important;
}

/* Hide "Save selected" button when location selector is visible */
.fashionpoint-location-selector-wrapper:not([style*="display: none"]) ~ * .fashionpoint-book-selected-btn,
.fashionpoint-location-selector-wrapper:not([style*="display: none"]) ~ .fashionpoint-book-selected-btn,
body:has(.fashionpoint-location-selector-wrapper:not([style*="display: none"])) .fashionpoint-book-selected-btn {
    display: none !important;
}

.fashionpoint-location-selector-prompt h2 {
    margin-bottom: 30px !important;
    color: #333 !important;
}

.fashionpoint-location-boxes-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    justify-content: center !important;
}

.fashionpoint-location-box {
    position: relative !important;
    width: 140px !important;
    height: 140px !important;
    border-radius: 16px !important;
    border: 2px solid #e0e0e0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    z-index: 1 !important;
    pointer-events: auto !important;
    background: #ffffff !important;
    color: #666666 !important;
}

.fashionpoint-location-box:hover:not(.selected) {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

.fashionpoint-location-box:active {
    transform: translateY(0) scale(1) !important;
}

.fashionpoint-location-box.selected {
    background: #d4af37 !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4) !important;
    border: 2px solid transparent !important;
    transform: scale(1.02) !important;
}

.fashionpoint-location-box-icon {
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: inherit !important;
}

.fashionpoint-location-box-icon svg {
    width: 100% !important;
    height: 100% !important;
    stroke: currentColor !important;
}

.fashionpoint-location-box.selected .fashionpoint-location-box-icon {
    color: #ffffff !important;
}

.fashionpoint-location-box-name {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: center !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    color: inherit !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Responsive adjustments for location boxes */
@media (max-width: 768px) {
    .fashionpoint-location-boxes-container {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
        gap: 15px !important;
    }

    .fashionpoint-location-box {
        width: 140px !important;
        height: 140px !important;
    }

    .fashionpoint-location-box-name {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .fashionpoint-location-boxes-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    }

    .fashionpoint-location-box {
        width: 120px !important;
        height: 120px !important;
    }

    .fashionpoint-location-box-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .fashionpoint-location-box-name {
        font-size: 11px !important;
    }
}

/* Type toggle buttons */
.fashionpoint-type-toggle-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 30px auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.fashionpoint-type-toggle {
    display: flex !important;
    gap: 20px !important;
    align-items: center !important;
    justify-content: center !important;
}

.fashionpoint-type-toggle-btn {
    position: relative !important;
    width: 140px !important;
    height: 140px !important;
    border-radius: 16px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.fashionpoint-type-toggle-btn:hover:not(.active) {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

.fashionpoint-type-toggle-btn:active {
    transform: translateY(0) scale(1) !important;
}

.fashionpoint-type-toggle-btn.fashionpoint-type-services,
.fashionpoint-type-toggle-btn.fashionpoint-type-packages,
.fashionpoint-type-toggle-btn.fashionpoint-type-products {
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    color: #666666 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.fashionpoint-type-toggle-btn.fashionpoint-type-services.active,
.fashionpoint-type-toggle-btn.fashionpoint-type-packages.active,
.fashionpoint-type-toggle-btn.fashionpoint-type-products.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4) !important;
    border: 2px solid transparent !important;
    transform: scale(1.02) !important;
}

.fashionpoint-type-toggle-icon {
    position: relative !important;
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.fashionpoint-type-toggle-icon svg {
    width: 100% !important;
    height: 100% !important;
    stroke: currentColor !important;
}

.fashionpoint-type-toggle-plus {
    position: absolute !important;
    bottom: -4px !important;
    right: -4px !important;
    width: 20px !important;
    height: 20px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid #d0d0d0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #666666 !important;
    line-height: 1 !important;
}

.fashionpoint-type-toggle-btn.active .fashionpoint-type-toggle-plus {
background: rgba(255, 255, 255, 0.25) !important;
border-color: rgba(255, 255, 255, 0.5) !important;
color: #ffffff !important;
}

.fashionpoint-type-toggle-label {
font-size: 14px !important;
font-weight: 700 !important;
}

/* Theme overrides: Reina toggle colors */
.theme-reina .fashionpoint-type-toggle-btn.fashionpoint-type-services,
.theme-reina .fashionpoint-type-toggle-btn.fashionpoint-type-packages,
.theme-reina .fashionpoint-type-toggle-btn.fashionpoint-type-products {
background: #ffffff !important;
border: 2px solid #e8dcc8 !important;
color: #1a1a1a !important;
}

.theme-reina .fashionpoint-type-toggle-btn.fashionpoint-type-services.active,
.theme-reina .fashionpoint-type-toggle-btn.fashionpoint-type-packages.active,
.theme-reina .fashionpoint-type-toggle-btn.fashionpoint-type-products.active {
background: #c9963a !important;
color: #ffffff !important;
box-shadow: 0 4px 16px rgba(201, 150, 58, 0.28) !important;
border: 2px solid transparent !important;
}

.theme-reina .fashionpoint-type-toggle-btn:hover:not(.active) {
border-color: #c9963a !important;
box-shadow: 0 4px 12px rgba(201, 150, 58, 0.18) !important;
}

.theme-reina .fashionpoint-type-toggle-plus {
border-color: #e8dcc8 !important;
color: #1a1a1a !important;
}

.theme-reina .fashionpoint-type-toggle-btn.active .fashionpoint-type-toggle-plus {
background: rgba(255, 255, 255, 0.18) !important;
border-color: rgba(255, 255, 255, 0.4) !important;
color: #ffffff !important;
}

/* Search and filter row */
.fashionpoint-search-wrapper {
width: 100% !important;
max-width: 100% !important;
margin: 0 auto 20px auto !important;
display: block !important;
}

.fashionpoint-search-filter-row {
display: flex !important;
justify-content: center !important;
gap: 15px !important;
}

.fashionpoint-search-container {
flex: 0 1 auto !important;
max-width: 400px !important;
width: 100% !important;
}

.fashionpoint-location-filter-container {
flex: 0 1 auto !important;
max-width: 200px !important;
width: 100% !important;
}

/* Category sections and table */
.fashionpoint-category-section {
margin-bottom: 0 !important;
width: 100% !important;
max-width: 100% !important;
box-sizing: border-box;
margin-left: 0 !important;
margin-right: 0 !important;
text-align: left !important;
}

.fashionpoint-category-section.collapsed .fashionpoint-category-header {
border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.fashionpoint-category-section.collapsed:last-child .fashionpoint-category-header {
border-bottom: none !important;
}

.fashionpoint-services-table-wrapper {
width: 100% !important;
max-width: 100% !important;
margin: 0 auto !important;
padding: 0 !important;
text-align: left !important;
display: block !important;
}

.fashionpoint-services-table {
width: 100% !important;
margin: 0 auto !important;
padding: 0 !important;
display: table !important;
text-align: left !important;
table-layout: fixed !important;
    margin: 0 auto !important;
    padding: 0 !important;
    display: table !important;
    text-align: left !important;
    table-layout: fixed !important;
}

.fashionpoint-services-table td {
    box-sizing: border-box !important;
    padding: 12px 16px !important;
    vertical-align: middle !important;
}

.fashionpoint-services-table td:first-child {
    width: 40% !important;
}

.fashionpoint-services-table td:nth-child(2) {
    width: 15% !important;
}

.fashionpoint-services-table td:nth-child(3) {
    width: 20% !important;
}

.fashionpoint-services-table td:nth-child(4) {
    width: 25% !important;
}

.fashionpoint-services-table th,
.fashionpoint-services-table td {
    text-align: center !important;
    vertical-align: middle !important;
}

/* Override for Reina theme - price column right-aligned */
.theme-reina .fashionpoint-services-table td:nth-child(2),
.theme-reina .fashionpoint-services-table th:nth-child(2),
.theme-reina .fashionpoint-services-table td.reina-price-cell {
    text-align: right !important;
}

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

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

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

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

.fashionpoint-services-table td:first-child {
    text-align: left !important;
}

/* Global (bellissimo etc.): 3rd column is the price column, right-aligned */
.fashionpoint-services-table th:nth-child(3),
.fashionpoint-services-table td:nth-child(3) {
    text-align: right !important;
}

/* If we have a price container in the 3rd column, make it a right-aligned column */
.fashionpoint-services-table td:nth-child(3) .fashionpoint-price-display,
.fashionpoint-services-table td:nth-child(3) .fashionpoint-price-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    text-align: right !important;
}

.fashionpoint-services-table td:nth-child(3) .fashionpoint-price-bgn,
.fashionpoint-services-table td:nth-child(3) .fashionpoint-price-old,
.fashionpoint-services-table td:nth-child(3) .fashionpoint-price-eur {
    text-align: right !important;
}

/* Final overrides: ensure Reina table columns keep their custom alignment
   even after the generic center-alignment rule for all tables. */
.theme-reina .fashionpoint-services-table th:first-child,
.theme-reina .fashionpoint-services-table td:first-child {
    text-align: left !important;
}

.theme-reina .fashionpoint-services-table th:nth-child(2) {
    text-align: center !important;
}

.theme-reina .fashionpoint-services-table td:nth-child(2) {
    text-align: right !important;
}

.theme-reina .fashionpoint-services-table td:nth-child(2) .fashionpoint-price-display,
.theme-reina .fashionpoint-services-table td:nth-child(2) .fashionpoint-price-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    text-align: right !important;
    width: 100% !important;
}

.theme-reina .fashionpoint-services-table td:nth-child(2) .fashionpoint-price-bgn,
.theme-reina .fashionpoint-services-table td:nth-child(2) .fashionpoint-price-old,
.theme-reina .fashionpoint-services-table td:nth-child(2) .fashionpoint-price-eur {
    text-align: right !important;
}

.fashionpoint-all-services-container.theme-reina .fashionpoint-services-table td.reina-price-cell {
    text-align: right !important;
    padding-right: 20px !important;
}

td.reina-price-cell > span,
td.reina-price-cell span,
.theme-reina td.reina-price-cell > span,
.theme-reina td.reina-price-cell span,
.theme-reina .fashionpoint-services-table td.reina-price-cell span {
    display: block !important;
    text-align: right !important;
    margin-left: auto !important;
    width: auto !important;
}

.theme-reina .fashionpoint-services-table th:nth-child(3),
.theme-reina .fashionpoint-services-table td:nth-child(3) {
    text-align: center !important;
    vertical-align: middle !important;
}

/* Reina: Button cell (4th column) - centered horizontally and vertically */
.theme-reina .fashionpoint-services-table th:last-child,
.theme-reina .fashionpoint-services-table td:last-child {
    text-align: center !important;
    vertical-align: middle !important;
}

.theme-reina .fashionpoint-services-table td:last-child > div {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
}

/* Promo badge and promo rows */
.fashionpoint-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-bottom: 4px;
    position: relative;
    overflow: hidden;
}

.fashionpoint-promo-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: fashionpoint-promo-shine 3s infinite;
}

.fashionpoint-promo-label {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fashionpoint-promo-label::before {
    content: '⭐';
    font-size: 9px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.fashionpoint-discount-badge {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 9px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Inline promo star badge next to service title */
.fashionpoint-promo-star-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    padding: 3px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    border-radius: 50%;
    color: #fff;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.4);
    animation: fashionpoint-badge-pulse 2s ease-in-out infinite;
}

.fashionpoint-promo-star-badge svg {
    display: block;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}

@keyframes fashionpoint-badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 3px 8px rgba(212, 175, 55, 0.6);
    }
}

/* Reina theme promo star badge - more subtle */
.theme-reina .fashionpoint-promo-star-badge {
    background: linear-gradient(135deg, #c9963a 0%, #d4af37 100%);
    padding: 2px;
}

.theme-reina .fashionpoint-promo-star-badge svg {
    width: 10px;
    height: 10px;
}

@keyframes fashionpoint-promo-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.fashionpoint-promo-row {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.02) 100%) !important;
    position: relative;
    transition: all 0.3s ease;
}

.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;
}

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

.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;
}

/* Promo price styling */
.fashionpoint-price-promo-wrapper {
    position: relative;
}

.fashionpoint-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    margin-bottom: 4px;
    opacity: 0.7;
    font-weight: 500;
    position: relative;
    text-align: center;
}

.fashionpoint-price-old::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    opacity: 0.4;
    transform: translateY(-50%);
}

.fashionpoint-price-bgn.fashionpoint-price-promo {
    color: #d4af37;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    position: relative;
    display: inline-block;
}

.fashionpoint-price-bgn.fashionpoint-price-promo::before {
    content: '';
    position: absolute;
    left: -8px;
    right: -8px;
    top: 50%;
    height: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
    border-radius: 2px;
}

.fashionpoint-price-eur {
    font-size: 11px;
    color: #666;
    opacity: 0.85;
    font-weight: 500;
    text-align: center;
    margin-top: 2px;
}

.fashionpoint-price-bgn {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

/* Location badges text */
.fashionpoint-location-badges {
    margin-top: 4px;
    text-align: center;
    font-size: 11px;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
}

/* Mobile promo card styling */
@media (max-width: 768px) {
    .fashionpoint-type-toggle-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important;
        margin-bottom: 20px !important;
    }

    .fashionpoint-type-toggle {
        gap: 12px !important;
    }

    .fashionpoint-type-toggle-btn {
        width: 110px !important;
        height: 110px !important;
        gap: 8px !important;
    }

    .fashionpoint-type-toggle-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .fashionpoint-type-toggle-plus {
        width: 16px !important;
        height: 16px !important;
        font-size: 12px !important;
    }

    .fashionpoint-type-toggle-label {
        font-size: 12px !important;
    }

    .fashionpoint-search-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important;
    }

    .fashionpoint-search-filter-row {
        flex-direction: row !important;
        gap: 12px !important;
    }

    .fashionpoint-search-container {
        max-width: none !important;
        width: 60% !important;
        flex: 0 0 60% !important;
    }

    .theme-reina .fashionpoint-search-container {
        width: 100% !important;
        flex: 1 1 100% !important;
    }

    .fashionpoint-location-filter-container {
        max-width: none !important;
        width: 40% !important;
        flex: 0 0 40% !important;
    }

    .fashionpoint-category-chevron-container {
        position: absolute !important;
        right: 24px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .fashionpoint-category-promo-badge-container {
        position: absolute !important;
        left: 24px !important;
        right: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .fashionpoint-category-name-container {
        max-width: calc(100% - 160px) !important;
        padding-left: 80px !important;
        padding-right: 50px !important;
        box-sizing: border-box !important;
    }

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

    .fashionpoint-promo-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, #d4af37 0%, #c19d2e 100%);
    }

    .fashionpoint-promo-card:hover {
        opacity: 0.95;
    }

    .fashionpoint-promo-badge-mobile {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
        box-shadow: 0 2px 6px rgba(212, 175, 55, 0.25);
        color: #fff;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    .fashionpoint-promo-badge-mobile::before {
        content: '⭐';
        font-size: 9px;
    }

    .fashionpoint-discount-badge-mobile {
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(4px);
        padding: 2px 6px;
        border-radius: 8px;
        font-weight: 800;
        font-size: 9px;
        margin-left: 4px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .fashionpoint-promo-card .fashionpoint-card-pricing {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

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

    .fashionpoint-price-promo-mobile {
        color: #d4af37;
        font-weight: 800;
        font-size: 22px;
    }
}

.fashionpoint-category-section:last-child {
    margin-bottom: 20px;
    border-bottom: none !important;
}

.fashionpoint-category-header:hover {
    opacity: 0.95;
}

.fashionpoint-category-section.collapsed .fashionpoint-category-content {
    max-height: 0 !important;
    opacity: 0 !important;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden !important;
    border: none !important;
}

.fashionpoint-category-section.collapsed .fashionpoint-category-content .fashionpoint-services-table,
.fashionpoint-category-section.collapsed .fashionpoint-category-content .fashionpoint-services-table-wrapper {
    box-shadow: none !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.fashionpoint-category-section.collapsed .fashionpoint-category-content .fashionpoint-services-table tbody tr td {
    border-bottom: none !important;
    border-top: none !important;
}

.fashionpoint-category-section:not(.collapsed) .fashionpoint-category-content {
    max-height: 5000px !important;
    opacity: 1 !important;
}

.fashionpoint-category-section.collapsed .fashionpoint-category-chevron {
    transform: rotate(0deg);
}

.fashionpoint-category-section:not(.collapsed) .fashionpoint-category-chevron {
    transform: rotate(180deg);
}

.fashionpoint-category-section.collapsed .fashionpoint-category-header {
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

.fashionpoint-category-section:first-child .fashionpoint-category-header,
.fashionpoint-category-section:first-child .fashionpoint-category-header.fashionpoint-category-toggle {
    border-top: none !important;
    border-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.fashionpoint-category-section:first-child.collapsed .fashionpoint-category-header,
.fashionpoint-category-section:first-child.collapsed .fashionpoint-category-header.fashionpoint-category-toggle {
    border-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.fashionpoint-category-section:last-child .fashionpoint-category-header {
    border-radius: 0 !important;
}

.fashionpoint-category-section:last-child.collapsed .fashionpoint-category-header {
    border-radius: 0 !important;
}

.fashionpoint-category-section:only-child .fashionpoint-category-header {
    border-radius: 0 !important;
}

.fashionpoint-category-toggle {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.fashionpoint-category-toggle:active {
    transform: translateY(0);
}

.fashionpoint-price-promo {
    position: relative;
}

.fashionpoint-price-promo::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: linear-gradient(135deg, #d4af37 0%, #c19d2e 100%);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .fashionpoint-category-header h2 {
        font-size: 18px !important;
    }

    .fashionpoint-category-count {
        display: block;
        margin-left: 0 !important;
    }
}

/* ============================================
   SINGLE CATEGORY REINA THEME
   Applied via [fashionpoint_services] shortcode
   with theme="reina" parameter
   ============================================ */

/* Reina: Category header for single category view */
.fashionpoint-single-category.theme-reina .fashionpoint-category-header,
.fashionpoint-category-header-reina {
    background: #7c5cdb !important;
    color: #ffffff !important;
    padding: 20px 30px !important;
    border-radius: 12px 12px 0 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    text-align: center !important;
}

.fashionpoint-single-category.theme-reina .fashionpoint-category-header h2,
.fashionpoint-category-header-reina h2 {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Reina: Table wrapper for single category */
.fashionpoint-single-category.theme-reina {
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

/* Reina: Table styling for single category */
.fashionpoint-single-category.theme-reina .fashionpoint-services-table {
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    border-radius: 0 0 12px 12px !important;
}

.fashionpoint-single-category.theme-reina .fashionpoint-services-table thead,
.fashionpoint-single-category.theme-reina .fashionpoint-services-table thead tr {
    background: #7c5cdb !important;
    background-image: none !important;
}

.fashionpoint-single-category.theme-reina .fashionpoint-services-table thead th {
    background: transparent !important;
    background-image: none !important;
    color: #ffffff !important;
    font-size: var(--fashionpoint-table-font-size-header, 14px) !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    padding: 14px 20px !important;
    border-bottom: none !important;
}

.fashionpoint-single-category.theme-reina .fashionpoint-services-table tbody tr {
    background: #ffffff !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.fashionpoint-single-category.theme-reina .fashionpoint-services-table tbody tr:nth-child(odd),
.fashionpoint-single-category.theme-reina .fashionpoint-services-table tbody tr:nth-child(even) {
    background: #ffffff !important;
}

.fashionpoint-single-category.theme-reina .fashionpoint-services-table tbody tr:hover {
    background: #faf9ff !important;
}

.fashionpoint-single-category.theme-reina .fashionpoint-services-table tbody tr:last-child {
    border-bottom: none !important;
}

.fashionpoint-single-category.theme-reina .fashionpoint-services-table td {
    padding: 18px 20px !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #f0f0f0 !important;
    font-size: var(--fashionpoint-table-font-size-body, 14px) !important;
    color: #333 !important;
}

/* Reina: Service title styling */
.fashionpoint-single-category.theme-reina .fashionpoint-service-title {
    text-align: left !important;
    font-size: var(--fashionpoint-table-font-size-body, 14px) !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
}

/* Reina: Duration display */
.fashionpoint-single-category.theme-reina .fashionpoint-duration-display {
    background: transparent !important;
    padding: 0 !important;
    font-size: var(--fashionpoint-table-font-size-body, 14px) !important;
    color: #666 !important;
}

/* Reina: Price display */
.fashionpoint-single-category.theme-reina .fashionpoint-price-bgn {
    font-size: var(--fashionpoint-table-font-size-body, 14px) !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
}

.fashionpoint-single-category.theme-reina .fashionpoint-price-eur {
    font-size: var(--fashionpoint-table-font-size-body, 14px) !important;
    color: #7c5cdb !important;
    margin-top: 2px !important;
}

/* Reina: Booking button - purple filled style */
.fashionpoint-single-category.theme-reina .fashionpoint-booking-btn,
.fashionpoint-single-category.theme-reina button.fashionpoint-booking-btn,
.fashionpoint-single-category.theme-reina a.fashionpoint-booking-btn {
    background: #7c5cdb !important;
    background-image: none !important;
    border: none !important;
    color: #ffffff !important;
    font-size: var(--fashionpoint-table-font-size-button, 11px) !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.fashionpoint-single-category.theme-reina .fashionpoint-booking-btn:hover,
.fashionpoint-single-category.theme-reina button.fashionpoint-booking-btn:hover,
.fashionpoint-single-category.theme-reina a.fashionpoint-booking-btn:hover {
    background: #6a4bc9 !important;
    background-image: none !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(124, 92, 219, 0.3) !important;
}

/* Reina: Location badges */
.fashionpoint-single-category.theme-reina .fashionpoint-location-badge {
    background: linear-gradient(135deg, #7c5cdb 0%, #6a4bc9 100%) !important;
    color: #ffffff !important;
}

/* Reina: Search wrapper styling */
.fashionpoint-single-category.theme-reina + .fashionpoint-search-wrapper,
.theme-reina .fashionpoint-search-wrapper {
    max-width: 900px !important;
    margin: 0 auto 20px auto !important;
}

.fashionpoint-single-category.theme-reina .fashionpoint-search-input:focus {
    border-color: #7c5cdb !important;
    box-shadow: 0 0 0 3px rgba(124, 92, 219, 0.1) !important;
}

/* Reina: Modal styling for single category */
.fashionpoint-single-category.theme-reina ~ .fashionpoint-modal .fashionpoint-modal-header,
.theme-reina .fashionpoint-modal-header {
    background: #7c5cdb !important;
    color: #ffffff !important;
}

.fashionpoint-single-category.theme-reina ~ .fashionpoint-modal .fashionpoint-location-option:hover {
    border-color: #7c5cdb !important;
    box-shadow: 0 2px 8px rgba(124, 92, 219, 0.25) !important;
}

/* Reina: Mobile responsive for single category */
@media (max-width: 768px) {
    .fashionpoint-single-category.theme-reina {
        border-radius: 8px !important;
        margin: 0 10px !important;
    }

    .fashionpoint-single-category.theme-reina .fashionpoint-category-header,
    .fashionpoint-category-header-reina {
        padding: 16px 20px !important;
        border-radius: 8px 8px 0 0 !important;
    }

    .fashionpoint-single-category.theme-reina .fashionpoint-category-header h2,
    .fashionpoint-category-header-reina h2 {
        font-size: 16px !important;
    }

    .fashionpoint-single-category.theme-reina .fashionpoint-services-table td {
        padding: 14px 16px !important;
    }

    .fashionpoint-single-category.theme-reina .fashionpoint-booking-btn {
        padding: 8px 16px !important;
        font-size: var(--fashionpoint-table-font-size-button, 11px) !important;
    }
}
