@font-face {
    font-family: 'careem';
    src: url('../../../images/CAREEM-REGULAR.DB5F2BCA26992ED25A89.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #AF6D87;
    --secondary-color: #d4a6b9;
    --text-color: #4a4a4a;
    --light-bg: #f8f5f2;
    --dark-gray-bg: #6c7a89;
    --border-color: #e0e0e0;
    --navbar-bg: #ffffff;
}

body {
    font-family: "careem", sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: var(--light-bg); */
    overflow-x: hidden;
}


@media(min-width:1600px) {
    .container {
        max-width: 1500px !important;
    }
}


.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-bar-container {
    position: relative;
}

.search-input {
    padding-right: 45px;
}

.search-button {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    background-color: #AF6D87;
    padding: 10px 8px;
}

.search-button img {
    width: 20px;
    height: 20px;
}

.search-button:hover {
    color: #555;
}


/* Navbar Styling */
.custom-navbar.home-header-bg {
    background-image: url(../../../images/Group.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.custom-navbar {
    direction: rtl;
}

/* هذا يمنع أي خلفية في باقي الصفحات */
.custom-navbar.no-bg {
    background: none !important;
}

.custom-navbar .navbar-brand {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    margin-left: 2rem;
}

.custom-navbar .navbar-brand img {
    height: 70px;
    width: auto;
    margin-left: 10px;
}

.custom-navbar .navbar-brand .logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.custom-navbar .navbar-brand .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.custom-navbar .navbar-brand .logo-since {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.2rem;
}

.navbar-nav .nav-link {
    color: #556C81;
    font-weight: 700;
    padding: 0rem 1rem;
    transition: color 0.3s ease;
    text-decoration: underline;
    font-size: 16px;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover {
    color: #556C81;
}

.form-control {
    /* border: none !important; */
}


.nav-link i {
    font-size: 12px;
    padding-right: 10px;
}


.dropdown-menu {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    border: none;
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.dropdown-menu::-webkit-scrollbar {
    width: 2px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #ccc;
}


.dropdown-menu li {
    /* padding: 5px 20px; */
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li a {
    font-size: 14px;
    font-weight: bold;
    color: #AF6D87;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: block;
}

.dropdown-menu li a:hover {
    background-color: #ffffff;
    color: #AF6D87;
    padding-left: 25px;
}

.dropdown-menu {
    text-align: right;
}

/* Search Bar */
.search-bar-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    /* margin-right: 5rem; */
    /* margin-left: 1rem; */
}

.search-input {
    border-radius: 20px 20px !important;
    padding-right: 3rem;
    padding-left: 0.5rem;
    background-color: #FFFFFF6B;
    -webkit-border-radius: 20px 20px !important;
    -moz-border-radius: 20px 20px !important;
    -ms-border-radius: 20px 20px !important;
    -o-border-radius: 20px 20px !important;
}

.search-button {
    background-color: var(--primary-color);
    color: white;
    border-radius: 0 20px 20px 0 !important;
    padding: 0.6rem 0.5rem;
    border: 1px solid var(--primary-color);
    z-index: 99;
}

.search-button img {
    width: 15px;
    height: 15px;
}

.search-button:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.search-input {
    width: 100%;
    max-width: 500px;
}

.search-input:focus {
    box-shadow: none;
    border-color: transparent;
    outline: none;
}

/* Account and Cart Links */
.account-link,
.cart-link {
    color: #A7657F !important;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    margin-right: 10px;
    display: flex;
    font-weight: 700;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.account-link_main {
    background-color: #556C81;
    border-radius: 20px;
    font-weight: 700;
    color: #fff;
    padding: 0.5rem 1.5rem;
    margin-right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.account-link:hover,
.cart-link:hover,
.account-link_main:hover {
    color: #e0e0e0;
}

.account-link_main img {
    width: 20px;
    height: 20px;
}

.cart-link img {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero-image img {
    width: 85%;
    height: 460px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .hero-image img {
        height: 184px;
    }
}


.hero-title {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #A7657F;
}

.hero-description {
    font-size: 25px;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 200;
    color: #A7657F;
}

.hero-button {
    background: linear-gradient(to right, #A7657F, #D996B1);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    box-shadow: -6px 8px 16px 0px #EFA0BFA8;
}

.hero-button:hover {
    background: linear-gradient(to right, #A7657F, #D996B1);
    color: white;
    box-shadow: -6px 8px 16px 0px #EFA0BFA8;
}

/* Social Bar */
.social-bar {
    position: fixed;
    left: 0;
    /* Position on the left */
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--dark-gray-bg);
    display: flex;
    flex-direction: column;
    padding: 1rem 0.5rem;
    border-radius: 0 10px 10px 0;
    /* Rounded on the right side */
    z-index: 1000;
}

.social-icon {
    color: white;
    font-size: 1rem;
    margin: 0.8rem 0;
    text-align: center;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #fff;
}

.hero-section {
    position: relative;
    background-image: url(../../../images/Group.png);
    background-size: cover;
    background-position: center;
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .custom-navbar .navbar-brand {
        margin-left: 0;
    }

    .search-bar-container {
        margin-right: 0;
        margin-left: 0;
        order: 1;
        /* Move search bar below logo on smaller screens */
        width: 100%;
        padding: 1rem 0;
    }

    .custom-navbar .navbar-nav.ms-auto {
        margin-top: 1rem;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .account-link,
    .cart-link {
        margin: 0 5px;
    }

    .hero-section {
        padding-right: 5%;
        justify-content: center;
        text-align: center;
        height: 239px;
        padding-top: 38px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .social-bar {
        position: static;
        /* Make it static on small screens */
        transform: none;
        flex-direction: row;
        justify-content: center;
        border-radius: 0;
        padding: 0.5rem;
        margin-top: 1rem;
    }

    .social-icon {
        margin: 0 0.5rem;
    }
}

@media (max-width: 768px) {
    .custom-navbar {
        padding: 1rem;
    }

    .custom-navbar .navbar-brand .logo-text {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1rem;
        text-align: center;
    }

    .hero-description {
        font-size: 11px;
        font-weight: bold;
        text-align: center;
    }

    .custom-navbar .navbar-nav .nav-item {
        width: 100%;
        /* Full width for nav items in mobile */
        text-align: center;
    }

    .custom-navbar .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }

    .custom-navbar .navbar-nav.ms-auto {
        flex-direction: column;
        /* Stack account/cart vertically */
    }

    .account-link,
    .cart-link {
        margin: 5px auto;
        /* Center them */
    }
}

.collapse:not(.show) {
    display: block !important;
}

/*  */

.slider-wrapper {
    margin: 20px auto;
}



.side-image {
    flex: 1;
    min-width: 200px;
}

.side-image img,
.slider img {
    width: 100%;
    border-radius: 10px;
}

.main-slider {
    flex: 2;
    min-width: 300px;
}

.slider-wrapper {
    padding: 40px 0;
}

.fixed-image img {
    width: 250px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-slider-container {
    position: relative;
    /* overflow: hidden; */
}

/* .main-slider .slider-card {
    background: linear-gradient(to right, #F6F2EF, #FAF9F6);
    padding: 20px;
    min-width: 250px;
    flex: 0 0 auto;
    text-align: center;
    border-radius: 38px;
    position: relative;
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    -ms-border-radius: 38px;
    -o-border-radius: 38px;
} */

.slider-card_main {
    background: linear-gradient(to right, #F6F2EF, #FAF9F6);
    padding: 40px;
    min-width: 250px;
    flex: 0 0 auto;
    text-align: center;
    border-radius: 38px;
    position: relative;
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    -ms-border-radius: 38px;
    -o-border-radius: 38px;
}

.slider-card_main .card-content p {
    font-size: 16px;
    color: #AA6882;
}

.card-content {
    margin-top: 60px;
    font-weight: bold;
    font-size: 18px;
}


.left-button {
    left: 0;
}

.right-button {
    right: 0;
}

/* إخفاء الأزرار على الشاشات الصغيرة */
@media (max-width: 768px) {
    .nav-button {
        /* display: none; */
    }

    .main-slider {
        padding: 10px;
    }

    .slider-card {
        min-width: 200px;
    }
}

.slider-wrapper {
    padding: 40px 0;
}

.fixed-image img {
    width: 250px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-slider-container {
    position: relative;
    overflow: hidden;
}

.slider-card {
    /*background: #f9f9f9;
    */
    padding: 20px;
    min-width: 250px;
    flex: 0 0 auto;
    text-align: center;
    border-radius: 34px;
    position: relative;
    -webkit-border-radius: 34px;
    -moz-border-radius: 34px;
    -ms-border-radius: 34px;
    -o-border-radius: 34px;
}



.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(188, 121, 147, 1);
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    z-index: 2;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.left-button {
    left: 0;
}

.right-button {
    right: 0;
}

@media (max-width: 768px) {
    .nav-button {
        /* display: none; */
    }

    .main-slider {
        padding: 10px;
    }

    .slider-card {
        min-width: 200px;
    }
}

.slider-section {
    padding: 40px 0;
}

/* .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
} */

.main-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.main-slider {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.slider-card {
    background: #f3f3f3;
    padding: 60px 20px 20px;
    text-align: center;
    border-radius: 10px;
    width: 200px;
    position: relative;
    flex-shrink: 0;
}

.card-img {
    width: 135px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: absolute;
    top: -23px;
    left: 50%;
    transform: translateX(-50%);
}


.nav-button {
    /* background: transparent; */
    border: none;
    cursor: pointer;
    padding: 10px;
    color: white;
}

.static-image img {
    width: 250px;
    height: auto;
    border-radius: 10px;
}


.slider-section {
    background-color: #ffffff;
}

/*
.slick-list {
  overflow-x: visible !important;
} */

.main-slider-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}


.main-slider::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.slider-card {
    min-width: 250px;
    background: #fff;
    border-radius: 10px;
    /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); */
    text-align: center;
    flex-shrink: 0;
}

.card-img {
    max-width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-content {
    padding: 20px 0 0 0;
    font-weight: bold;
}


.card-content p {
    font-size: 16px;
    color: #21322E;
    padding-top: 15px;
}

.nav-button {
    /* background: transparent; */
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.card-img_main {
    width: 100%;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    top: -40px;
    right: -72%;
    transform: translateX(-50%);
}

.left-button {
    left: 0;
}

.right-button {
    right: 0;
}

.static-image img {
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .main-slider-container {
        max-width: 100%;
    }

    .static-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .slider-card_main {
        display: none !important;
    }


    .main-slider-container {
        width: 100%;
    }

    .main-slider {
        justify-content: center;
    }
}

.slick-list {
    padding-top: 30px !important;
}


.slider-card_tow {
    /* background: #f9f9f9; */
    padding: 20px;
    min-width: 250px;
    flex: 0 0 auto;
    text-align: center;
    border-radius: 12px;
    position: relative;
}


.swiper-slide .slider-card_tow {
    background: linear-gradient(to right, rgba(167, 101, 127, 1), rgba(217, 150, 177, 1));
    padding: 20px;
    min-width: 250px;
    flex: 0 0 auto;
    text-align: center;
    border-radius: 38px;
    position: relative;
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    -ms-border-radius: 38px;
    -o-border-radius: 38px;
}

.slider-card_main_tow {
    background: linear-gradient(to right, rgba(167, 101, 127, 1), rgba(217, 150, 177, 1));
    padding: 40px;
    min-width: 250px;
    flex: 0 0 auto;
    text-align: center;
    border-radius: 38px;
    position: relative;
    -webkit-border-radius: 38px;
    -moz-border-radius: 38px;
    -ms-border-radius: 38px;
    -o-border-radius: 38px;
}

@media(max-width:991px) {
    .slider-card_main_tow {
        display: none !important;
    }
}

.slider-card_tow .card-content p {
    font-size: 16px;
    color: #ffffff;
}

.slider-card_main_tow .card-content p {
    font-size: 16px;
    color: #ffffff;
}

.card-content {
    margin-top: 60px;
    font-weight: bold;
    font-size: 18px;
}

.slider-card_tow {
    background: #f3f3f3;
    padding: 60px 20px 20px;
    text-align: center;
    border-radius: 10px;
    width: 200px;
    position: relative;
    flex-shrink: 0;
}




.left-button_tow {
    left: 0;
}

.right-button_tow {
    right: 0;
}

.nav-button_tow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 8px;
    cursor: pointer;
    z-index: 2;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    -webkit-transform: ;
    -moz-transform: ;
    -ms-transform: ;
    -o-transform: ;
}

.nav-button_tow {
    /* background: transparent; */
    border: none;
    cursor: pointer;
    padding: 10px;
    color: rgba(167, 101, 127, 1);
}

.main-slider-container {
    flex: 1 1 auto;
    min-width: 0;
}


/*  */

.featured-products-section {
    padding: 40px 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: rgba(167, 101, 127, 1);
    margin-bottom: 0;
}

.view-all-btn {
    background-color: transparent;
    border-color: var(--primary-color);
    color: #a052a0;
    /* Darker pink/purple for text */
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-all-btn:hover {
    background-color: #d9c0e0;
    color: #ffffff;
    border-color: #e0c0e0;
}

.view-all-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.product-card {
    /* background-color: #fff; */
    border-radius: 10px;
    box-shadow: none !important;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    /* Ensure cards have consistent height */
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    width: 100%;
    max-width: 200px;
    /* Adjust as needed */
    height: auto;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-image-wrapper_TOW img {
    max-width: 100%;
    height: 340px;
    border-radius: 8px;
    margin-bottom: 10px;
}

@media(max-width:991px) {
    .product-image-wrapper_TOW img {
        height: 235px !important;

    }
}

.product-title {
    font-size: 28px;
    font-weight: bold;
    color: rgba(103, 41, 65, 1);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    /* text-overflow: ellipsis; */
    width: 100%;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    /* Push to bottom */
}

.current-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: rgba(167, 101, 127, 1);
}

.old-price {
    font-size: 0.9rem;
    color: rgba(180, 180, 180, 1);
    text-decoration: line-through;
}


@media(max-width:991px){
    .old-price{
        font-size: 8px !important;
    }

    .current-price{
        font-size: 12px !important;
    }
}


.icon-btn {
    background: transparent;
    width: 24px;
    height: 24px;
    border: none;
}

/* Swiper Customizations */
.swiper {
    width: 100%;
    height: auto;
    padding: 10px 0;
    /* Add some padding for navigation buttons if they are outside */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    /* Ensure cards stretch to fill slide height */
    padding: 10px;
    /* Spacing between cards */
}

.swiper-button-prev, .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(188, 121, 147, 1);
    border-radius: 12%;
    box-shadow: 0 2px 8px var(--shadow-color);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: #ffff;
    -webkit-border-radius: 12%;
    -moz-border-radius: 12%;
    -ms-border-radius: 12%;
    -o-border-radius: 12%;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #fff;
    /* Icon color on hover */
}

.swiper-button-prev:after, .swiper-button-next:after {
    content: none;
    /* Hide default Swiper arrows */
}

/* Custom SVG for Swiper arrows */
.swiper-button-prev svg, .swiper-button-next svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    /* Use the color set on the button */
}

/* Positioning for RTL */
.swiper-rtl .swiper-button-prev {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 10px);
    /* Adjust as needed */
}

.swiper-rtl .swiper-button-next {
    right: auto;
    left: var(--swiper-navigation-sides-offset, 10px);
    /* Adjust as needed */
}

/* Media queries for responsiveness */
@media (max-width: 991.98px) {
    .swiper-button-prev, .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .swiper-button-prev svg, .swiper-button-next svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.5rem;
    }

    .view-all-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .product-card {
        max-width: 300px;
    }
}

.erse {
    display: flex;
    justify-content: space-between;
}


/* banner_main */

.banner_main {
    background-color: #fff;
}

.main_banner_top_img {
    background-image: url(../../../images/valentines-day-marry-me-wedding-engagement-ring-box-with-red-rose-gift%201.png);
    background-size: contain;
    background-position: center;
    height: 80vh;
    /* margin-bottom: 10px; */
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-repeat: no-repeat;
    text-align: center;
}

@media (max-width: 991px) {
    .main_banner_top_img {
        width: 100%;
        height: 25vh !important;
        object-fit: cover;
        display: block;
    }

    .banner_content h2 {
        font-size: 19px !important;
        font-weight: bold;
        text-align: center;
        color: rgb(255, 255, 255) !important;
    }


    .banner_content p {
        font-size: 14px !important;
        color: #fff !important;
        margin-bottom: 20px;
        text-align: center;
    }
}

.banner_content {
    max-width: 500px;
    padding-left: 50px;
}

.main_banner_top_img {
    display: flex;
    align-items: center;
}

.main_pom {
    background-color: rgba(167, 101, 127, 1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-align: center;
    margin: 0 auto;
}

.main_pom:hover {
    background-color: rgba(217, 150, 177, 1);
    color: #fff;
    text-decoration: none;
}


.banner_content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    color: rgba(167, 101, 127, 1);
}

.banner_content p {
    font-size: 1.2rem;
    color: rgba(167, 101, 127, 1);
    margin-bottom: 20px;
    text-align: center;
}

.product-price-wrapper_TOW {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
    background-color: #d174a2;
    border-radius: 12%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    -webkit-border-radius: 12%;
    -moz-border-radius: 12%;
    -ms-border-radius: 12%;
    -o-border-radius: 12%;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

@media(max-width:991px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }



    .main-slider-container {
        max-width: 100% !important;
    }

    .slider-card_main {
        display: none !important;
    }

    .nav-button_tow {
        /* display: none !important; */
    }

    .slider-section {
        padding: 12px 0 !important;
    }
}

@media(max-width:500px) {
    .slider-card {

        width: 180px !important;

    }

    .slider-card {
        min-width: 120px !important;
    }

    .swiper-slide .slider-card_tow {
        min-width: 120px !important;
    }

    .slider-card_tow {
        width: 150px !important;
    }

}

.__inline-9 {
    background-image: url(../../../images/footer.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    position: relative;
}


.__inline-9 .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.548);
    z-index: 0;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section .btn-pink {
    background-color: #e88da1;
    color: #fff;
    border: none;
}

.footer-section .btn-pink:hover {
    background-color: #d4748c;
}

footer h5 {
    color: #fff;
}



/* Enhanced Sidebar Styling */
.cz-sidebar {
    /* background: white; */
    border-radius: 12px;
    overflow: hidden;
}

/* Category Items Styling */
.category-item-wrapper {
    border-bottom: 1px solid #f1f1f1;
}

.category-main-item,
.subcategory-item,
.sub-subcategory-item {
    transition: background-color 0.3s ease;
    border: none !important;
}

.category-main-item:hover,
.subcategory-item:hover,
.sub-subcategory-item:hover {
    background-color: #f8f9fa;
}

.category-name,
.subcategory-name,
.sub-subcategory-name,
.tag-name {
    font-size: 14px;
    color: #495057;
    transition: color 0.3s ease;
}

.category-name:hover,
.subcategory-name:hover,
.sub-subcategory-name:hover,
.tag-name:hover {
    color: #007bff;
}

.category-count {
    background: #e9ecef;
    color: #6c757d;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
    margin-left: 5px;
}

.category-actions {
    min-width: 60px;
}

.toggle-icon {
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.toggle-icon.active {
    transform: rotate(45deg);
}

/* Tags Section */
.tag-item {
    border-bottom: 1px solid #f1f1f1;
    transition: background-color 0.3s ease;
}

.tag-item:hover {
    background-color: #f8f9fa;
    margin: 0 -15px;
    padding: 8px 15px !important;
    border-radius: 6px;
}

.tag-item:last-child {
    border-bottom: none;
}

/* Price Range Styling */
.price-range-container {
    text-align: center;
}

.price-input {
    text-align: center;
    border-radius: 6px;
}

.price-separator {
    font-weight: 600;
    color: #6c757d;
}

.price-display {
    margin-top: 10px;
}

.current-price-range {
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

/* Colors Section */
.colors-grid {
    gap: 8px;
}

.color-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.color-circle:hover {
    transform: scale(1.1);
    border-color: #333;
}

.color-circle.selected {
    /* border-color: #333; */
    /* box-shadow: 0 0 0 2px white, 0 0 0 4px #333; */
}

/* Action Buttons */
.filter-actions {
    /* background: #f8f9fa; */
}

.btn-outline-secondary {
    border-color: #dee2e6;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
    color: #6c757d;
}

/* Section Headers */
.__cate-side-title {
    /* background: #f8f9fa; */
    padding: 12px 15px;
    margin: 0;
    text-align: right !important;
}

.widget-title {
    font-size: 16px;
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .SearchParameters {
        width: 100%;
        max-width: none;
    }

    .colors-grid {
        justify-content: center;
    }
}

.btn-sm {
    color: #fff;
    border-radius: 8px;
    padding: 8px;
    background-color: rgba(167, 101, 127, 1);
    border: none !important;
}

.btn-sm:hover {
    color: #fff;
    background-color: rgba(167, 101, 127, 1);
    border: none !important;
}



/* Category Items Styling */
.category-item-wrapper {
    border-bottom: 1px solid #f1f1f1;
}

.category-main-item,
.subcategory-item,
.sub-subcategory-item {
    transition: background-color 0.3s ease;
    border: none !important;
    padding: 12px 15px !important;
}

.category-main-item:hover,
.subcategory-item:hover,
.sub-subcategory-item:hover {
    background-color: #f8f9fa;
}

.category-info {
    display: flex;
    align-items: center;
}

.category-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-name,
.subcategory-name,
.sub-subcategory-name {
    font-size: 14px;
    color: #495057;
    transition: color 0.3s ease;
    margin-bottom: 0;
    cursor: pointer;
}

.category-name:hover,
.subcategory-name:hover,
.sub-subcategory-name:hover {
    color: #007bff;
}

.category-count {
    background: transparent;
    color: #6c757d;
    font-size: 12px;
    padding: 0;
    border-radius: 0;
    min-width: auto;
    text-align: left;
    margin: 0;
    font-weight: 400;
}

/* Custom Checkbox Styling - Updated to match the image */
.custom-checkbox {
    position: relative;
    display: inline-block;
}

.custom-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

.checkbox-label {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #8b5a8c;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    margin: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.checkbox-label:hover {
    border-color: #9ca3af;
}

/* Checked state - matching the purple color from the image */
.custom-checkbox input[type="checkbox"]:checked+.checkbox-label {
    background-color: rgba(167, 101, 127, 1);
    border-color: rgba(167, 101, 127, 1);
}

/* Toggle Icon Styling */
.toggle-icon {
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.toggle-icon.active {
    transform: rotate(45deg);
}

.category-toggle:hover .toggle-icon {
    color: #495057;
}

/* RTL Support */
.text-right .category-info {
    flex-direction: row-reverse;
}

.text-right .category-count {
    margin-left: 8px;
    margin-right: 0;
}

/* Responsive Design */
@media (max-width: 768px) {

    .category-main-item,
    .subcategory-item,
    .sub-subcategory-item {
        padding: 10px 12px !important;
    }

    .category-name,
    .subcategory-name,
    .sub-subcategory-name {
        font-size: 13px;
    }

    .checkbox-label {
        width: 14px;
        height: 14px;
    }
}



/* Price Range Slider Container */
.price-range-container {
    background: white;
    border-radius: 8px;
}

.price-slider-container {
    position: relative;
    margin: 20px 0;
}

.price-slider-wrapper {
    position: relative;
    height: 5px;
    background: #e5e7eb;
    border-radius: 5px;
    margin: 30px 0;
}

/* Base slider styling */
.price-slider {
    position: absolute;
    width: 100%;
    height: 5px;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    pointer-events: all;
    cursor: pointer;
}

/* Remove default track styling */
.price-slider::-webkit-slider-track {
    background: transparent;
    -webkit-appearance: none;
}

.price-slider::-moz-range-track {
    background: transparent;
    border: none;
}

/* Webkit slider thumb */
.price-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #8b5a8c;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* Firefox slider thumb */
.price-slider::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #8b5a8c;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* Track styling */
.slider-track {
    position: absolute;
    width: 100%;
    height: 5px;
    background: #e5e7eb;
    border-radius: 5px;
    top: 0;
}

.slider-range {
    position: absolute;
    height: 5px;
    background: #8b5a8c;
    border-radius: 5px;
    top: 0;
}

/* Price Labels */
.price-labels {
    font-size: 14px;
    color: #6b7280;
    margin-top: 15px;
    position: relative;
}

.price-label {
    font-weight: 500;
    position: relative;
}

.price-label:first-child {
    text-align: left;
}

.price-label:last-child {
    text-align: right;
}

.price-label:nth-child(2) {
    color: #8b5a8c;
    font-weight: 600;
    position: relative;
}



.widget-title {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-range-container {
        padding: 15px;
    }

    .price-slider-wrapper {
        margin: 25px 5px;
    }

    .price-labels {
        font-size: 13px;
    }
}

/* RTL Support */
[dir="rtl"] .price-label:first-child {
    text-align: right;
}

[dir="rtl"] .price-label:last-child {
    text-align: left;
}

.cz-preview {
    flex-grow: 1;
    max-width: calc(100% - 120px);
}

.cz-thumblist-item.active img {
    border: 2px solid rgba(167, 101, 127, 1);
}

.cz-thumblist-item.active {
    border: none !important;
}

.cz-preview {
    background: none !important;
}

.cz-thumblist-item {
    background: none !important;
}

.badge {
    color: rgba(244, 114, 182, 1);
    background-color: rgba(255, 107, 107, 0.1);
    padding: 4px 12px 4px 12px;
    font-weight: 400;
    font-size: 13px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.badge_tow {
    color: rgba(22, 101, 52, 1);
    background-color: rgba(220, 252, 231, 1);
    padding: 4px 12px 4px 12px;
    font-weight: 400;
    font-size: 13px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}


.rating-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-radius: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 16px;
    height: 16px;
    position: relative;
    display: inline-block;
}

.star svg {
    width: 100%;
    height: 100%;
    fill: #e5e7eb;
    stroke: #e5e7eb;
    stroke-width: 1;
}

.star.filled svg {
    fill: #fbbf24;
    stroke: #fbbf24;
}

.star.half {
    overflow: hidden;
}

.star.half::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: white;
    z-index: 1;
}

.star.half svg {
    fill: #fbbf24;
    stroke: #fbbf24;
}

.rating-text {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    direction: rtl;
}

.rating-number {
    font-weight: 600;
}

.main_top_main {
    color: rgba(107, 114, 128, 1);
    font-size: 14px;
    font-weight: 400;
    padding: 4px 0;
}

.man-titel-dicsriptn p {
    color: rgba(55, 65, 81, 1);
    font-size: 14px;
    font-weight: 400;
    /* padding: 4px 0; */
}

.top_main_titel h3 {
    font-weight: 400;
    font-size: 14px;
    color: rgba(17, 24, 39, 1);
}

.color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: border 0.3s ease;
}

.color-circle.active {
    border: 3px solid rgba(229, 231, 235, 1);
}

.btn--primary_tow {
    padding: 12px 119px 12px 119px;
    border-radius: 8px;
    color: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background: linear-gradient(45deg, rgba(167, 101, 127, 1), rgba(217, 150, 177, 1)) !important;
}

.btn--primary_tow:hover {
    color: #fff;
    background: linear-gradient(45deg, rgba(167, 101, 127, 1), rgba(217, 150, 177, 1)) !important;
}


:root {
    --unselected-border-color: #e0e0e0;
    --selected-border-color: #d896b4;
    --selected-text-color: #d896b4;
    --unselected-text-color: #333;
    --selected-bg-color: rgba(216, 150, 180, 0.1);
}



.size-selector-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.size-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--unselected-text-color);
    margin-bottom: 5px;
}

.button-group {
    display: flex;
    gap: 10px;
}

.size-button {
    padding: 12px 25px;
    border: 1px solid var(--unselected-border-color);
    border-radius: 8px;
    background-color: #fff;
    color: var(--unselected-text-color);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.size-button:hover {
    border-color: var(--selected-border-color);
    color: var(--selected-text-color);
}

.size-button.selected {
    border-color: var(--selected-border-color);
    color: var(--selected-text-color);
    background-color: var(--selected-bg-color);
    box-shadow: 0 0 0 1px var(--selected-border-color) inset;
}


.btn-number {
    background-color: rgba(255, 255, 255, 1) !important;
    border: 1px solid #ddd !important;
    color: rgb(0, 0, 0) !important;
}

.__btn-grp .btn-secondary {
    padding: 13px 20px 13px 20px !important;
    border: 1px solid rgba(209, 213, 219, 1) !important;
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -ms-border-radius: 8px !important;
    -o-border-radius: 8px !important;
    color: #000 !important;
    background-color: rgb(255, 255, 255) !important;
}

.main_main_bac {
    background: linear-gradient(45deg, rgba(137, 163, 186, 0.4)-120%, rgba(54, 70, 85, 1)) !important;
    padding: 10px 25px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    margin-top: 30px;
}

.main_main_bac h4 {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

.main_main_bac .col-md-4 {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-tabs-container {
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
    padding: 20px;
}

.product-tabs-container .nav-tabs {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.product-tabs-container .nav-item {
    margin-left: 20px;
}

.product-tabs-container .nav-link {
    color: rgba(107, 114, 128, 1);
    font-weight: 600;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.product-tabs-container .nav-link.active {
    color: rgba(167, 101, 127, 1) !important;
}

.product-tabs-container .nav-link:hover:not(.active) {
    color: rgba(167, 101, 127, 1);
}

.product-tabs-container .nav-link.active {
    color: rgba(167, 101, 127, 1);
    border-bottom-color: rgba(167, 101, 127, 1);
}

.product-tabs-container .tab-content {
    padding-top: 10px;
    color: rgba(107, 114, 128, 1);
    line-height: 1.8;
    text-align: right;
}

.product-tabs-container .nav-item button {
    border: none !important;
}

.product-tabs-container .nav-tabs .nav-link.active::before {
    background-color: rgba(167, 101, 127, 1) !important;
}



#imageModal .modal-dialog {
    max-width: 100vw;
    margin: 2.5vh auto;
}

#imageModal .modal-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: relative;
}

.modal-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1050;
}

.modal-counter {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: white !important;
    transform: rotate(90deg);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.modal-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 80px 20px 80px;
}

.modal-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalImageZoom 0.4s ease-out;
}

@keyframes modalImageZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1049;
}

.modal-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.modal-nav-prev {
    right: 30px;
}

.modal-nav-next {
    left: 30px;
}

.modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal-nav:disabled:hover {
    transform: translateY(-50%) scale(1);
}

.modal-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zoom-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cz-preview-item:hover .zoom-indicator {
    opacity: 1;
}

@media (max-width: 768px) {
    .modal-controls {
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .modal-close {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .modal-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .modal-nav-prev {
        right: 15px;
    }

    .modal-nav-next {
        left: 15px;
    }

    .modal-info {
        bottom: 15px;
        padding: 8px 15px;
        font-size: 12px;
    }

    .modal-counter {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.modal.fade .modal-dialog {
    transition: transform 0.4s ease-out, opacity 0.3s ease-out;
    transform: scale(0.9);
}

.modal.show .modal-dialog {
    transform: scale(1);
}

.modal-backdrop.show {
    opacity: 0.8;
    background-color: #000;
}

.modal-open {
    overflow: hidden;
}
























.form-content {
    padding: 24px;
}

.field-group {
    margin-bottom: 20px;
}

.field-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    display: block;
    text-align: right;
    font-weight: 500;
}

.input {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(185, 185, 185, 1);
    border-radius: 8px;
    font-size: 16px;
    color: #666;
    background: #ffffff;
}

.input::placeholder {
    color: #ccc;
    font-size: 16px;
}

.input:focus {
    outline: none;
    border-color: rgba(167, 101, 127, 1);
    background: white;
}

/* Phone field styling */
.phone-wrapper {
    position: relative;
}

.phone-field {
    padding-right: 60px;
    direction: ltr;
    text-align: left;
}

.flag-area {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
}

.egypt-flag {
    width: 28px;
    height: 20px;
    background: linear-gradient(to bottom,
            #ce1126 0%, #ce1126 33.33%,
            #ffffff 33.33%, #ffffff 66.66%,
            #000000 66.66%, #000000 100%);
    border-radius: 2px;
    border: 1px solid #ddd;
}

.country-code {
    font-size: 16px;
    color: #666;
}

/* Checkbox section */
.checkbox-section {
    margin: 20px 0;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox {
    width: 20px;
    height: 20px;
    accent-color: #007AFF;
}

.checkbox-label {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Two column layout */
.two-columns {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.column {
    flex: 1;
}

/* Date field */
.date-input {
    color: #ccc;
}

/* Time section - single field with placeholder */
.time-field {
    background: #fafafa;
    color: #ccc;
    cursor: pointer;
}

/* Hidden time slots that will show when clicked */
.time-slots {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.time-slots.show {
    display: grid;
}

.time-slot {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px 8px;
    text-align: center;
    cursor: pointer;
    background: #fafafa;
    transition: all 0.2s;
}

.time-slot:hover {
    border-color: rgba(167, 101, 127, 1);
    background: rgba(167, 101, 127, 1);
    color: #fff;
}

.time-slot.selected {
    background: rgba(167, 101, 127, 1);
    border-color: rgba(167, 101, 127, 1);
    color: white;
}

.time-slot input {
    display: none;
}

.time-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.required {
    color: #ff3b30;
}

.btn_main_tow {
    background-color: rgba(167, 101, 127, 1);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn_main_tow:hover {
    background-color: rgba(167, 101, 127, 1);
    color: #fff;
}

.main_top_pament button {
    text-align: start;
}

.main_top_pament button h3 {
    font-size: 18px;
}




.section-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    text-align: right;
}

.payment-option {
    background: linear-gradient(135deg, #a67c94, #8b5a7a);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.payment-content {
    color: white;
    text-align: right;
}

.payment-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.payment-subtitle {
    font-size: 14px;
    opacity: 0.9;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.payment-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
}

/* Responsive design */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }

    .payment-option {
        padding: 16px;
    }

    .payment-title {
        font-size: 16px;
    }

    .payment-subtitle {
        font-size: 13px;
    }
}


/*  */


.logout-link {
    padding: 0 10px;
}


/*  */


/* Enhanced Profile Section */
.__customer-profile {
    position: relative;
}

/* Enhanced Card Container */
.__customer-profile .card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(175, 109, 135, 0.1);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(175, 109, 135, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.__customer-profile .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #AF6D87, #8B5A78, #AF6D87);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.__customer-profile .card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(175, 109, 135, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Enhanced Card Header */
.__customer-profile .card-header {
    background: transparent;
    border: none;
    /* padding: 2.5rem; */
    position: relative;
}

/* Enhanced Photo Header */
.__customer-profile .photoHeader {
    margin-bottom: 2rem;
}

.__customer-profile .photoHeader .d-flex {
    background: linear-gradient(135deg, rgba(175, 109, 135, 0.05), rgba(175, 109, 135, 0.1));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(175, 109, 135, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.photoHeader .d-flex::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.__customer-profile .photoHeader .d-flex:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(175, 109, 135, 0.2);
}

/* Enhanced Profile Image */
.__customer-profile .__inline-48 {
    width: 80px !important;
    height: 80px !important;
    border: 4px solid rgba(175, 109, 135, 0.2) !important;
    box-shadow:
        0 8px 25px rgba(175, 109, 135, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.__customer-profile .__inline-48:hover {
    transform: scale(1.05) rotate(2deg);
    border-color: rgba(175, 109, 135, 0.4) !important;
    box-shadow: 0 12px 35px rgba(175, 109, 135, 0.25);
}

/* Enhanced Profile Info */
.__customer-profile .font-name {
    color: #2d3748;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.__customer-profile .spandHeadO {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.__customer-profile .spandHeadO::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #AF6D87, #8B5A78);
    transition: width 0.3s ease;
}

.__customer-profile .spandHeadO:hover::after {
    width: 100%;
}

.__customer-profile .spandHeadO:hover {
    transform: translateY(-1px);
}

.__customer-profile .__text-10px {
    font-size: 0.75rem;
    font-style: italic;
}

/* Enhanced Form Section */
.__customer-profile .font-nameA {
    color: #2d3748;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.__customer-profile .font-nameA::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #AF6D87, #8B5A78);
    border-radius: 2px;
}

/* Enhanced Form Groups */
.__customer-profile .form-group {
    margin-bottom: 2rem !important;
    position: relative;
}

.__customer-profile .form-group label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: block;
    transition: all 0.3s ease;
}

/* Enhanced Form Controls */
.__customer-profile .form-control {
    border: 2px solid rgba(175, 109, 135, 0.15) !important;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    position: relative;
}

.__customer-profile .form-control:focus {
    border-color: #AF6D87;
    box-shadow:
        0 0 0 3px rgba(175, 109, 135, 0.15),
        0 4px 15px rgba(175, 109, 135, 0.1);
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.__customer-profile .form-control:hover:not(:focus) {
    border-color: rgba(175, 109, 135, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(175, 109, 135, 0.08);
}

.__customer-profile .form-control:disabled {
    background: rgba(175, 109, 135, 0.05);
    border-color: rgba(175, 109, 135, 0.1);
    color: #a0aec0;
}

/* Enhanced Password Toggle */
.__customer-profile .password-toggle {
    position: relative;
}

.__customer-profile .password-toggle-btn {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    background: rgba(175, 109, 135, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.__customer-profile .password-toggle-btn:hover {
    background: rgba(175, 109, 135, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.__customer-profile .password-toggle-indicator {
    color: #AF6D87;
    font-size: 1.1rem;
}

/* Enhanced Buttons */
.__customer-profile .__profile-btns {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(175, 109, 135, 0.15);
}

.__customer-profile .btn {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: capitalize;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.__customer-profile .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.__customer-profile .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Primary Button */
.__customer-profile .btn--primary {
    background: linear-gradient(135deg, #AF6D87, #8B5A78);
    color: white;
    box-shadow: 0 4px 15px rgba(175, 109, 135, 0.3);
    position: relative;
}

.__customer-profile .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(175, 109, 135, 0.4);
    color: white;
}

.__customer-profile .btn--primary:active {
    transform: translateY(0);
}

/* Danger Button */
.__customer-profile .btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    .__customer-profile transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
    color: white;
    background: linear-gradient(135deg, #c82333, #b21e2f);
}

.__customer-profile .btn-danger:active {
    transform: translateY(0);
}

/* Enhanced Gap */
.__customer-profile .__gap-15 {
    gap: 1.5rem;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .__customer-profile .card-header {
        padding: 1.5rem;
    }

    .__customer-profile .photoHeader .d-flex {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .__customer-profile .__inline-48 {
        width: 70px !important;
        height: 70px !important;
    }

    .__customer-profile .font-name {
        font-size: 1.3rem;
    }

    .__customer-profile .font-nameA {
        font-size: 1.5rem;
    }

    .__customer-profile .form-group {
        margin-bottom: 1.5rem !important;
    }

    .__customer-profile .__profile-btns {
        flex-direction: column;
        align-items: stretch;
    }

    /* .btn {
                            width: 100%;
                            margin-bottom: 1rem;
                        } */
}

@media (max-width: 576px) {
    .__customer-profile .card-header {
        padding: 1rem;
    }

    .__customer-profile .photoHeader .d-flex {
        padding: 1rem;
    }

    .__customer-profile .__inline-48 {
        width: 60px !important;
        height: 60px !important;
    }

    .__customer-profile .font-name {
        font-size: 1.2rem;
    }

    .__customer-profile .font-nameA {
        font-size: 1.3rem;
    }
}

/* Enhanced Animation for Form Elements */
.__customer-profile .form-group {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.__customer-profile .form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.__customer-profile .form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.__customer-profile .form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.__customer-profile .form-group:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Focus States */
.__customer-profile .form-control:focus+label,
.form-group:focus-within label {
    color: #AF6D87;
    transform: translateY(-2px);
}

/* Enhanced Message Styling */
.__customer-profile #message {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

/* Loading States */
.__customer-profile .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Accessibility Enhancements */
.__customer-profile .form-control:focus-visible {
    outline: 3px solid rgba(175, 109, 135, 0.5);
    outline-offset: 2px;
}

.__customer-profile .btn:focus-visible {
    outline: 3px solid rgba(175, 109, 135, 0.5);
    outline-offset: 2px;
}

/* Enhanced Error States */
.__customer-profile .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.__customer-profile .form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    .__customer-profile .card,
    .form-control,
    .btn,
    .__inline-48,
    .spandHeadO {
        transition: none;
        animation: none;
    }

    .__customer-profile .form-group {
        animation: none;
        opacity: 1;
        transform: none;
    }
}


.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loader p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #e5e5e5;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #a45c72;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    margin-top: -6px;
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #a45c72;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
