.fresha-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Fresha-Style Theme Variables & Base */
:root {
    --fresha-bg: #ffffff;
    --fresha-off-white: #f2f2f2;
    --fresha-black: rgb(20, 20, 20);
    --fresha-gray: #7d848c;
    --fresha-border: #e0e2e6;
    --fresha-pink: rgb(238, 0, 153);
    --fresha-shadow: none;
    --fresha-radius-pill: 100px;
    --fresha-radius-card: 12px;
}

body.fresha-theme {
    background-color: #f8fafc;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(15, 23, 42, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    color: #1e293b;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Spotlight Background Effects */
.f-spotlight-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.f-spotlight {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(238, 242, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0.8;
    transform: rotate(-15deg);
}

.f-spotlight-alt {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 240, 245, 0.8) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0.6;
    transform: rotate(15deg);
}

/* Specific Search Button Style */
.f-search-btn-large {
    background: var(--fresha-black);
    color: #fff;
    border: none;
    border-radius: 99px;
    padding: 0 32px;
    height: 48px;
    font-weight: 700;
    font-size: 16px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.f-search-btn-large:hover {
    background: #000;
    transform: scale(1.02);
}


/* Rolling Number Ticker - Fixed */
.f-rolling-number {
    display: inline-flex;
    align-items: center;
    height: 32px;
    /* Fixed height for stability */
    line-height: 32px;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    font-size: 24px;
    color: var(--fresha-black);
}

.f-digit-wrapper {
    position: relative;
    width: 14px;
    /* Fixed width per digit */
    height: 32px;
    overflow: hidden;
    margin: 0 1px;
}

.f-digit-column {
    display: flex;
    flex-direction: column;
    transition: transform 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bounce effect */
    will-change: transform;
}

.f-digit-column div {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 32px;
}

/* Card Refinements (New to Fresha Style) */
.f-card-v2 {
    border-radius: 12px;
    transition: transform 0.2s ease;
    cursor: pointer;
    background: transparent;
    text-align: left;
    display: block;
    width: 100%;
}

.f-card-v2:hover {
    transform: translateY(-4px);
}

.f-card-image {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    border-radius: 12px !important;
    background-color: #f7f9fa;
    margin-bottom: 12px;
    display: block;
}

.f-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--fresha-black);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.f-card-rating {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--fresha-black);
}

.f-card-rating i {
    color: #ff9500;
    font-size: 12px;
    margin-right: 4px;
}

.f-card-rating span {
    color: #7d848c;
    font-weight: 400;
    margin-left: 4px;
}

.f-card-subtext {
    font-size: 14px;
    color: #7d848c;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Horizontal Scroll Arrow (Desktop) */
.f-scroll-container {
    position: relative;
    display: flex;
    align-items: center;
}

.f-scroll-btn {
    position: absolute;
    right: -22px;
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%);
    /* Adjust for height */
    width: 44px;
    height: 44px;
    background: #fff !important;
    border: 1px solid #e0e2e6 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    z-index: 100;
    cursor: pointer;
    transition: all 0.2s;
    color: #000;
}

.f-scroll-btn:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18) !important;
    transform: translateY(-50%) scale(1.08);
    /* Maintain centering on hover */
}

@media (max-width: 991px) {
    .f-scroll-btn {
        display: none !important;
    }
}

/* Search Bar (Unified) */
.f-search-outer {
    height: 64px;
    background: #fff;
    border-radius: var(--fresha-radius-pill);
    border: 1px solid var(--fresha-border);
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.f-search-input-group {
    height: 100%;
    display: flex;
    flex: 1;
    align-items: center;
    padding: 0 24px;
    position: relative;
    cursor: text;
}

.f-search-input-group:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    height: 24px;
    width: 1px;
    background: #e0e2e6;
}

.f-search-field {
    border: none;
    outline: none !important;
    width: 100%;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: var(--fresha-black);
    padding-top: 14px;
}

