@import "./variables.css";
@import "./typography.css";
@import "./utils.css";
@import "./general-mixins.css";

.border-gray-50 {
    border: 1px solid #a48fa5 !important;
}

.text-dark {
    color: #333 !important;
}

.text-white {
    color: #fff !important;
}

.text-danger {
    color: var(--primary-50) !important;
}

.main-content {
    background-color: #f2f0f3 !important;
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    transition: all 0.3s ease;
}

.container-fluid {
    max-width: 1200px !important;
}

.container {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

@media (min-width: 576px) {
    .container {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}

@media (min-width: 768px) {
    .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

@media (min-width: 992px) {
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media (min-width: 768px) {
    .main-content {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
    }

    .navbar-top {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
        left: var(--sidebar-width);
    }

    .business-footer {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
        left: var(--sidebar-width);
    }
}

@media (max-width: 767.98px) {
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .navbar-top {
        width: 100% !important;
        margin-left: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .business-footer {
        width: 100% !important;
        margin-left: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .content-body {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.choices-meauty {
    --meauty-primary: #e83e8c;
    --meauty-primary-lighter: rgba(232, 62, 140, 0.1);
    --meauty-border-radius: 0.5rem;
    --meauty-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.choices-meauty {
    margin-bottom: 0;
}

.choices-meauty__inner {
    min-height: unset;
    border-radius: var(--meauty-border-radius);
    padding: 6px 12px;
    border-color: #ced4da;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

.choices-meauty.is-focused .choices__inner {
    border-color: var(--meauty-primary);
    box-shadow: 0 0 0 0.25rem rgba(232, 62, 140, 0.25);
}

.choices__list--dropdown {
    border-radius: var(--meauty-border-radius);
    margin-top: 6px;
    border: none;
    box-shadow: var(--meauty-box-shadow);
    overflow: hidden;
}

.choices__list--dropdown .choices__item--selectable.is-meauty-highlighted {
    background-color: var(--meauty-primary-lighter);
    border-left: 3px solid var(--meauty-primary);
}

.choices__list--dropdown .choices__item--selectable {
    border-left: 3px solid transparent;
    padding-left: 12px;
    transition: all 0.15s ease;
}

.choices__list--dropdown .choices__item--selectable:hover {
    background-color: var(--meauty-primary-lighter);
    border-left: 3px solid rgba(232, 62, 140, 0.5);
}

.choices__list--dropdown .choices__item {
    padding: 10px 15px;
}

.choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 6px;
}

.choices[data-type*="select-one"]::after {
    border-color: #495057 transparent transparent;
    right: 16px;
}

.choices[data-type*="select-one"].is-open::after {
    margin-top: 0;
}

.choices__placeholder {
    opacity: 0.65;
}

/* Compact Size */
.choices-meauty.choices-meauty-sm .choices__inner {
    min-height: 32px;
    padding: 3px 10px;
    font-size: 0.875rem;
}

/* Form Group within Card Styling */
.card .form-group .choices-meauty .choices__inner {
    background-color: #f8f9fa;
}

/* FullCalendar Customization */
.fc {
    --meauty-primary: #e83e8c;
    --meauty-primary-light: rgba(232, 62, 140, 0.15);
    --meauty-dark: #333;
}

.fc .fc-button-primary {
    background-color: var(--meauty-primary);
    border-color: var(--meauty-primary);
}

.fc .fc-button-primary:hover {
    background-color: #d5317b;
    border-color: #c92e72;
}

.fc .fc-button-primary:disabled {
    background-color: #e068a1;
    border-color: #e068a1;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background-color: #c92e72;
    border-color: #bd2c6c;
}

.fc-daygrid-day.fc-day-today {
    background-color: var(--meauty-primary-light) !important;
}

.fc-daygrid-event {
    border-radius: 20px !important;
    padding: 2px 6px !important;
    font-size: 0.8em !important;
}

.fc-h-event {
    background-color: var(--meauty-primary) !important;
    border-color: var(--meauty-primary) !important;
}

.fc-toolbar-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
}

.fc-day-past {
    opacity: 0.6;
}

/* Authentication Layout Styles */
.auth-layout {
    justify-content: center;
    align-items: center;
    background: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    min-height: 100vh;
    position: relative;
    flex-direction: column;
}

.auth-container {
    max-width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--white, white);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

/* Yeni eklenen auth-content-wrapper */
.auth-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    padding: 0 20px;
    z-index: 10;
    transition: all 0.3s ease;
    position: relative;
}

/* Auth Background Elements */
.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/authentication/authentication-background.png");
    background-size: cover;
    background-position: center;
    z-index: -3;
    transition: background-image 0.5s ease-in-out;
}

/* Arka plan için hafif siyah overlay */
.auth-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -2;
}

/* Slayt 2 ve 3 için arka plan stili */
.slide-2-bg {
    background-image: url("../images/authentication/background-slide-2.png");
}

.slide-3-bg {
    background-image: url("../images/authentication/background-slide-3.png");
}

.auth-overlay {
    position: absolute;
    bottom: -20%;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/authentication/linear-authentication.png");
    background-size: cover;
    background-position: bottom center;
    z-index: -1;
}

/* Logo and Description */
.logo-container {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.logo {
    max-width: 120px;
    margin: 0 auto 1rem auto;
    width: 120px;
    height: 120px;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--white, white);
}

.app-description {
    font-family: var(--primary-font, "Poppins", sans-serif);
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    max-width: 500px;
    margin: 0 auto 3rem auto;
    color: var(--white, white);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Navbar Styles */
.custom-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dark-toggler {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Badge styling for navbar notification, moved from inline to class */
.notification-badge {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.notification-badge-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Navbar Styling for all screen sizes */
#mainNavbar {
    transition: all 0.3s ease;
}

#mainNavbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Scrolled navbar'da text renklerini beyaz yap */
#mainNavbar.scrolled .nav-link {
    color: white !important;
}

#mainNavbar.scrolled .navbar-brand {
    color: white !important;
}

#mainNavbar.scrolled .nav-icon {
    color: white !important;
}

#mainNavbar.scrolled .nav-text {
    color: white !important;
}

/* User home page has transparent navbar initially */
.navbar:not(.scrolled):not(.navbar-white) {
    background-color: transparent;
}

/* Desktop navbar styling */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        align-items: center;
    }

    .nav-item {
        position: relative;
        padding: 0 5px;
    }

    .nav-link {
        padding: 8px 12px !important;
        font-weight: 500;
        transition: color 0.2s ease;
        white-space: nowrap;
    }

    .nav-link.active {
        font-weight: 600;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
    }

    /* Center nav items */
    .navbar > .container {
        position: relative;
    }
}

@media (max-width: 991.98px) {
    .mobile-nav-link {
        color: #000 !important;
        font-weight: 500;
        padding: 12px 16px;
        border-radius: 8px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
    }

    .mobile-nav-link:hover {
        background-color: rgba(215, 72, 207, 0.1);
    }

    .mobile-nav-link.active {
        background-color: rgba(215, 72, 207, 0.15);
        color: var(--primary-50) !important;
        font-weight: 600;
    }

    .mobile-logout-item {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mobile-nav-link.text-danger {
        color: #ff4545 !important;
    }

    .mobile-nav-link.text-danger:hover {
        background-color: rgba(255, 69, 69, 0.1);
    }

    .navbar-collapse {
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        background-color: rgba(56, 54, 54, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 16px;
        margin: 10px 15px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1050;
    }

    /* On user-home page, make navbar background semi-transparent until scrolled */
    #mainNavbar:not(.scrolled):not(.navbar-white) {
        background-color: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    /* On user-home page when scrolled, match desktop style */
    #mainNavbar.scrolled {
        background-color: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .navbar-nav {
        padding: 0;
    }

    .nav-item {
        margin-bottom: 8px;
    }

    .navbar-brand {
        max-width: 70%;
    }

    .navbar-toggler {
        margin-left: auto;
        padding: 10px;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }

    .navbar-toggler:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    /* Mobile menu divider */
    .nav-item:nth-last-child(3) {
        position: relative;
    }

    .nav-item:nth-last-child(2) {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* Badge in mobile menu */
    .badge.bg-danger {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    /* Daha iyi kullanıcı deneyimi için animasyon ekle */
    .collapse.navbar-collapse {
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .collapse.navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
    }

    /* Aktif menü vurgusu */
    .nav-link.active {
        font-weight: 600;
    }
}
.navbar .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar .nav-link:hover {
    color: var(--primary-50) !important;
}

/* Components.css - Meauty Component Styles */

/* Navbar */

.navbar {
    padding: 0.5rem 1rem;
    z-index: 9999 !important;
}

.navbar .nav-link {
    padding: 0.5rem 1rem;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    transition: color var(--duration-fast) var(--easing-default);
}

.navbar .nav-link.active {
    color: var(--primary-50) !important;
    font-weight: 600;
}

.navbar .nav-link:hover {
    color: var(--primary-50) !important;
}

/* Beyaz navbar olmayan sayfalarda (transparent) aktif menü - beyaz zemin */
.navbar:not(.navbar-white):not(.scrolled) .nav-link.active {
    color: var(--primary-50) !important;
    font-weight: 600;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.user-info {
    line-height: 1.2;
}

/* Hero Section */
.hero-section,
.page-hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-section {
    height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1562322140-8baeececf3df?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80");
    margin-bottom: 3rem;
    padding-top: 80px;
    min-height: 600px;
    margin-top: 0 !important;
}
.page-hero-section {
    min-height: 370px;
    margin-top: -80px !important;
}

@media screen and (max-width: 768px) {
    .page-hero-section {
        min-height: 150px;
    }
}
.hero-content,
.page-hero-content {
    max-width: 500px;
    z-index: 10;
}

.hero-logo {
    height: 70px;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-inner,
.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.search-container-user {
    max-width: 700px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--white);
}

.search-bar-form-control {
    padding-left: 50px !important;
    color: #fff !important;
}

.search-bar-form-control::placeholder {
    color: var(--color-gray-10, #f2f0f3);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.search-container::placeholder {
    color: var(--white) !important;
}

.search-container .form-control {
    height: 54px;
}

.search-container .form-control:focus {
    box-shadow: none;
}

.search-container .input-group-text {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.search-container .dropdown .btn {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    height: 54px;
}

.btn {
    border-radius: 12px !important;
    height: 48px !important;
    font-weight: 600 !important;
}

.btn-primary:checked + .btn,
.btn-primary.active,
.btn-primary.show,
.btn-primary:first-child:active,
:not(.btn-check) + .btn-primary:active {
    background-color: var(--primary-60) !important;
    border-color: var(--primary-60) !important;
}

.btn-outline-secondary {
    border-color: var(--color-gray-90) !important;
    color: var(--color-gray-90) !important;
    height: 48px !important;
    padding: 0 16px !important;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    background-color: var(--primary-10) !important;
    border-color: var(--primary-60) !important;
}

.btn-outline-secondary-text {
    color: var(--color-gray-90, #574856);
}

.dropdown {
    z-index: 999999 !important;
}

.dropdown-toggle::after {
    margin-left: 8px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--primary-50) !important;
}

.carousel-indicators {
    margin-bottom: 1.5rem;
    z-index: 5;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0 6px;
}

.carousel-indicators .active {
    background-color: white;
}

/* Pagination */
.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    text-decoration: none;
    border: 1px solid var(--color-border-light);
    background-color: white;
}

.pagination-number.active {
    background-color: var(--color-primary-500);
    color: white;
    border-color: var(--color-primary-500);
}

.pagination-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    text-decoration: none;
    background-color: white;
    border: 1px solid var(--color-border-light);
}

.pagination-arrow.disabled {
    color: var(--color-text-disabled);
    pointer-events: none;
}

.current-page-number {
    background-color: var(--color-primary-500);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .hero-logo {
        height: 50px;
    }

    .search-container {
        max-width: 90%;
    }
}

@media (min-width: 992px) {
    .navbar .navbar-nav {
        margin-left: none;
    }
}

/* Hero Content Container Alignment */
.hero-section .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-section .hero-content {
    padding-top: 2rem;
    padding-bottom: 2rem;
    max-width: 600px;
    position: relative;
    z-index: 15;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.hero-search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.hero-search input {
    border-radius: 30px;
    padding-left: 2.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    height: 50px;
}

.hero-search .bi-search {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

/* Nearby Salons Section */
.nearby-salons-container {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.nearby-salons-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Salon Card Styles */
.salon-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.salon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 180px;
    object-fit: cover;
}

.salon-owner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.salon-owner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-rating {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
}

.salon-rating i {
    color: #eec745 !important;
    margin-right: 5px;
}

.favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.salon-distance {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    color: #343a40;
    border: none;
    margin: 0 3px;
    border-radius: 5px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pagination .page-item.active .page-link {
    color: var(--primary-color);
}

/* Footer */

.footer {
    margin-top: auto;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    height: 40px !important;
    padding-top: 10px !important;
}

@media screen and (max-width: 767.98px) {
    .footer {
        padding:0px 30px!important;
    }
}

.social-icons i {
    font-size: 1.2rem;
}

.footer-links a:hover {
    color: #e83e8c !important;
}

.social-icons a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-icons a:hover img {
    filter: drop-shadow(0 4px 6px rgba(232, 62, 140, 0.3));
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle,
        rgba(232, 62, 140, 0.2) 0%,
        rgba(232, 62, 140, 0) 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-icons a:hover::before {
    opacity: 1;
}

@media (max-width: 767px) {
    .footer-links {
        margin: 12px 0;
        width: 100%;
    }

    .footer-links a {
        margin-bottom: 8px;
    }

    .social-icons {
        margin-top: 8px;
        width: 100%;
    }

    .social-icons a {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 576px) {
    .footer-links a {
        display: block !important;
        margin: 8px auto !important;
        text-align: center;
    }
}

/* Utility Classes */
.text-primary-50 {
    color: var(--primary-color) !important;
}

.bg-primary-50 {
    background-color: var(--primary-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .salon-card .card-img-top {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .nearby-salons-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-button {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 60px;
        /* Çok küçük ekranlarda navbar daha da küçük */
    }

    .hero-section .hero-content {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .salon-card .card-img-top {
        height: 140px;
    }

    .salon-owner {
        width: 40px;
        height: 40px;
    }
}

/* Dinamik içerik için yeni sınıflar */
.compact-logo {
    margin-bottom: 1rem;
}

.compact-logo .logo {
    max-width: 90px;
    width: 90px;
    height: 90px;
}

.compact-description {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 2rem;
}

.compact-buttons {
    transform: scale(0.95);
}

/* Authentication Buttons Styles */
.auth-buttons {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s ease;
}

.auth-buttons-row {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-bottom: 16px;
}

.button-container {
    flex: 1;
    display: flex;
}

.btn-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.auth-buttons-row .btn {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
    box-sizing: border-box;
}

.auth-buttons-bottom {
    margin-top: 0;
    width: 100%;
}

.auth-buttons-bottom .btn {
    height: 50px;
    width: 100%;
}

/* Custom Button Styles */
.btn-auth-register {
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.2);

    /* button effects */
    box-shadow: 0px 1.127px 3.381px 0px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(29.01752471923828px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.register-container {
    height: 100vh;
    overflow: hidden;
}

.register-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.register-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.auth-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(
        to top,
        rgba(255, 0, 127, 0.4) 0%,
        rgba(255, 0, 127, 0) 100%
    );
    z-index: 2;
}

.linear-overlay {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.register-container {
    height: 100vh;
    overflow: hidden;
}

.register-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.register-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.auth-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.auth-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(
        to top,
        rgba(255, 0, 127, 0.4) 0%,
        rgba(255, 0, 127, 0) 100%
    );
    z-index: 2;
}

.linear-overlay {
    position: absolute;
    width: 100%;
    height: 80%;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.register-form-container {
    padding: 2rem;

    margin: 0 auto;
}

@media (max-width: 768px) {
    .register-form-container {
        max-width: 100%;
        padding: 1.5rem;
    }
}

/*register end*/
.btn-auth-login {
    border-radius: 12px;
    border: 1px solid var(--helper-color-white-stroke, #fff);
    background: rgba(198, 43, 183, 0.7);
    box-shadow: 0px 1.127px 3.4px 0px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(29.01752471923828px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-auth-business {
    border-radius: 12px;
    border: 1px solid var(--helper-color-white-stroke, #fff);
    background: linear-gradient(
        143deg,
        rgba(255, 255, 255, 0.37) -3.54%,
        rgba(114, 114, 114, 0.42) 95.15%
    );
    box-shadow: 0px 1.127px 3.381px 0px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(29.01752471923828px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-auth-register:hover,
.btn-auth-login:hover,
.btn-auth-business:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: var(--white, white) !important;
}

/* Carousel styles */
#authCarousel {
    width: 100%;
    height: 100vh;
}

@media (max-width: 768px) {
    #authCarousel {
        height: 95vh;
        margin-top: -5vh;
    }
}

.carousel-item {
    height: 100vh;
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
}

/* Carousel indicators */
.carousel-indicators {
    bottom: 30px;
    position: absolute;
    z-index: 30;
    width: auto !important;
    height: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    opacity: 0.7;
}

.carousel-indicators button.active {
    background-color: var(--white, white);
    transform: scale(1.2);
    opacity: 1;
}

/* Register Page Styles */
.register-container {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 100vh;
}

.register-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.register-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.register-form-container {
    padding: 2rem;
    color: var(--dark, #212529);
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.form-scrollable {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

/*verification start*/

.verification-container {
    height: 100vh;
    overflow: hidden;
}

.verification-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.verification-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.auth-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(
        to top,
        rgba(255, 0, 127, 0.4) 0%,
        rgba(255, 0, 127, 0) 100%
    );
    z-index: 2;
}

.linear-overlay {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.verification-form-container {
    width: 80%;
    max-width: 500px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.verification-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.verification-subheading {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.verification-code-input {
    height: 56px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
}

.empty-input {
    border: 1px solid #450d3e;
    background: #f9d5f9 !important;
}

.verification-code-container {
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn-group-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-group-wrapper .btn,
.btn-group-wrapper a {
    flex: 1;
}

a.disabled {
    color: #6c757d;
    pointer-events: none;
    text-decoration: none;
}

@media (max-width: 768px) {
    .verification-form-container {
        width: 90%;
        padding: 1.5rem;
    }

    .verification-heading {
        font-size: 1.5rem;
    }

    .verification-subheading {
        font-size: 0.9rem;
    }

    .verification-code-input {
        height: 38px;
        font-size: 1rem;
    }
}

/*verification end*/
/* Scrollbar styling */
.form-scrollable::-webkit-scrollbar {
    width: 8px;
}

.form-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.form-scrollable::-webkit-scrollbar-thumb {
    background: var(--primary-50);
    border-radius: 4px;
}

.form-scrollable::-webkit-scrollbar-thumb:hover {
    background: #c53aad;
}

.register-logo {
    max-width: 240px;
    margin-bottom: 1.5rem;
}

.register-heading {
    font-size: 32px;
    font-weight: 700;
    color: #30272f;
    margin-bottom: 0.5rem;
}

.register-subheading {
    font-size: 16px;
    color: #8d758d;
    margin-bottom: 1.5rem;
}

/* Form styling */

.form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-700, #495057);
}

/* Password field with eye icon */
.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #a48fa5;
}

/* Profile Upload Section */
.profile-upload-container {
    border: 1px dashed var(--secondary-50) !important;
    border-radius: 10px;
    padding: 1rem;
    background-color: #fff;
}

.profile-icon {
    font-size: 2rem;
    color: var(--primary-50);
}

.upload-link {
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    width: 100% !important;
    text-align: left;
}

.file-requirements {
    font-size: 12px;
    text-align: left;
    width: 100%;
}

/* Terms Container */
.terms-container {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.form-check-input {
    border-color: var(--primary-50) !important;
}

.form-check-input:checked {
    background-color: var(--primary-50);
    border-color: var(--primary-50);
}

/* Form-check-label için özel stil ekliyorum */
.form-check-label {
    margin-left: 10px;
}

.terms-text {
    font-size: 14px;

    width: 100%;
    text-align: left;
}

@media (max-width: 768px) {
    .terms-text {
        display: block;
    }
}

/* Button styles */
.btn-primary {
    background-color: var(--primary-50) !important;
    border-color: var(--primary-50) !important;
    height: 48px !important;
    border-radius: 8px;
}

.btn-light {
    background-color: #fff;
    border-color: #635162;
    color: #212529;
    height: 48px;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #c53aad;
    border-color: #c53aad;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .auth-container {
        padding: 0rem;
        /*       padding-bottom: 5rem; */
    }

    .logo {
        max-width: 100px;
    }

    .logo-text {
        font-size: 28px;
    }

    .app-description {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 2rem;
    }

    .compact-logo .logo {
        max-width: 80px;
        width: 80px;
        height: 80px;
    }

    .compact-description {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 1.5rem;
    }

    .register-form-container {
        padding: 1.5rem;
        height: auto;
        min-height: 100vh;
    }

    .register-logo {
        max-width: 180px;
        margin: 0 auto 1.5rem auto;
    }

    .register-heading,
    .register-subheading {
        text-align: center;
    }

    .auth-overlay {
        height: 50%;
    }

    .auth-buttons-row {
        gap: 12px;
    }

    .auth-buttons-row .btn,
    .auth-buttons-bottom .btn {
        height: 46px;
    }
}

@media (max-width: 576px) {
    .app-description {
        font-size: 22px;
        line-height: 28px;
    }

    .compact-description {
        font-size: 18px;
        line-height: 24px;
    }

    .logo {
        max-width: 80px;
        width: 80px;
        height: 80px;
    }

    .compact-logo .logo {
        max-width: 60px;
        width: 60px;
        height: 60px;
    }

    .auth-buttons .btn {
        font-size: 14px;
    }

    .auth-buttons-row {
        gap: 10px;
    }

    .auth-buttons-row .btn,
    .auth-buttons-bottom .btn {
        height: 42px;
    }
}
/* Primary Color Variants */
.text-primary-50 {
    color: var(--primary-50) !important;
}

.text-primary-light {
    color: var(--primary-light, #e574cf) !important;
}

.text-primary-dark {
    color: var(--primary-dark, #c53aad) !important;
}

/* Basic Colors */
.text-white {
    color: var(--white) !important;
}

.text-black {
    color: var(--black) !important;
}

.text-light {
    color: var(--light) !important;
}

/* Gray Palette */
.text-gray-50 {
    color: var(--gray-50) !important;
}

.text-gray-100 {
    color: var(--gray-100) !important;
}

.text-gray-200 {
    color: var(--gray-200, #e9ecef) !important;
}

.text-gray-300 {
    color: var(--gray-300, #dee2e6) !important;
}

.text-gray-400 {
    color: var(--gray-400, #ced4da) !important;
}

.text-gray-500 {
    color: var(--gray-500, #adb5bd) !important;
}

.text-gray-600 {
    color: var(--gray-600, #6c757d) !important;
}

.text-gray-700 {
    color: var(--gray-700, #495057) !important;
}

.text-gray-800 {
    color: var(--gray-800, #635162) !important;
}

.text-gray-900 {
    color: var(--gray-900, #212529) !important;
}

/* State Colors */
.text-success {
    color: var(--success, #28a745) !important;
}

.text-danger {
    color: var(--danger, #dc3545) !important;
}

.text-warning {
    color: var(--warning, #ffc107) !important;
}

.text-info {
    color: var(--info, #17a2b8) !important;
}

/* Modal Styles */
.modal-backdrop {
    z-index: -1 !important;
}

.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.privacy-modal.show {
    opacity: 1;
    visibility: visible;
}

.privacy-modal-dialog {
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.privacy-modal.show .privacy-modal-dialog {
    transform: translateY(0);
}

.privacy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200, #e9ecef);
    background-color: white;
}

.privacy-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark, #212529);
    margin: 0;
    display: flex;
    align-items: center;
    text-align: left;
}

.privacy-modal-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--primary-20);
    border-radius: 8px;
    margin-right: 16px;
}

.privacy-modal-title-icon i {
    color: var(--primary-60);
    font-size: 24px;
}

.privacy-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-600, #6c757d);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s;
}

.privacy-modal-close:hover {
    color: var(--dark, #212529);
}

.privacy-modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(90vh - 140px);
}

/* Modal scrollbar styling */
.privacy-modal-body::-webkit-scrollbar {
    width: 8px;
}

.privacy-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-50);
    border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb:hover {
    background: #c53aad;
}

.privacy-modal-footer {
    display: flex;
    justify-content: center;
    padding: -50px 24px;
    background-color: white;
    border-top: 1px solid var(--gray-200, #e9ecef);
}

.privacy-modal-footer .btn {
    min-width: 200px;
    height: 50px;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark, #212529);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.privacy-heading-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    color: var(--primary-100);
    border-radius: 4px;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 700;
}

.privacy-content {
    color: var(--gray-700, #495057);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    margin-left: 40px;
    text-align: left;
}

.privacy-content p {
    margin-bottom: 16px;
}

.privacy-section {
    margin-bottom: 24px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.register-container {
    height: 100vh;
    overflow: hidden;
}

.pagination-text-content {
    border-radius: 8px;
    border: 0.6px solid var(--color-gray-60, #8d758d);
    background: #fff;
}

.pagination-text-content-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700, #495057);
}

.pagination-text-content-span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700, #495057);
}

.pagination-text-content-span-2 {
    font-size: 14px;
    font-weight: 600;
    color: #8d758d;
}

/* Style.css - Meauty Main Stylesheet */

/* 
 * This is the main CSS file that should be loaded last to ensure proper cascading.
 * It contains any styles not covered in the more specific files.
 */

/* Custom page styles */
.page-header {
    padding: var(--space-8) 0;
    background-color: var(--color-background-secondary);
    border-bottom: 1px solid var(--color-border-light);
}

.page-title {
    margin-bottom: var(--space-2);
    color: var(--color-text-primary);
}

.page-description {
    color: var(--color-text-secondary);
    max-width: 600px;
}

/* Custom button styles */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.btn-icon-sm {
    width: 30px;
    height: 30px;
    padding: var(--space-1);
}

.btn-icon-lg {
    width: 48px;
    height: 48px;
    padding: var(--space-3);
}

/* Cards custom styling */
.card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-normal) var(--easing-default),
        box-shadow var(--duration-normal) var(--easing-default);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-title {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
}

.card-text {
    color: var(--color-text-secondary);
}

/* Custom avatar sizes */
.avatar-xs {
    width: 24px;
    height: 24px;
}

.avatar-sm {
    width: 32px;
    height: 32px;
}

.avatar-md {
    width: 48px;
    height: 48px;
}

.avatar-lg {
    width: 64px;
    height: 64px;
}

.avatar-xl {
    width: 96px;
    height: 96px;
}

/* Status indicators */
.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: var(--space-2);
}

.status-active {
    background-color: var(--color-success);
}

.status-pending {
    background-color: var(--color-warning);
}

.status-inactive {
    background-color: var(--color-error);
}

/* Custom animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn var(--duration-normal) var(--easing-default);
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-slide-up {
    animation: slideUp var(--duration-normal) var(--easing-default);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Custom form styling */
.custom-input-icon {
    position: relative;
}

.custom-input-icon i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-tertiary);
}

.custom-input-icon.icon-left i {
    left: var(--space-3);
}

.custom-input-icon.icon-right i {
    right: var(--space-3);
}

.custom-input-icon.icon-left input {
    padding-left: var(--space-8);
}

.custom-input-icon.icon-right input {
    padding-right: var(--space-8);
}

/* Tarih seçici için özel stiller */
input[type="date"] {
    position: relative;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

input[type="date"]::-webkit-datetime-edit {
    color: #495057;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: #6c757d;
    padding: 0 2px;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: #495057;
    padding: 0 2px;
}

@media (max-width: 768px) {
    input[type="date"] {
        font-size: 16px;
    }
}

.search-bar {
    border-radius: 16px;
    border: 1px solid #f2f0f3;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0px 1.127px 3.381px 0px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(29.01752471923828px);
    color: #f2f0f3;
}

.search-bar::placeholder {
    color: #f2f0f3;
}

.filter-button {
    border-radius: 12px;
}

.list-group-item.active {
    color: var(--color-primary-70) !important;
    font-weight: 600;
    line-height: 16px;
}

.dropdown-menu {
    z-index: 9999999999999999999999 !important;
}

.bg-primary {
    background-color: var(--primary-70) !important;
}

@media (max-width: 768px) {
    .auth-layout {
        height: auto !important;
    }

    .auth-container {
        height: auto !important;
    }

    .register-container {
        height: auto !important;
    }
}

.salon-detail-sidebar-button {
    border-radius: 12px;
    background: #e8e2e8 !important;
    display: flex;
    padding: 8px 12px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border: none !important;
}

.salon-detail-sidebar-button img {
    width: 24px;
    height: 24px;
}

.button-medium-medium {
    font-size: 14px;
    font-weight: 500;
}

.text-gray-70 {
    color: #766075 !important;
}

.hours {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--color-gray-100, #30272f);
}

.btn-light {
    background-color: #e8e2e8 !important;
}

/* Staff Avatar Scrollbar */
.staff-avatars {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.staff-avatars::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.staff-avatar img {
    transition: transform 0.2s ease;
}

.staff-avatar:hover img {
    transform: scale(1.05);
}

/* Gallery hover effects */
.gallery-hover-overlay {
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 0.7 !important;
}

.staff-card {
    margin-bottom: 10px;
    border-radius: 12px;
}

.staff-card-inner {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    background-color: #222;
}

.staff-card-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.staff-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.staff-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.staff-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: white;
    text-align: center;
    border-bottom: 1px solid var(--color-gray-20, #e8e2e8);
    box-shadow: 0px 1.127px 3.381px 0px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(29.01752471923828px);
    -webkit-backdrop-filter: blur(29.01752471923828px);
}

/* Staff Card end*/

/* Navbar start */
@media (max-width: 768px) {
    .nav-logo {
        width: 160px !important;
        object-fit: contain !important;
        z-index: 9999999999999999999999 !important;
    }

    .navbar-collapse {
        border-radius: 10px;
        padding: 15px;
        margin-top: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
    }

    .navbar-nav {
        padding-bottom: 10px;
    }

    .nav-item {
        margin-bottom: 5px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

.navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: 0 !important;
    z-index: 99999999 !important;
}

.navbar-white {
    background-color: #fff !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-info {
    line-height: 1.2;
}

.z-1100 {
    z-index: 1100;
}

/* Animasyon iyileştirmeleri */
.navbar-collapse.collapsing {
    height: auto;
    transition: all 0.35s ease;
    overflow: hidden;
}

.navbar-collapse.show {
    transition: all 0.35s ease;
}

/* Scroll sonrası renk değişimi için */
.navbar.scrolled .nav-text,
.navbar.scrolled .nav-icon {
    color: #212529 !important;
}

/* Scrolled durumda aktif menü öğesi */
.navbar.scrolled .nav-link.active {
    color: var(--primary-50) !important;
    font-weight: 600;
}

/* Beyaz navbar'da ve scrolled durumda aktif menü */
.navbar-white .nav-link.active,
.navbar.scrolled .nav-link.active {
    color: var(--primary-50) !important;
    font-weight: 600;
}

/* Navbar ikon butonları - hover ve focus efektlerini kaldır */
.navbar .btn.position-relative:hover,
.navbar .btn.position-relative:focus,
.navbar .btn.position-relative:focus-visible {
    background: none !important;
    box-shadow: none !important;
    transform: none !important;
    border: none !important;
    outline: none !important;
}

/* Logo değişimi için */
.light-logo,
.dark-logo {
    transition: opacity 0.3s ease;
}

.navbar-white .light-logo {
    display: none !important;
}

.navbar-white .dark-logo {
    display: inline-block !important;
}

.navbar.scrolled .light-logo {
    display: none !important;
}

.navbar.scrolled .dark-logo {
    display: inline-block !important;
}

/* Navbar end */

/*user home start*/

.search-box .input-group {
    border-radius: 12px;
    overflow: hidden;
}

.search-box .form-control:focus {
    box-shadow: none;
}

.form-select:focus {
    box-shadow: none;
}

.bg-gray-50 {
    background-color: var(--color-gray-50) !important;
}

.btn-outline-primary {
    color: var(--meauty-primary);
    border-color: var(--meauty-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary.active {
    background-color: var(--meauty-primary);
    border-color: var(--meauty-primary);
    color: #fff;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--meauty-primary);
}

.btn-light {
    background-color: var(--color-gray-50);
    border: none;
    color: var(--color-gray-70);
}

.btn-light:hover {
    background-color: var(--color-gray-100);
    color: var(--color-white);
}

.offcanvas {
    --bs-offcanvas-width: 400px;
}

/*user home end*/

/*categories start*/
.categories-page {
    min-height: 100vh;
}

.page-header {
    padding-top: 20px;
}

.display-l-semibold {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.text-color-gray-10 {
    color: var(--color-gray-10);
}

.text-color-gray-20 {
    color: var(--color-gray-20);
}

.text-color-gray-30 {
    color: var(--color-gray-30);
}

.text-color-gray-40 {
    color: var(--color-gray-40);
}

.text-color-gray-50 {
    color: var(--color-gray-50);
}

.text-color-gray-60 {
    color: var(--color-gray-60);
}

.text-color-gray-70 {
    color: var(--color-gray-70);
}

.text-color-gray-80 {
    color: var(--color-gray-80);
}

.text-color-gray-90 {
    color: var(--color-gray-90);
}

.text-color-gray-100 {
    color: var(--color-gray-100);
}

.text-color-gray-200 {
    color: var(--color-gray-200);
}

.text-color-gray-300 {
    color: var(--color-gray-300);
}

.text-color-gray-400 {
    color: var(--color-gray-400);
}

.text-color-gray-500 {
    color: var(--color-gray-500);
}

.text-color-gray-600 {
    color: var(--color-gray-600);
}

.text-color-gray-700 {
    color: var(--color-gray-700);
}

.text-color-gray-800 {
    color: var(--color-gray-800);
}

.text-color-gray-900 {
    color: var(--color-gray-900);
}

.text-color-gray-1000 {
    color: var(--color-gray-1000);
}

@media (max-width: 767.98px) {
    .page-header {
        text-align: center;
    }

    .display-l-semibold {
        font-size: 28px;
    }
}

/*categories end*/

/*footer start*/
.footer {
    padding: 8px 0;
    background-color: #fff;
}

.footer-links a:hover {
    color: #e83e8c !important;
}

.social-icons a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-icons a:hover img {
    filter: drop-shadow(0 4px 6px rgba(232, 62, 140, 0.3));
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle,
        rgba(232, 62, 140, 0.2) 0%,
        rgba(232, 62, 140, 0) 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-icons a:hover::before {
    opacity: 1;
}

@media (max-width: 767px) {
    .col-12.d-flex {
        flex-direction: column;
    }

    .footer-links {
        margin: 8px 0;
    }

    .social-icons {
        margin-top: 8px;
    }

    .social-icons a {
        margin-left: 10px;
        margin-right: 10px;
    }
}

/*footer end*/

/*notifications start*/
.notifications-page {
    min-height: 80vh;
    background-color: #f9f9f9;
}

.btn-outline-primary:hover {
    background-color: #e83e8c !important;
    color: #fff !important;
}

.nav-pills .nav-link {
    color: #333 !important;
}

.nav-pills .nav-link.active {
    background-color: #e83e8c !important;
    color: #fff !important;
}

/* Tab Contents */
.tab-content {
    transition: all 0.3s ease;
}

.tab-content.d-none {
    display: none !important;
}

.notification-icon {
    width: 24px;
    height: 24px;
}

/*notifications end*/

/*appointment start*/
.search-form-control {
    width: 350px !important;
    padding-left: 30px;
    position: relative;
}

.search-icon {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    position: absolute;
    z-index: 10;
}

.search-content {
    border-radius: 12px;
    border: 1px solid var(--color-gray-50, #a48fa5);
}

.search-content .form-control {
    border: none;
    background-color: white;
    box-shadow: none;
    outline: none;
}

.search-content .form-control::placeholder {
    color: var(--color-gray-50, #a48fa5);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

@media (max-width: 576px) {
    .search-content .form-control {
        width: 200px !important;
    }
}

.page-link {
    color: var(--primary-50);
    border-color: var(--color-gray-20);
}

.page-item.active .page-link {
    background-color: var(--primary-50);
    border-color: var(--primary-50);
    color: white;
}

.page-link:hover {
    color: var(--primary-70);
    background-color: var(--color-gray-10);
}

/* Yıldız değerlendirme stilleri */
.stars svg {
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.stars svg:hover {
    transform: scale(1.1);
}

.stars svg.active {
    fill: #f8a623;
}

.stars[data-rating] svg {
    fill: #e0e0e0;
}

.stars[data-rating="1"] svg:nth-child(1),
.stars[data-rating="2"] svg:nth-child(-n + 2),
.stars[data-rating="3"] svg:nth-child(-n + 3),
.stars[data-rating="4"] svg:nth-child(-n + 4),
.stars[data-rating="5"] svg:nth-child(-n + 5) {
    fill: #f8a623;
}

/*appointment end*/

/*business rating start*/
.btn-primary.disabled,
.btn-primary:disabled,
fieldset:disabled .btn-primary {
    background-color: var(--primary-20) !important;
    border-color: var(--primary-30) !important;
    color: #333 !important;
}

.appointment-card {
    border-color: var(--color-gray-20, #e5e5e5) !important;
}

.btn-primary {
    background-color: var(--primary-50, #e839a4);
    border-color: var(--primary-50, #e839a4);
}

.btn-primary:hover {
    background-color: var(--primary-60, #d62990);
    border-color: var(--primary-60, #d62990);
}

.btn-outline-secondary:hover {
    background-color: var(--color-gray-10, #f8f9fa);
    color: var(--color-gray-80, #333333);
}

.btn-light {
    background-color: var(--color-gray-10, #f8f9fa);
    border: 1px solid var(--color-gray-20, #e5e5e5);
    color: var(--color-gray-70, #666666);
}

.btn-light:hover {
    background-color: var(--color-gray-20, #e5e5e5);
}

.text-primary {
    color: var(--primary-50) !important;
}

.border-primary {
    border: 1px solid var(--primary-50) !important;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-outline-primary {
    border: 1px solid var(--primary-50) !important;
}

.btn-outline-primary:disabled {
    color: var(--primary-50) !important;
    border: 1px solid var(--primary-20) !important;
}

/*category start*/
.category-card-inner {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.category-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-image-container {
    width: 100%;
    height: 100%;
    background-color: #222;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card-inner:hover .category-image {
    transform: scale(1.05);
}

.category-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    border-bottom: 1px solid var(--color-gray-20, #e8e2e8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 1.127px 3.381px 0px rgba(255, 255, 255, 0.25) inset;
}

.category-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/*category end*/

/*subcategory card start*/
.subcategory-card-inner {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.subcategory-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.subcategory-image-container {
    width: 100%;
    height: 100%;
    background-color: #222;
}

.subcategory-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.subcategory-card-inner:hover .subcategory-image {
    transform: scale(1.05);
}

.subcategory-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    border-bottom: 1px solid var(--color-gray-20, #e8e2e8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0px 1.127px 3.381px 0px rgba(255, 255, 255, 0.25) inset;
}

.subcategory-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}
/*subcategory card end*/

/*chat left start*/
.chat-container {
    height: 100vh;
    overflow: hidden;
    display: flex;
}

.chat-sidebar {
    width: 375px;
    background-color: #f2f0f3;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: 80px;
}

.search-chat {
    border-radius: 12px !important;
    border: 1px solid var(--color-gray-50, #a48fa5) !important;
    margin-left: 16px !important;
    margin-right: 16px !important;
}

.user-profile {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
}

.user-email {
    font-size: 13px;
    color: #999;
}

.businesses-title {
    padding: 16px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.businesses-list {
    display: flex;
    padding: 0 16px 16px;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
}

.business-item {
    position: relative;
    display: inline-block;
}

.business-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-status {
    position: absolute;
    top: 70px;
    left: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4cd137;
    border: 2px solid #fff;
    z-index: 9999;
}

.business-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff69b4;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 25px;
    border: 1px solid #eee;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
}

.search-input input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    margin-left: 8px;
    position: relative;
}

.search-input input::placeholder {
    color: #999;
}

.search-icon {
    color: #999;
    font-size: 18px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.messages-title {
    padding: 0 16px 12px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.messages-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px;
}

/* Pembe renk scrollbar için */
.messages-list::-webkit-scrollbar {
    width: 6px;
}

.messages-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.messages-list::-webkit-scrollbar-thumb {
    background: var(--primary-50);
    border-radius: 10px;
}

.messages-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-60, #be3cb4);
}

.message-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.message-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: 12px;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4cd137;
    border: 2px solid #fff;
}

.message-content {
    flex: 1;
}

.message-sender {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 4px;
}

.message-text {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
}

.message-text-icon {
    margin-right: 4px;
    display: flex;
    align-items: center;
}

.message-text-icon img {
    width: 16px;
    height: 16px;
}

.message-badge {
    background-color: var(--primary-50);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.businesses-list::-webkit-scrollbar {
    display: none;
}

/*chat  left end*/

/*chat right start*/
.chat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: 100%;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .chat-content {
        margin-top: 0px;
    }
}

.chat-header {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-user {
    display: flex;
    align-items: center;
}

.chat-header-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: 12px;
}

.chat-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-header-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4cd137;
    border: 2px solid #fff;
}

.chat-header-info {
    flex: 1;
}

.chat-header-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.chat-header-status-text {
    font-size: 13px;
    color: #4cd137;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
}

.header-action-btn.email-btn {
    background-color: var(--primary-10, #f9e0f5);
    color: var(--primary-50);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: 400px;
    max-height: 60vh;
}

/* Pembe scrollbar için chat-messages için de aynı stil */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary-50);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--primary-60, #be3cb4);
}

.chat-time-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
    color: #999;
    font-size: 12px;
}

.chat-message-wrapper {
    display: flex;
    margin-bottom: 16px;
    max-width: 100%;
}

.user-message-wrapper {
    flex-direction: row-reverse;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    flex-shrink: 0;
}

.user-message-wrapper .chat-avatar {
    margin-right: 0;
    margin-left: 12px;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-message-content {
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 48px);
}

.user-message-wrapper .chat-message-content {
    align-items: flex-end;
}

.chat-message-info {
    display: flex;
    margin-bottom: 4px;
    align-items: baseline;
}

.chat-message-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-right: 8px;
}

.chat-message-time {
    font-size: 12px;
    color: #999;
}

.chat-message {
    display: flex;
    margin-bottom: 4px;
    max-width: 100%;
}

.other-message {
    align-self: flex-start;
}

.my-message {
    align-self: flex-end;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
}

.other-message .message-bubble {
    background-color: #f0f0f0;
    border-bottom-left-radius: 5px;
}

.my-message .message-bubble {
    background-color: var(--primary-50);
    color: #fff;
    border-bottom-right-radius: 5px;
}

.message-text {
    font-size: 14px;
    line-height: 1.4;
}

.chat-input-area {
    padding: 16px;
    background-color: #fff;
    border-top: 1px solid #eee;
    position: relative;
}

.chat-tools-container {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 80px;
    left: 16px;
    right: 16px;
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

.chat-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.chat-tool-header span {
    font-weight: 600;
    color: #333;
}

.tool-close-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
}

.emoji-container {
    padding: 16px;
}

.emoji-category {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.emoji {
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.emoji:hover {
    background-color: #f5f5f5;
}

.file-upload-container {
    padding: 16px;
}

.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
}

.file-upload-area svg {
    color: var(--primary-50);
    margin-bottom: 16px;
}

.file-upload-area p {
    margin-bottom: 16px;
}

.file-select-btn {
    background-color: var(--primary-50);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: 500;
}

.chat-input-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 8px 16px;
}

.chat-note-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    padding: 8px 0;
}

.chat-action-buttons {
    display: flex;
    align-items: center;
}

.chat-emoji-btn,
.chat-attachment-btn,
.chat-image-btn,
.chat-send-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send-btn {
    color: var(--primary-50);
}

/*chat right end*/

/*salon gallery start*/
.salon-gallery-page {
    min-height: calc(100vh - 70px);
    background-color: #f9f9f9;
}

.gallery-hover-overlay {
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-hover-overlay {
    opacity: 0.7 !important;
}

.category-filter .btn-outline-primary {
    background-color: transparent !important;
    border-color: var(--color-gray-100) !important;
    color: var(--color-gray-700) !important;
}

.category-filter .btn-outline-primary:hover {
    background-color: var(--color-primary-50);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.gallery-card-wrapper {
    position: relative;
}

.gallery-card-wrapper .quick-view-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*salon gallery end*/

/*profile start*/
.profile-content {
    background-color: var(--white);
    overflow: hidden;
}

.profile-cover-area {
    position: relative;
}

.profile-cover-image {
    height: 200px;
    background-position: center;
    background-size: cover;
    position: relative;
    background-image: url("../../images/profile/profile-banner.png");
}

.cover-edit-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cover-edit-btn:hover {
    background-color: var(--white);
}

.profile-avatar-area {
    display: flex;
    align-items: center;
    padding: 0 2rem 1.5rem;
    position: relative;
    margin-top: -50px;
}

.profile-avatar {
    position: relative;
}

.profile-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--white);
    background-color: var(--white);
    object-fit: cover;
}

.avatar-edit-btn {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--color-gray-10);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.avatar-edit-btn i {
    color: var(--primary-50);
}

.profile-info {
    margin-left: 1.5rem;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-gray-100);
}

.profile-email {
    font-size: 0.9rem;
    color: var(--color-gray-70);
    margin-bottom: 0;
}

.profile-form-area {
    padding: 0px 35px;
}

.profile-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-gray-100);
}

@media (max-width: 767.98px) {
    .profile-form-area {
        padding: 10px 8px 20px 8px;
    }

    .profile-avatar-area {
        flex-direction: column;
        text-align: center;
        padding-bottom: 1rem;
    }

    .profile-info {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/*profile end*/
/*profile notifications start*/

.notification-card {
    border-bottom: 1px solid #a48fa5 !important;
    padding: 12px;
    background-color: var(--white);
    transition: all 0.2s ease;
}

.notification-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.notification-time {
    display: block;
    margin-top: 5px;
    color: #6c757d;
}

/*profile notifications end*/
/*business profile start*/
.businesses-list-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 15px;
}

.businesses-list {
    display: flex;
    gap: 10px;
    padding: 5px 0;
    min-width: min-content;
}

.businesses-list::-webkit-scrollbar {
    height: 4px;
}

.businesses-list::-webkit-scrollbar-thumb {
    background-color: #e83e8c !important;
    border-radius: 10px;
}

.businesses-list::-webkit-scrollbar-track {
    background-color: pink !important;
    border-radius: 10px;
}

/*business profile end*/

/* Business Dashboard Styles */

.bg-primary-light {
    background-color: rgba(232, 62, 140, 0.15);
}

.bg-success-light {
    background-color: rgba(40, 167, 69, 0.15);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.15);
}

.bg-danger-light {
    background-color: rgba(220, 53, 69, 0.15);
}

.text-gray-500 {
    color: #adb5bd !important;
}

.text-gray-600 {
    color: #6c757d !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.card {
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.progress {
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background-color: #e83e8c;
}

.btn-outline-primary {
    color: #e83e8c;
    border-color: #e83e8c;
}

.list-group-item {
    transition: all 0.2s ease;
}

.list-group-item:hover {
    background-color: rgba(232, 62, 140, 0.05);
}

.rounded-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats Card Component */
.stats-card {
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: none;
    transition: transform 0.2s;
    overflow: hidden;
    padding: 20px;
    height: 100%;
    height: 160px;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 0;
    font-size: 1.3rem;
    color: #fff;
    border-radius: 10px;
}

.stats-icon-blue {
    background-color: #5b74ff;
}

.stats-icon-red {
    background-color: #ff4545;
}

.stats-icon-purple {
    background-color: var(--primary-50);
}

.stats-icon-pink {
    background-color: #ed3ba9;
}

.percentage-badge {
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0;
    display: inline-block;
}

.percentage-badge.danger {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.percentage-badge.success {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
}

.trend-line {
    height: 35px;
}

.user-profile {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    margin-left: 0;
    width: 100%;
    position: relative;
    left: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.business-footer {
    background-color: #fff;
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
    margin-left: 0;
    width: 100%;
    position: relative;
    left: 0;
    transition: all 0.3s ease;
}

/* Responsive Sidebar */
@media (max-width: 992px) {
    .sidebar {
        width: var(--sidebar-collapsed-width);
    }

    .sidebar .sidebar-brand,
    .sidebar .nav-text,
    .sidebar .user-info,
    .submenu-icon {
        display: none;
    }

    .sidebar .sidebar-nav .nav-link {
        justify-content: center;
        padding: 12px;
    }

    .sidebar .sidebar-nav .nav-icon {
        margin-right: 0;
    }

    .user-profile {
        justify-content: center;
    }

    .user-avatar {
        margin-right: 0;
    }

    .main-content {
        margin-left: var(--sidebar-collapsed-width);
        width: calc(100% - var(--sidebar-collapsed-width));
    }

    .navbar-top {
        left: var(--sidebar-collapsed-width);
        width: calc(100% - var(--sidebar-collapsed-width));
    }

    .business-footer {
        left: var(--sidebar-collapsed-width);
        width: calc(100% - var(--sidebar-collapsed-width));
    }
}

/* ... existing code ... */

/* User Profile in Sidebar */
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
}

/* Business Layout Body Styles */
.busines-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.content-wrapper {
    display: flex;
    flex: 1;
}

.business-search-container {
    border-radius: 12px;
}

.business-search-container-input {
    color: var(--color-gray-50, #a48fa5);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    padding-left: 50px !important;
    line-height: 20px;
    border-radius: 8px !important;
    border: 1px solid var(--color-gray-50, #a48fa5);
    background: #fff;
    height: 48px !important;
}

.business-search-container {
    width: 100%;
}

.business-search-container-search-icon {
    left: 14px;
    top: 50% !important;
    transform: translateY(-50%);
    color: #a48fa5;
}

.business-search-container-input:focus {
    border-color: var(--primary-50);
    box-shadow: 0 0 0 0.2rem rgba(215, 72, 207, 0.25);
    background: #fff;
}

@media (max-width: 767.98px) {
    .business-search-container {
        margin-bottom: 10px;
    }
}

/* Chart colors */

/* Stats card icon colors */
.stats-icon-blue {
    background-color: #5b74ff;
}

.stats-icon-red {
    background-color: #ff4545;
}

.stats-icon-purple {
    background-color: var(--primary-50);
}

.stats-icon-pink {
    background-color: #ed3ba9;
}

.chart-area {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.pie-chart-container {
    height: 200px;
    position: relative;
}

.pie-chart-legend {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    margin-right: 10px;
}

.legend-text {
    font-size: 14px;
    font-weight: 500;
}

.legend-value {
    margin-left: auto;
    font-weight: 700;
}

.sales-chart {
    height: 350px;
}

/* Chart colors */
.chart-pink {
    color: var(--primary-50);
    background-color: rgba(215, 74, 191, 0.2);
}

.chart-pink-bg {
    background-color: rgba(215, 74, 191, 0.2);
}

.chart-pink-border {
    border-color: var(--primary-50);
}

.chart-green {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.2);
}

.chart-green-bg {
    background-color: rgba(40, 167, 69, 0.2);
}

.chart-blue {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.2);
}

.chart-blue-bg {
    background-color: rgba(0, 123, 255, 0.2);
}

.expenses-legend {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.expenses-legend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.expenses-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    margin-right: 10px;
}

.expenses-legend-left {
    display: flex;
    align-items: center;
}

.expenses-legend-text {
    color: var(--color-gray-60, #8d758d);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.expenses-legend-value {
    font-weight: 700;
    color: var(--primary-50);
}

.chart-pink {
    color: var(--primary-50);
    background-color: rgba(215, 74, 191, 0.2);
}

.chart-pink-bg {
    background-color: rgba(215, 74, 191, 0.2);
}

.chart-pink-border {
    border-color: var(--primary-50);
}

.chart-green {
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.2);
}

.chart-green-bg {
    background-color: rgba(40, 167, 69, 0.2);
}

.chart-blue {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.2);
}

.chart-blue-bg {
    background-color: rgba(0, 123, 255, 0.2);
}

.bg-primary-light {
    background-color: rgba(232, 62, 140, 0.15);
}

.bg-success-light {
    background-color: rgba(40, 167, 69, 0.15);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.15);
}

.bg-info-light {
    background-color: rgba(23, 162, 184, 0.15);
}

.bg-secondary-light {
    background-color: rgba(108, 117, 125, 0.15);
}

.text-success {
    color: #28a745 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-info {
    color: #17a2b8 !important;
}

.text-secondary {
    color: #6c757d !important;
}

.text-gray-600 {
    color: #6c757d !important;
}

.card {
    transition: all 0.3s ease;
}

.business-search-container {
    position: relative;
    width: 100%;
}

.business-search-container-search-icon {
    top: 50% !important;
    left: 15px;
    transform: translateY(-50%);
    z-index: 10;
    color: #999;
}

:root {
    --sidebar-width: 240px;
}

.content-wrapper {
    display: flex;
}

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar-top {
    margin-left: 0;
    width: 100%;
    position: relative;
    left: 0;
}

.business-footer {
    margin-left: 0;
    width: 100%;
    position: relative;
    left: 0;
}

@media (min-width: 768px) {
    .main-content {
        margin-left: var(--sidebar-width);
        width: calc(100% - var(--sidebar-width));
    }

    .navbar-top {
        margin-left: 0;
        width: 100%;
    }

    .business-footer {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .business-footer {
        width: 100% !important;
        margin-left: 0 !important;
        left: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .content-body {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }
}

@media (max-width: 1024px) {
    .navbar-top {
        width: 100% !important;
        margin-left: 0 !important;
        left: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
/* Business Suppliers */
.supplier-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.supplier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

.supplier-image {
    height: 230px;
    object-fit: cover;
}

.supplier-logo-wrapper {
    position: absolute;
    left: 20px;
    bottom: -35px;
    display: flex;
    align-items: center;
}

.supplier-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-right: 10px;
}

.supplier-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.supplier-title {
    margin-left: 5px;
    padding: 5px 10px;
    padding-top: 20px !important;
}

.supplier-card .card-title {
    color: #333;
    font-size: 18px;
}

.location-info,
.phone-info {
    color: #666;
    font-size: 13px;
}

.icon-wrapper {
    color: #777;
    width: 20px;
    margin-right: 8px;
    display: flex;
    justify-content: center;
}

/*Business Suppliers End */

.fixed-height-container {
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
}

.table-container {
    position: relative;
}

.no-results-top-container {
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.empty-table-placeholder {
    color: #a0a0a0;
    font-style: italic;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.table > :not(caption) > * > * {
    padding: 0.75rem 1rem;
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

@media (max-width: 767.98px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.border-dashed {
    border-style: dashed !important;
    border-color: var(--primary-colors-primary-colors-50, var(--primary-50)) !important;
    border-width: 2px !important;
}

.subtitle-medium-bold {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-90, #382538);
}

.remove-subcategory {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
}

.bg-success {
    background-color: #47d653 !important;
}

.bg-danger {
    background-color: #ff4545 !important;
}

.text-dark {
    color: #000 !important;
}

/* 1. Genel Stil Düzenlemeleri */
.chat-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    max-height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
    /* White background for chat content */
}

/* 2. Chat Header Bölümü */
/* Header bileşeni artık <x-chat.header /> ile yükleniyor */

/* 4. Mesaj Alanı */
.chat-messages {
    padding: 15px;
    overflow-y: auto;
    flex-grow: 1;
    height: calc(100vh - 220px) !important;
    background-color: #ffffff;
    /* White background for messages area */
}

.chat-message-wrapper {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
}

.message-incoming {
    align-self: flex-start;
}

.message-outgoing {
    align-self: flex-end;
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.chat-avatar {
    flex-shrink: 0;
}

.chat-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-message-content {
    max-width: 80%;
}

.message-bubble {
    background-color: #f5f5f5;
    padding: 12px 15px;
    border-radius: 18px;
    position: relative;
    max-width: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    word-wrap: break-word;
}

.message-outgoing .message-bubble {
    background-color: var(--primary-50);
    color: white;
}

.message-time {
    font-size: 11px;
    color: #888;
    margin-top: 5px;
    text-align: right;
}

.chat-date {
    text-align: center;
    margin: 20px 0;
    color: #666;
    font-size: 12px;
    position: relative;
}

.chat-date:before,
.chat-date:after {
    content: "";
    height: 1px;
    background-color: #eee;
    flex-grow: 1;
    position: absolute;
    top: 50%;
    width: 30%;
}

.chat-date:before {
    left: 0;
}

.chat-date:after {
    right: 0;
}

/* 5. Chat Input Alanı */
.chat-input-area {
    border-top: 1px solid #eee;
    padding: 15px;
    background-color: #fff;
    position: relative;
}

.chat-input-container {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 24px;
    padding: 8px 15px;
}

.chat-input {
    flex-grow: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 8px 0;
    font-size: 14px;
}

.chat-action-buttons {
    display: flex;
    align-items: center;
}

.chat-action-buttons button {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #777;
    transition: all 0.2s;
    border-radius: 50%;
}

.chat-action-buttons button:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-50);
}

.chat-send-btn {
    color: var(--primary-50) !important;
}

/* 6. Chat Tools Container */
.chat-tools-container {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.chat-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.tool-close-btn {
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
}

/* 7. Emoji Container */
.emoji-container {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    max-height: 200px;
    overflow-y: auto;
}

.emoji {
    font-size: 24px;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.2s;
}

.emoji:hover {
    transform: scale(1.2);
}

/* 8. File Upload Container */
.file-upload-container {
    padding: 20px;
}

.file-upload-area {
    border: 2px dashed #ddd;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

.file-select-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-50);
    color: white;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 10px;
}

/* 9. Responsive Styles */
@media (max-width: 991.98px) {
    .chat-content {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        background: #fff;
        height: 100vh;
        width: 100vw;
    }

    .chat-messages {
        height: calc(100vh - 170px) !important;
        overflow-y: auto;
        padding-bottom: 70px;
        background-color: #ffffff;
        margin-top: 70px;
        /* Header'ın yüksekliği için yer aç */
    }

    .chat-message-content {
        max-width: 85%;
    }

    .message-bubble {
        padding: 10px 12px;
    }

    .chat-avatar img {
        width: 35px;
        height: 35px;
    }

    .chat-input-area {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        z-index: 95;
    }
}

.business-filter-dropdown-button {
    border: 1px solid var(--color-gray-50, #a48fa5) !important;
    background: #e8e2e8 !important;
    border-radius: 12px !important;
    width: 100% !important;
}

.service-image {
    width: 60px;
    height: 40px;
    object-fit: contain;
}

.table > thead {
    border-bottom: 1px solid var(--color-gray-20, #e8e2e8) !important;
    background-color: #fff !important;
}

.table > thead > tr > th {
    color: var(--white-100, #292929);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.table-avatar {
    border-radius: 4px !important;
    background: var(--primary-colors-primary-colors-50, var(--primary-50));
    padding: 4px 5px 4px 6px;
}

.table-avatar > span {
    color: var(--white-100, #fff);
    font-family: Jost;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

/* Aksiyon butonları stili */
.action-btn {
    width: 36px;
    height: 36px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    transition: all 0.2s ease;
}

.action-edit {
    border: 1px solid #dee2e6;
    background-color: var(--primary-50) !important;
}

.action-delete {
    background: var(--helper-color-red, #ff4545) !important;
}

/* Action Buttons Styling */
.action-btn {
    width: 36px !important;
    height: 36px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.action-view,
.action-detail {
    border: 1px solid #ed3ba9;
    background-color: #ed3ba9 !important;
}

.action-view:hover,
.action-detail:hover {
    background-color: #ed3ba9 !important;
    border-color: #ed3ba9;
}

.action-view img,
.action-detail img {
    filter: brightness(0) invert(1);
}

.action-edit {
    border: 1px solid #dee2e6;
    background-color: #fff;
}

.action-edit:hover {
    background-color: #f0f6ff;
    border-color: #c6d8ff;
}

.action-delete {
    border: 1px solid #ffe0e3;
    background-color: #fff;
}

.action-delete:hover {
    background-color: #fff5f6;
    border-color: #ffc8cd;
}

/* Media queries for responsive tables */
@media (max-width: 767.98px) {
    .table-scrollable {
        max-height: 500px;
        /* Smaller height on mobile */
    }

    .table-responsive .table th,
    .table-responsive .table td {
        white-space: nowrap;
    }
}

.min-width-140 {
    min-width: 140px;
}

.min-width-200 {
    min-width: 200px;
}

.modal {
    z-index: 999999999 !important;
}

@media (max-width: 767.98px) {
    .d-flex.flex-column.flex-md-row {
        gap: 10px;
    }

    .w-100 {
        margin-bottom: 8px;
    }
}

.staff-card {
    height: 100%;
    width: 100%;
    display: block;
}

.staff-card-inner {
    height: 100%;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.staff-image-container {
    width: 100%;
    height: 100%;
    min-height: 280px;
}

.staff-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 20px;
}

.staff-info {
    position: relative;
    z-index: 2;
}

.navbar {
    
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: 0 !important;
    z-index: 9999 !important;
}

html,
body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Override user-layout padding for hero section */
.main-content-user .hero-section {
    margin-top: -80px !important;
    padding-top: 0 !important;
    top: 0 !important;
}

/* Hero Content Styling */
.hero-main-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    font-family: "Reaktif", sans-serif !important;
}

.hero-sub-heading {
    font-family: "Reaktif", sans-serif !important;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero Buy Button Styling */
.hero-buy-button {
    gap: 12px;
    background: rgba(255, 255, 255, 1);
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 12px 24px;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 48px;
}

.hero-buy-button:hover {
    width: 240px;
    height: 48px;
    background-color: var(--gray-100);
    transform: translateY(-2px);
    color: white;
}

.circle-cta {
    width: 110px;
    height: 110px;
    flex: 0 0 auto;
    padding: 10px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.circle-cta .circle-text {
    fill: #fff;
    letter-spacing: 2px;
    font-weight: 400;
}

.see-more--white {
    color: #fff;
    position: relative;
    letter-spacing: 0.2em;
    font-weight: 300;
}

.see-more--white::after {
    content: "";
    display: block;
    height: 1px;
    width: 240px;
    margin-top: 8px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0)
    );
}

/* Küçük ekran uyarlamaları */
@media (max-width: 991.98px) {
    .campaign-glass {
        gap: 16px;
        padding: 8px 12px;
    }

    .circle-cta {
        width: 88px;
        height: 88px;
    }

    .see-more--white::after {
        width: 140px;
    }
}

.campaign-circle {
    position: relative;
    width: 145px;
    height: 150px;
    display: inline-block;
}

.campaign-circle__svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    margin-top: -20px !important;
    margin-left: 3px !important;
}

.campaign-circle__blur {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    height: 100px;
    width: 100px;
}

@media (max-width: 991.98px) {
    .campaign-circle {
        width: 110px;
        height: 110px;
    }
}

.campaign-rotate {
    transform-box: fill-box;
    transform-origin: 80px 80px;
    animation: kampanya-spin 14s linear infinite;
}

@keyframes kampanya-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---- HERO Sağdaki Ürün Kartı ---- */

.promo-top {
    font-size: 13px;
    text-align: center;
}

.promo-title {
    line-height: 1.2;
    text-align: center;
    margin-bottom: 8px;
    padding: 0 4px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.promo-image {
    width: 70px;
    height: auto;
    margin: 2px auto 4px;
    object-fit: contain;
}

.promo-prices {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.price-now {
    color: var(--primary-50);
    font-weight: 700;
}

.price-old {
    color: #9aa;
    font-size: 14px;
}

.promo-note {
    font-size: 0.75rem;
    text-align: center;
    padding: 4px 2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    margin: 0;
    color: #888;
}

/* Sol-alt yuvarlak ok butonu */
.promo-fab {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #f4f5f7;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease,
        background 0.15s ease;
}

.promo-fab i {
    font-size: 18px;
}

.promo-fab:hover {
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Mobil: kartı akışa al */
@media (max-width: 991.98px) {
    .hero-promo-card {
        position: static;
        width: 90%;
        max-width: 320px;
        margin: 18px auto 0;
        padding: 16px;
        min-height: auto;
    }

    .hero-promo-card img {
        height: 140px;
        width: 140px;
    }
}

@media (max-width: 576px) {
    .hero-promo-card {
        width: 95%;
        max-width: 280px;
        padding: 12px;
    }

    .hero-promo-card img {
        height: 110px;
        width: 110px;
    }

    .promo-title {
        font-size: 0.9rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .promo-image {
        width: 80px;
        margin: 6px auto 8px;
    }

    .promo-prices {
        margin-bottom: 6px;
    }

    .price-now {
        font-size: 1rem;
    }

    .promo-note {
        font-size: 0.7rem;
        padding: 2px;
    }
}

.see-more-line {
    position: relative;
    width: clamp(320px, 42vw, 720px);
    padding-right: 72px;
    margin-top: 18px;
}

.see-more-line::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%);
    z-index: 0;
}

/* Yazı */
.see-more-text {
    position: relative;
    z-index: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 300;
    font-size: clamp(16px, 3vw, 30px);
    line-height: 1;
    padding-right: 12px;
}

.see-more-arrow-ic {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    /* dikey ortala */
    width: clamp(32px, 4vw, 56px);
    /* PNG/SVG boyutu */
    height: auto;
    display: block;
    z-index: 2;
    /* yazı ve çizginin üstünde */
    pointer-events: none;
    /* imleç okta takılmasın */
}

/* Hover mikro etki (opsiyonel) */
.see-more-line:hover::after {
    background: #fff;
}

/* ================= HERO – 2. satır düzeni (mevcut yapıyı bozmadan) ================ */

/* 2. satır: kampanya dairesi + "DAHA FAZLA GÖR" satırı yan yana gelsin */
.hero-section .hero-content .campaign-circle {
    display: inline-block;
    vertical-align: middle;
    margin-right: clamp(12px, 2vw, 24px);
}

.hero-section .hero-content .see-more-line {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: clamp(280px, 42vw, 720px);
    padding-right: clamp(52px, 7vw, 92px);
    margin-top: clamp(8px, 1.5vh, 16px);
}

.hero-section .hero-content .see-more-text {
    position: relative;
    z-index: 2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 300;
    font-size: clamp(18px, 3vw, 40px);
    line-height: 1.15;
}

.hero-section .hero-content .see-more-line::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    /* metnin biraz altında */
    height: clamp(18px, 4.2vw, 32px);
    background: url("/images/hero/see-more-underline.svg") right bottom/100%
        100% no-repeat;
    z-index: 1;
}

.hero-section .hero-content .see-more-arrow-ic {
    position: absolute;
    right: 70px;
    bottom: 0;
    transform: translateY(18%);
    height: clamp(18px, 4.2vw, 32px);
    width: auto;
    z-index: 2;
    pointer-events: none;
}

.campaign-circle {
    position: relative;
    width: 140px;
    height: 140px;
}

.campaign-circle__svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
}

.campaign-circle__ring {
    fill: none;
    stroke: rgba(255, 255, 255, 0.75);
    stroke-width: 2;
}

.campaign-circle__text {
    fill: #fff;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.campaign-circle__arrow {
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Yazılar döner */
.campaign-rotate {
    transform-box: fill-box;
    transform-origin: 80px 80px;
    animation: kampanya-spin 14s linear infinite;
}

@keyframes kampanya-spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-promo-card img {
    height: 140px;
    width: 140px;
}
.hero-promo-card {
    position: absolute;
    right: 6vw;
    bottom: clamp(40px, 8vh, 80px);
    width: clamp(280px, 26vw, 360px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 20px 20px 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 99;
    max-width: 280px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
}

.z--1 {
    z-index: -1 !important;
}

/* Mobil: alt akışa al */
@media (max-width: 991.98px) {
    .hero-section .hero-content .campaign-circle {
        margin-bottom: 8px;
    }

    .hero-section .hero-content .see-more-line {
        width: 100%;
        padding-right: 56px;
    }

    .hero-promo-card {
        position: static;
        width: 100%;
        margin: 18px auto 0;
    }
}

@media (max-width: 768px) {
    .hero-promo-card {
        display: none !important;
    }
}

.popular-products-section {
    background-color: #f8f9fa;
}

/* Products Slider Stilleri */
.products-slider-container {
    max-height: 368px;
    overflow: hidden;
    position: relative;
}

.products-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.products-slider::-webkit-scrollbar {
    height: 8px;
}

.products-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.products-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.products-slider::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.product-slide {
    flex: 0 0 calc(33.333% - 15px);
    min-width: 300px;
}

/* .product-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    gap: 8px;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0px 8px 16px 0px #00000014;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    width: 317px;
    min-height: 400px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
} */
.product-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 4px 0px #0000000a;
}

.product-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-category {
    gap: 4px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #666;
    font-size: 0.75rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
}

.product-brand {
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-info {
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
}

.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.3;
    margin-top: 35px;
    margin-bottom: 25px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px !important;
}

.product-prices {
    margin-bottom: 0;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #b857d8;
}

.old-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.product-description {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
    margin-bottom: 0;
    margin-top: 4px;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .product-slide {
        flex: 0 0 calc(33.333% - 15px);
        min-width: 280px;
    }

    .product-card {
        width: 280px;
        height: 380px;
    }
}

@media (max-width: 992px) {
    .product-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: 250px;
    }

    .product-card {
        width: 250px;
        height: 360px;
        margin-bottom: 20px;
    }

    .product-image-container {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .product-slide {
        flex: 0 0 calc(100% - 15px);
        min-width: auto;
    }

    .product-card {
        width: 100%;
        max-width: 300px;
        height: 390px;
        margin: 0 auto 20px;
    }

    .product-image-container {
        height: 200px;
    }

    .product-title {
        font-size: 0.9rem;
    }

    .current-price {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .popular-products-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .product-card {
        width: 100%;
        max-width: 280px;
        height: 360px;
    }

    .product-image-container {
        height: 160px;
    }

    .product-title {
        font-size: 0.85rem;
    }

    .current-price {
        font-size: 1rem;
    }
}

/*business register page tabs start*/
.application-tabs .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 14px !important;
}

@media screen and (max-width: 768px) {
    .application-tabs .btn {
        padding: 16px 16px;
        height: 75px !important;
    }
}

.application-tabs .btn-outline-light {
    background-color: transparent;
    border-color: #333;
    color: #333 !important;
}

.application-tabs .btn-primary {
    background-color: var(--primary-50);
    border-color: var(--primary-50);
    color: #333 !important;
    font-weight: 600;
}

/*business register page tabs end*/

/* Footer Styles */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--color-gray-30);
}

.footer-top {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 3rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

.footer-brand {
    flex: 1;
    min-width: 0;
    max-width: 300px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-50), #ff6b9d);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 12px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-me {
    font-size: 24px;
    font-weight: 700;
    color: #ff8a00;
    letter-spacing: -0.5px;
}

.logo-uty {
    font-size: 24px;
    font-weight: 700;
    color: #ffb84d;
    letter-spacing: -0.5px;
}

.footer-desc {
    color: var(--gray-70);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.footer-column {
    flex: 1;
    min-width: 0;
}

.footer-heading {
    color: var(--primary-50);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-50);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #333333;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-50);
    transform: translateY(-2px);
}

.footer-divider {
    height: 1px;
    background: var(--color-gray-30);
    margin: 0 0 1rem 0;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    color: #333333;
    font-size: 14px;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.footer-bottom-link {
    color: #333333;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom-link:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #333333;
    transition: width 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--primary-50);
}

.footer-bottom-link:hover:after {
    width: 100%;
    background: var(--primary-50);
}

.profile-page-footer {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-top {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .footer-top {
        flex-wrap: wrap;
        padding-bottom: 2rem;
    }

    .footer-column {
        width: 33.333%;
        margin-bottom: 1.5rem;
    }

    .footer-brand {
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .footer-heading {
        text-align: left;
        margin-bottom: 12px;
    }

    .footer-links {
        text-align: left;
    }

    .footer-links li {
        text-align: left;
    }

    .footer-links a {
        text-align: left;
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-top {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .footer-brand {
        margin-bottom: 1rem;
    }

    .footer-heading {
        text-align: left;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        font-size: 13px;
    }
}

.action-btn {
    height: 36px !important;
}

.brand-card {
    height: 200px !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.search-filter-section {
    border-bottom: 1px solid #e9ecef;
}

.search-box .form-control,
.location-box .form-control {
    border-radius: 25px;
    border: 1px solid #e9ecef;
    padding: 12px 16px;
}

.search-box .input-group-text,
.location-box .input-group-text {
    border-radius: 25px 0 0 25px;
    border: 1px solid #e9ecef;
    background: white;
}

/* Brand Cards Styles */
.brands-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.brand-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 250px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.brand-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.brand-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.brand-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-image {
    transform: scale(1.02);
}

.brand-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
}

.badge-gratis {
    background: #8b5cf6;
    color: white;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: bold;
}

.badge-watsons {
    background: #06b6d4;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
}

.badge-kerastase {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 8px;
    font-weight: bold;
}

.badge-loreal {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 8px;
    font-weight: bold;
}

.loreal-product-image {
    max-height: 520px;
}

/* Section Title */
.section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Salon Cards Styles */
.salons-section {
    padding: 40px 0;
}

.salon-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    max-height: 380px;
}

.salon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.salon-image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.salon-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.salon-card:hover .salon-image {
    transform: scale(1.02);
}

.favorite-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: white;
    transform: scale(1.05);
}

.favorite-btn i {
    font-size: 14px;
    color: #666;
}

.salon-content {
    padding: 16px;
}

.salon-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.salon-logo {
    flex-shrink: 0;
}

.logo-image {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    object-fit: cover;
}

.salon-info {
    flex: 1;
}

.salon-name {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
    line-height: 1.3;
}

.salon-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars {
    display: flex;
    gap: 1px;
}

.stars i {
    font-size: 11px;
    color: #ddd;
}

.stars i.filled {
    color: #ffc107;
}

.stars i.half-filled {
    color: #ffc107;
}

.rating-text {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.salon-details {
    margin-bottom: 10px;
    font-size: 11px;
    color: #666;
}

.salon-location {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 3px;
}

.salon-distance {
    font-size: 11px;
    color: #666;
}

.salon-location i {
    font-size: 11px;
}

.salon-description {
    font-size: 12px;
    color: #666;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .brand-card {
        height: 120px;
    }

    .salon-image-container {
        height: 140px;
    }

    .salon-content {
        padding: 12px;
    }

    .salon-name {
        font-size: 13px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .brands-section,
    .salons-section {
        padding: 30px 0;
    }
}

/*  trend products start */
.trend-card {
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.trend-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.trend-brand-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: 1px;
    opacity: 0.95;
}

.trend-product-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    line-height: 1.2;
}

.trend-product-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    position: relative;
}

.trend-product-image img {
    max-width: 200px;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.trend-card:hover .trend-product-image img {
    transform: scale(1.05);
}

.trend-product-description {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.9;
    font-weight: 300;
}

.trend-detail-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    margin-top: auto;
}

.trend-detail-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

.trend-detail-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.trend-detail-btn:hover i {
    transform: translateX(4px) translateY(-4px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .trend-card {
        min-height: 400px;
        margin-bottom: 24px;
    }

    .trend-brand-title {
        font-size: 24px;
    }

    .trend-product-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .trend-product-image img {
        max-width: 160px;
        max-height: 220px;
    }
}

@media (max-width: 767.98px) {
    .trend-card {
        min-height: 350px;
    }

    .trend-brand-title {
        font-size: 20px;
    }

    .trend-product-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .trend-product-image img {
        max-width: 140px;
        max-height: 180px;
    }

    .trend-product-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .trend-detail-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .trend-card {
        min-height: 320px;
        border-radius: 16px;
    }

    .trend-brand-title {
        font-size: 18px;
    }

    .trend-product-title {
        font-size: 22px;
    }

    .trend-product-image img {
        max-width: 120px;
        max-height: 160px;
    }
}
/*trend products end*/

/* Featured Brands Slider Styles */
.featured-brands-slider-container {
    position: relative !important;
    margin: 40px 0 !important;
    overflow: hidden !important;
    padding: 0 60px !important; /* Space for navigation buttons */
}

.featured-brands-slider {
    display: flex !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    gap: 20px !important;
    will-change: transform !important;
}

.featured-brand-slide {
    flex: 0 0 calc(25% - 15px) !important; /* 4 items on large screens */
    min-width: 280px !important; /* Minimum width for better appearance */
}

.featured-brand-card {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
    cursor: pointer !important;
}

.featured-brand-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.featured-brand-image-container {
    height: 160px !important;
    overflow: hidden !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

.featured-brand-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.featured-brand-card:hover .featured-brand-image {
    transform: scale(1.05) !important;
}

.featured-brand-content {
    padding: 16px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.featured-brand-name {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--dark) !important;
    margin-bottom: 4px !important;
}

.featured-brand-category {
    font-size: 12px !important;
    color: var(--primary-50) !important;
    margin-bottom: 8px !important;
    font-weight: 500 !important;
}

.featured-brand-description {
    font-size: 12px !important;
    color: var(--gray-50) !important;
    line-height: 1.4 !important;
    margin-bottom: 0 !important;
    margin-top: auto !important;
}

/* Navigation Buttons */
.featured-brands-nav-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: white !important;
    border: 1px solid var(--gray-20) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.featured-brands-nav-btn:hover {
    background: var(--primary-50) !important;
    color: white !important;
    border-color: var(--primary-50) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

.featured-brands-nav-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.featured-brands-prev-btn {
    left: 10px !important;
}

.featured-brands-next-btn {
    right: 10px !important;
}

.featured-brands-nav-btn i {
    font-size: 16px !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .featured-brand-slide {
        flex: 0 0 calc(33.333% - 14px) !important; /* 3 items on medium screens */
        min-width: 250px !important;
    }
}

@media (max-width: 768px) {
    .featured-brand-slide {
        flex: 0 0 calc(50% - 10px) !important; /* 2 items on tablets */
        min-width: 220px !important;
    }

    .featured-brand-image-container {
        height: 140px !important;
    }

    .featured-brands-slider-container {
        padding: 0 50px !important;
    }

    .featured-brands-prev-btn {
        left: 5px !important;
    }

    .featured-brands-next-btn {
        right: 5px !important;
    }
}

@media (max-width: 576px) {
    .featured-brand-slide {
        flex: 0 0 100% !important; /* 1 item on mobile */
        min-width: 280px !important;
    }

    .featured-brands-slider {
        gap: 15px !important;
    }

    .featured-brands-slider-container {
        padding: 0 45px !important;
    }

    .featured-brand-card {
        margin: 0 5px !important;
    }

    .featured-brands-nav-btn {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
    }
}
/*featured sldier end*/

/* Location Selector start */
.location-container {
    min-width: 200px;
}

.location-selector {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.location-selector:hover {
    border-color: var(--primary-50);
}

.location-selector i.fa-map-marker-alt {
    color: #666;
    margin-right: 8px;
    font-size: 14px;
}

.location-selector select {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 20px;
}

.location-selector select:focus {
    outline: none;
}

.location-selector select option {
    background: #fff;
    color: #333;
    padding: 8px;
}

.location-selector i.fa-chevron-down {
    color: #666;
    font-size: 12px;
    margin-left: 8px;
    pointer-events: none;
    transition: transform 0.3s;
}

.location-selector:focus-within i.fa-chevron-down {
    transform: rotate(180deg);
}
/*location selector end*/
.products-page {
    min-height: 100vh;
    background: #f8f9fa;
}

/* page-hero Section */
.page-hero-section {
    height: 300px;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.search-filter-section {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.top-search-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-container {
    flex: 1;
    min-width: 250px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-50);
    font-size: 16px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid var(--primary-50);
    border-radius: 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: var(--primary-50);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
}

.filter-btn,
.cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--primary-50);
    color: var(--primary-50);
}

.cart-btn {
    background: var(--primary-50);
    color: #fff;
    border-color: var(--primary-50);
}

.cart-btn:hover {
    background: var(--primary-50);
    border-color: var(--primary-50);
}

/* Category Tabs */
.category-tabs {
    margin-top: 20px;
}

.tab-container {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary-50);
}

.tab-btn.active {
    color: var(--primary-50);
    font-weight: 600;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-50);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-search-row {
        flex-direction: column;
        align-items: stretch;
    }

    .search-container,
    .location-container {
        min-width: auto;
        width: 100%;
    }

    .action-buttons {
        justify-content: center;
    }

    .tab-container {
        justify-content: flex-start;
    }
}

.sidebar {
    background: white;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.view-all-link {
    color: var(--primary-50);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--primary-60);
    text-decoration: underline;
}

/* Mobile Sidebar Toggle */
@media (max-width: 991px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        z-index: 1050;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .sidebar.show-mobile {
        left: 0;
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        display: none;
    }

    .sidebar-overlay.show {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2rem;
    }

    .search-filter-section .row {
        text-align: center;
    }

    .search-filter-section .col-md-6:last-child {
        margin-top: 15px;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.filter-dropdown-container {
    position: relative;
    display: inline-block;
}

.filter-btn {
    color: #333;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #333;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.filter-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.filter-arrow.rotated {
    transform: rotate(180deg);
}

.filter-dropdown {
    position: absolute;
    top: 100%;
    left: -60%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.filter-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-dropdown-content {
    padding: 20px;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section:last-of-type {
    margin-bottom: 15px;
}

.filter-section-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 0;
    margin: 0;
    font-size: 14px;
    color: #555;
    transition: color 0.2s ease;
}

.filter-option:hover {
    color: #667eea;
}

.filter-option input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.2s ease;
}

.filter-option input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-50);
    border-color: var(--primary-50);
}

.filter-option input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-input {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.price-input:focus {
    outline: none;
    border-color: #667eea;
}

.price-range-inputs span {
    color: #999;
    font-weight: 500;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.apply-filters-btn {
    flex: 1;
    background: var(--primary-50);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.apply-filters-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}


/* Mobile responsive */
@media (max-width: 768px) {
    .filter-dropdown {
        min-width: 280px;
        right: 0;
        left: auto;
    }

    .filter-dropdown-content {
        padding: 15px;
    }

    .filter-actions {
        flex-direction: column;
    }
}

.filter-sidebar {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.04), 0 8px 16px 0 rgba(0, 0, 0, 0.08);
    padding: 20px 32px;
}

.filter-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-main-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-50);
    margin: 0;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.filter-search-box {
    position: relative;
    margin-bottom: 15px;
}

.filter-search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}

.filter-search-input {
    width: 100%;
    padding: 10px 12px 10px 35px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.filter-search-input:focus {
    border-color: var(--primary-50);
}

.show-more-btn {
    background: none;
    border: none;
    color: var(--primary-50);
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.show-more-btn .btn-text {
    font-weight: 500;
}

.show-more-btn .arrow-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.show-more-btn .arrow-icon.fa-chevron-up {
    transform: rotate(180deg);
}

/* Hidden options styling */
.hidden-option {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.filter-options-expanded .hidden-option {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-options-collapsed .hidden-option {
    display: none;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    color: #666;
    transition: color 0.3s ease;
    margin: 0;
    font-weight: 500;
}

.filter-option:hover {
    color: #2c3e50;
}

.filter-option input[type="checkbox"] {
    display: none;
}

/* Rating Filter Styles */
.rating-option {
    align-items: flex-start;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.rating-stars i {
    font-size: 12px;
    color: #ddd;
}

.rating-stars i.filled {
    color: #ffc107;
}

.rating-text {
    margin-left: 6px;
    font-size: 12px;
    color: #666;
}

/* Price Range Slider */
.price-range-slider {
    padding: 10px 0;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.price-inputs input {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
}

.price-separator {
    color: #666;
    font-weight: bold;
}

.slider-container {
    position: relative;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    margin: 10px 0;
}

.slider-track {
    position: absolute;
    height: 100%;
    background: var(--primary-50);
    border-radius: 3px;
    left: 0%;
    right: 0%;
}

.slider {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    pointer-events: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--primary-50);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--primary-50);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Filter Actions */
.filter-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apply-filters-btn,
.clear-filters-btn {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.clear-filters-btn {
    flex: 1;
    background: transparent;
    color: #666;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s ease;
    height:36px!important;border-radius:16px!important;border:1px solid #ddd!important;
}

.apply-filters-btn {
    background-color: var(--primary-50);
    border: none;
    color: white;
}

.apply-filters-btn:hover {
    background-color: var(--primary-60);
}



/* Scrollbar Styling */
.filter-sidebar::-webkit-scrollbar {
    width: 4px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.products-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.product-wrapper {
    width: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-wrapper.hidden-product {
    display: none;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
}

/* Favorite Button */
.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.favorite-btn:hover {
    background: white;
    transform: scale(1.1);
}

.favorite-btn i {
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

.favorite-btn.active i {
    color: #e74c3c;
}

/* Product Image */
.product-image-container {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Product Category */
.product-category {
    font-size: 11px;
    font-weight: 500;
    color: #a48fa5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-align: center;
}

/* Product Name */
.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 8px;
    text-align: center;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.rating-text {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

/* Product Description */
.product-description {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Prices */
.product-prices {
    text-align: center;
    margin-bottom: 15px;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-50);
}

.old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 6px;
}

/* Add to Cart Button */
.add-to-cart-btn {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    flex-shrink: 0;
}

.add-to-cart-btn:hover {
    background: #e8e8e8;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn i {
    font-size: 18px;
}

/* Section Grid Toggle Styles */
.section-grid.collapsed .hidden-product {
    display: none;
}

.section-grid .hidden-product {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .products-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .products-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card {
        height: 380px;
        padding: 15px;
    }

    .product-image-container {
        height: 120px;
    }

    .product-name {
        font-size: 13px;
        min-height: 36px;
    }

    .current-price {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .products-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        height: 360px;
    }
}

.product-detail-page {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.product-images-section {
    position: sticky;
    top: 20px;
}

.main-image-container {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-50);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
}

.favorite-btn:hover {
    background: #f8f9fa;
}

.main-product-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail-item {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: var(--primary-50);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-section {
    padding-left: 30px;
}

.product-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.product-features h3,
.usage-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.product-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    font-size: 14px;
}

.usage-info {
    margin-bottom: 30px;
}

.usage-info p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.product-pricing {
    margin-bottom: 30px;
}
.add-to-cart-main-btn {
    width: 100%;
    background: var(--primary-50);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(215, 72, 207, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-main-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s;
}

.add-to-cart-main-btn:hover::before {
    left: 100%;
}

.add-to-cart-main-btn:hover {
    background: var(--primary-50);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(215, 72, 207, 0.4);
}

.add-to-cart-main-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 6px 20px rgba(215, 72, 207, 0.3);
}

.add-to-cart-main-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.add-to-cart-main-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Ürün Avantajları Bölümü */
.product-benefits-section {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 72, 207, 0.1);
    border-color: var(--primary-50);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-50), #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.benefit-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .benefit-item {
        padding: 10px;
    }

    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .benefit-title {
        font-size: 12px;
    }

    .benefit-desc {
        font-size: 10px;
    }
}

.product-details-accordion {
    border-top: 1px solid #f0f0f0;
}

.detail-item {
    border-bottom: 1px solid #f0f0f0;
}

.detail-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-header:hover {
    color: var(--primary-50);
}

.detail-content {
    display: none;
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
}

.detail-content.active {
    display: block;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 15px;
}

.rating-stars .fa-star {
    color: #ddd;
    font-size: 14px;
}

.rating-stars .fa-star.filled {
    color: #ffc107;
}

.rating-stars span {
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

/* Modal Styles */
.modal-title-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
}

.cart-item-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
}

.remove-item-btn:hover {
    color: var(--primary-50);
}

.cart-total {
    flex: 1;
}

.total-price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.alert {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffecb5;
    color: #664d03;
}

@media (max-width: 768px) {
    .product-info-section {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-title {
        font-size: 24px;
    }

    .current-price {
        font-size: 28px;
    }

    .main-product-image {
        height: 300px;
    }
}
/*notifications start*/
.notification-search-input {
    border-radius: 0 12px 12px 0;
    border: 1px solid var(--color-gray-50, #a48fa5);
    background-color: var(--color-gray-10, #f9f6f9);
    color: var(--color-gray-100, #30272f);
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding: 10px 16px;
}
.notifications-list {
    position: relative;
    z-index: 1001;
}

.no-results-container {
    position: relative;
    z-index: 1001;
    margin-bottom: 60px;
}
/*notifications end*/

/*service item start*/
.service-item {
    transition: all 0.2s ease-in-out;
}

.service-item:hover {
    background-color: #f8f9fa;
}

.service-price {
    min-width: 80px;
    text-align: center;
}

@media (max-width: 576px) {
    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-item .d-flex {
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }
}
/*service item end*/

.cursor-pointer {
    cursor: pointer;
}
.appointment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.hours-morning {
    border-radius: 8px !important;
    border: 1px solid #30272f !important;
}
.hours-evening {
    border-radius: 8px !important;
    border: 1px solid #30272f !important;
}
.salon-detail-sidebar {
    position: fixed;
    top: 100px;
    max-width: inherit;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #a48fa5 transparent;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    z-index: 100;
}

.salon-detail-sidebar::-webkit-scrollbar {
    width: 6px;
}

.salon-detail-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.salon-detail-sidebar::-webkit-scrollbar-thumb {
    background-color: #a48fa5;
    border-radius: 10px;
}

.salon-image-header {
    height: 200px;
    overflow: hidden;
}

.salon-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-logo-container {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    padding: 4px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.salon-logo {
    width: 120px;
    height: 120px;
    border: 4px solid white;
    object-fit: cover;
}

.section-title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.view-all {
    color: var(--primary-50);
    font-size: 14px;
}

.contact-icon img {
    opacity: 0.7;
}

.contact-text {
    color: #555;
}

.social-media .btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.working-day .day {
    color: #555;
}

.salon-detail-action-button {
    position: relative;
    height: 72px !important;
}

.copy-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10;
}

.gallery-card-sm {
    cursor: pointer;
    overflow: hidden;
    height: 120px;
    transition: transform 0.3s;
}

.gallery-card-sm:hover img {
    transform: scale(1.1);
}

.gallery-card-sm img {
    transition: transform 0.3s;
}

.salon-main-info {
    overflow-y: visible;
    padding-right: 5px;
}

@media (max-width: 992px) {
    .salon-detail-sidebar {
        position: relative;
        max-height: none;
        overflow-y: visible;
        margin-bottom: 20px;
        z-index: 1;
        top: 0;
        margin-top:-120px!important;
    }

    .gallery-card-sm {
        height: 100px;
    }

    .salon-image-header img {
        height: 180px;
    }

    .salon-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
   
    .salon-image-header {
        height: 160px;
    }

    .salon-image-header img {
        height: 160px;
    }

    .salon-logo {
        width: 90px;
        height: 90px;
    }

    .working-day {
        flex-direction: column;
        align-items: flex-start;
    }

    .hours-container {
        margin-top: 5px;
        width: 100%;
    }
}

/*profile sidebar start*/

.profile-sidebar {
    background-color: var(--white);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-menu-item {
    margin-bottom: 1rem;
}

.profile-menu-item a {
    color: var(--color-gray-60);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    position: relative;
    font-weight: 400;
    transition: all 0.2s ease;
}

.profile-menu-item a:hover {
    background-color: var(--color-gray-10);
    color: var(--primary-60);
}

.profile-menu-item.active a {
    background-color: var(--primary-50);
    color: var(--white);
}

.notification-badge {
    position: absolute;
    right: 10px;
    background: var(--red);
    color: white;
    font-size: 0.75rem;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.profile-logout-btn {
    color: #ff4545;
    text-decoration: none;
    padding-bottom: 20px;
}

@media (max-width: 767.98px) {
    .profile-sidebar {
        margin-bottom: 1.5rem;
    }
}
/*profile sidebar end*/

.working-day-row {
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
}

.time-slot-row {
    background: white;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.weekly-summary {
    space-y: 8px;
}

.day-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.day-summary:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 600;
    color: #495057;
}

.time-range {
    font-size: 14px;
    color: #28a745;
    font-weight: 500;
}

.holiday-item {
    padding: 12px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 8px;
    background: white;
}

.quick-settings .btn {
    font-size: 14px;
}

.mobile-dark-text {
    color: #fff !important;
}

@media screen and (max-width: 576px) {
    .hero-first-row {
        padding: 0px 20px;
    }
}
@media screen and (max-width: 768px) {
    .hero-second-row {
        display: none !important;
    }
}
.btn-detail-btn {
    border-radius: 12px;
    background: #fff;
    display: flex;
    padding: 8px 12px;
    align-items: center;
    gap: 12px;
}
.btn-detail-btn:hover {
    background: #fff !important;
    border: 1px solid #151515 !important;
}
.btn-detail-btn a {
    color: #151515;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
}

/* all-businesses-filter-button-dropdown start */
.all-businesses-filter-button-dropdown:hover {
    background-color: #f0f0f0 !important;
    color: #333 !important;
}
.all-businesses-filter-dropdown {
    position: absolute !important;
    top: 100% !important;
    bottom: auto !important;
    transform: none !important;
    margin-top: 0.5rem !important;
}
.all-businesses-filter-dropdown.show {
    display: block;
    inset: auto !important;
    top: 100% !important;
    bottom: auto !important;
}

.products-page .location-container select,
.products-page #locationSelect {
    height: 30px !important;
}
.nature-bottom-image{
    width: 190px;
    height: 35px!important;
}

@media screen and (max-width: 767.98px) {
     .salon-detail-sidebar {
        top: -100px!important;
    }
}