.f-search-label {
    position: absolute;
    top: 10px;
    left: 24px;
    font-size: 11px;
    font-weight: 700;
    color: var(--fresha-black);
    text-transform: none;
    pointer-events: none;
}

/* Typography */
.f-h1 {
    font-size: 64px;
    font-weight: 800;
    /* Extra bold like Fresha */
    line-height: 1.05;
    color: var(--fresha-black);
    letter-spacing: -0.03em;
    /* Tighter for modern look */
}

.f-subtext {
    font-size: 19px;
    line-height: 1.5;
    color: var(--fresha-black);
    opacity: 0.8;
    letter-spacing: -0.01em;
}

/* Autocomplete Suggestions */
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--fresha-border);
    border-radius: 12px;
    margin-top: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.autocomplete-item {
    padding: 12px 16px;
    transition: background 0.2s ease;
    cursor: pointer;
}

.autocomplete-item:hover {
    background-color: var(--fresha-off-white);
}

/* Buttons */
.f-btn-primary {
    background-color: var(--fresha-black);
    color: #fff !important;
    border-radius: var(--fresha-radius-pill);
    padding: 10px 24px;
    font-weight: 700;
    border: none;
    transition: opacity 0.2s;
}

.f-btn-primary:hover {
    opacity: 0.8;
}

.f-btn-outline {
    border: 1px solid #e0e2e6;
    color: var(--fresha-black);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    background: transparent;
}

.f-btn-outline:hover {
    border-color: var(--fresha-black);
    background-color: #f9f9f9;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mobile Hero Overlay */
.f-detail-hero {
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .f-detail-hero {
        margin-top: -80px;
        /* Pull under transparent header if needed */
        z-index: 1;
    }
}

.f-hero-img-container {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.f-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.f-hero-overlay-top {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.f-hero-overlay-top .f-circle-btn {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    color: var(--fresha-black);
}

.f-hero-badge-bottom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Detail Info Section */
.f-detail-info {
    padding: 24px 20px;
    background: #fff;
}

.f-detail-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.f-detail-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.f-detail-rating i {
    color: var(--fresha-black);
}

.f-detail-rating span {
    color: #7d848c;
    font-weight: 400;
}

.f-detail-location {
    font-size: 15px;
    color: var(--fresha-black);
    margin-bottom: 20px;
}

/* Feature List */
.f-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
}

.f-feature-item i {
    width: 20px;
    text-align: center;
}

/* Horizontal Pill Tabs */
.f-pill-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid var(--fresha-border);
}

.f-pill-tab {
    padding: 8px 20px;
    border-radius: 100px;
    background: #f7f9fa;
    color: var(--fresha-black);
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none !important;
}

.f-pill-tab.active {
    background: var(--fresha-black);
    color: #fff;
}

/* Sticky Mobile Footer */
.f-mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--fresha-border);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

.f-footer-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--fresha-black);
}

.f-footer-btn {
    background: var(--fresha-black);
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: none;
}

/* Review Card Home (Fresha Style) */
.f-review-card-home {
    border: 1px solid var(--fresha-border);
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.f-review-card-home:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: transparent;
}

.f-review-stars {
    color: #ff9500;
    font-size: 14px;
    margin-bottom: 12px;
}

.f-review-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--fresha-black);
    margin-bottom: 24px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    overflow: hidden;
}

.f-review-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 16px;
    margin-top: auto;
}

.f-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f2f2f2;
    color: var(--fresha-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 12px;
    font-size: 16px;
}

.f-review-meta {
    display: flex;
    flex-direction: column;
}

.f-review-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--fresha-black);
}

.f-review-business {
    font-size: 13px;
    color: #7d848c;
    text-decoration: none;
    margin-top: 2px;
}

.f-review-business:hover {
    color: var(--fresha-black);
    text-decoration: underline;
}

/* City Lists (Clean) */
.f-city-list ul li {
    margin-bottom: 8px;
}

.f-city-list ul li:last-child {
    margin-bottom: 0;
}

/* Custom Slick Arrow Styles */
.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 21;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid #e0e2e6 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: #101928 !important;
    font-size: 16px;
    opacity: 1;
    visibility: visible;
    padding: 0;
    margin: 0;
    outline: none !important;
}

.custom-arrow:hover {
    background: #ffffff !important;
    border-color: #101928 !important;
    color: #101928 !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16) !important;
    transform: translateY(-50%) scale(1.05);
}

.custom-arrow.slick-disabled {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

.custom-arrow.slick-prev {
    left: -22px;
}

.custom-arrow.slick-next {
    right: -22px;
}

.review-carousel {
    position: relative;
    padding: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {

    /* Hero Typography */
    .f-h1 {
        font-size: 36px !important;
        margin-bottom: 16px !important;
    }

    .f-subtext {
        font-size: 16px !important;
        margin-bottom: 32px !important;
    }

    /* Global Mobile Utilities */
    .border-right {
        border-right: none !important;
    }

    /* Search Bar Mobile */
    .f-search-outer {
        flex-direction: column;
        height: auto;
        border-radius: 16px;
        padding: 8px;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .f-search-input-group {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f2f2f2;
        padding: 12px 16px;
        height: 50px;
        justify-content: center;
        /* Center content flex-wise */
    }



    .f-search-field {
        text-align: center;
        /* Center input text */
    }

    .f-search-label {
        left: 50%;
        transform: translateX(-50%);
        /* Center label */
        width: 100%;
        text-align: center;
    }

    .f-search-input-group:not(:last-child)::after {
        display: none;
    }

    .f-search-btn-large {
        width: 100%;
        margin-top: 12px;
        padding-left: 80px;
        padding-right: 80px;
        border-radius: 99px;
        height: 56px;
        font-size: 18px;
    }

    /* Adjust container padding */
    .fresha-container {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    /* Stats Section Mobile */
    .f-stats-header {
        font-size: 42px !important;
        line-height: 1.1 !important;
        letter-spacing: -2px !important;
    }

    .f-pill-tabs {
        padding: 16px 0;
        /* Remove horizontal padding to align with content */
    }

    /* Hide spotlight on mobile if it causes issues, or adjust */
    .f-spotlight,
    .f-spotlight-alt {
        opacity: 0.4;
    }

    .f-card-image {
        aspect-ratio: 16/9 !important;
    }
}

/* Search Result Card (Fresha Style) */
/* Search Result Card (Fresha Style) */
.search-item-card {
    display: flex;
    border: none;
    border-bottom: 1px solid #e0e2e6;
    padding: 24px 0;
    margin-bottom: 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
    background: #fff;
    align-items: stretch;
}

.search-item-card:hover {
    background-color: #fafbfc;
    box-shadow: none;
    transform: none;
}

.search-item-card:last-child {
    border-bottom: none;
}

.search-item-gallery {
    width: 260px;
    height: auto;
    min-height: 180px;
    flex-shrink: 0;
    margin-right: 24px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #f7f9fa;
}

.search-item-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.search-rating-pill {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--fresha-black);
}

.search-rating-pill i {
    color: #ff9500;
    margin-right: 4px;
}

.service-row-slim {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #e0e2e6;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--fresha-black);
    transition: all 0.2s;
    background: #fff;
}

.service-row-slim:hover {
    border-color: var(--fresha-black);
    background-color: #f7f9fa;
}

.service-row-slim:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .search-item-card {
        flex-direction: column;
        padding: 16px;
    }

    .search-item-gallery {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 16px;
    }
}

/* Filter Pills */
.f-pill-filter {
    border: 1px solid #e0e2e6;
    background: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fresha-black);
    transition: all 0.2s;
    margin-right: 8px;
    white-space: nowrap;
}

.f-pill-filter:hover {
    border-color: var(--fresha-black);
    background: #f9f9f9;
}

.f-pill-filter.active {
    background: #6a4bff;
    /* Fresha Purple */
    color: #fff;
    border-color: #6a4bff;
}

/* --- Premium Fresha Form System --- */

/* --- Unified Premium Fresha Form System --- */

.fresha-theme .f-form-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.fresha-theme .f-form-section:hover {
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
}

.fresha-theme .f-form-section-header {
    margin-bottom: 32px !important;
    padding-bottom: 24px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    margin-top: 0 !important;
}

.fresha-theme .f-form-section-header h5 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
}

.fresha-theme .f-form-section-header .section-num {
    width: 32px !important;
    height: 32px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 0 !important;
}

.fresha-theme .f-form-section-header .section-desc {
    font-size: 15px !important;
    color: #64748b !important;
    margin-left: 44px !important;
    font-weight: 450 !important;
    display: block !important;
}

.fresha-theme .f-form-group {
    margin-bottom: 28px !important;
    position: relative !important;
}

.fresha-theme .f-input-group {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    height: 68px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 100px !important;
    padding: 0 20px 0 60px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01) !important;
}

.fresha-theme .f-input-group:focus-within {
    border-color: #0f172a !important;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08) !important;
    background: #ffffff !important;
}

.fresha-theme .f-input-group i {
    position: absolute !important;
    left: 24px !important;
    font-size: 18px !important;
    color: #94a3b8 !important;
    transition: all 0.2s ease !important;
}

.fresha-theme .f-input-group:focus-within i {
    color: #0f172a !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.fresha-theme .f-label {
    position: absolute !important;
    top: 12px !important;
    left: 60px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #64748b !important;
    margin-bottom: 0 !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

.fresha-theme .f-input {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    background: transparent !important;
    padding: 22px 0 0 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    outline: none !important;
    box-shadow: none !important;
}

.fresha-theme .f-textarea-group {
    border-radius: 24px !important;
    height: auto !important;
    min-height: 120px !important;
    align-items: flex-start !important;
    padding-top: 35px !important;
}

.fresha-theme .f-textarea-group i {
    top: 28px !important;
}

.fresha-theme .f-textarea {
    height: 100% !important;
    min-height: 80px !important;
    padding: 0 !important;
    line-height: 1.5 !important;
}

.fresha-theme .f-select {
    padding-top: 22px !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgb(15, 23, 42)' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 24px bottom 18px !important;
    background-size: 14px !important;
}

.fresha-theme .f-btn-black {
    background: #0f172a !important;
    color: #ffffff !important;
    border-radius: 16px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
}

.fresha-theme .f-btn-black:hover {
    background: #1e293b !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px -10px rgba(15, 23, 42, 0.4) !important;
}

/* Auth Pages (Login/Register) */
.f-auth-container {
    max-width: 550px;
    margin: 60px auto;
    padding: 0 20px;
}

.f-auth-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid #f2f2f5;
}

.f-auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

.f-auth-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.f-auth-subtitle {
    font-size: 15px;
    color: #7d848c;
    text-align: center;
    margin-bottom: 32px;
}

/* Buttons */
.f-btn-black {
    background: var(--fresha-black);
    color: #fff !important;
    border-radius: 12px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    border: none;
    transition: all 0.2s;
    width: 100%;
}

.f-btn-black:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.f-btn-white {
    background: #fff;
    color: var(--fresha-black) !important;
    border: 1px solid var(--fresha-border);
    border-radius: 12px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
}

.f-btn-white:hover {
    border-color: var(--fresha-black);
    background: #fafbfc;
}

/* Dashboard Cards */
.f-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--fresha-border);
    transition: all 0.2s;
}

.f-stat-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.f-stat-label {
    font-size: 14px;
    color: #7d848c;
    font-weight: 600;
    margin-bottom: 8px;
}

.f-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--fresha-black);
}

.f-dashboard-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--fresha-border);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
}

.f-dashboard-item:hover {
    border-color: var(--fresha-black);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}