/* Reset some basic elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

a {
    color: var(--bs-blue);
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "Sofia Sans", sans-serif;
    background: hsl(0 0% 5%);
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden !important;
    flex-direction: column;
    min-height: 100vh;
}

.main_content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

:root {
    --primary: hsl(0 72% 45%);
    --secondary: hsl(0 0% 5%);
}


/* Example button style */
.btn {
    padding: 12px 16px;
}

.form-label {
    color: #ffffff;
    font-size: 15px;
}

.primary-btn {
    padding: 12px 25px;
    letter-spacing: 0.15em;
    border-width: 2px;
    transition: all 0.3s;
    border: 1px solid;
    border-radius: 0px;
    color: #fff;
    border-color: hsl(0deg 0% 95% / 40%);
    text-transform: uppercase;
    /* background: transparent !important; */
    font-size: 14px;
    font-weight: 500;
}

.primary-btn:hover {
    background: #ffffff !important;
    opacity: 1 !important;
    color: #000 !important;
}

.form-control {
    font-size: 14px;
    padding: 10px 10px;
    font-weight: 400;
    box-shadow: none !important;
    outline: none !important;
    height: auto;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
}

.form-control:focus {
    border-color: var(--primary);
}

.form-control::placeholder {
    color: #c8c8c8;
}

select+.select2-container--bootstrap-5 {
    width: 100% !important;
}

/* ========================= Header ============================== */
.navbar-brand img {
    max-width: 190px;
    width: 100%;
    max-height: 70px;
}

.slogan {
    font-size: 12px;
}

.header_section {
    width: 100%;
    /* background: hsl(0 0% 5%); */
    z-index: 100;
    transition: 0.3s;
    top: 0;
    left: 0;
    right: 0;
}

.header_section .nav-link {
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 10px 15px !important;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: 0.15s;
}

.header_section.scrolled .nav-link {
    color: #333;
}

.header_section .nav-link:hover,
.header_section .nav-link:focus {
    color: var(--primary);
}


.header_section .navbar-toggler {
    border: none;
    color: #fff;
}

.header_section .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}


.header_section .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 12px;
    width: 160px;
}

.header_section .dropdown-item:hover {
    background-color: var(--primary);
    color: #fff;
}

.header_section .dropdown-item {
    font-size: 14px;
    border-radius: 30px;
    padding: 6px 20px;
}

/* ========================= Banner ============================== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 54%);
}

/* Label */
.hero-label .accent-line {
    width: 40px;
    height: 2px;
    background-color: #ff6b6b;
}

.hero-heading {
    line-height: 1;
    color: #fff;
    font-size: 6rem;
}

.hero-quote .quote-text {
    font-size: 20px;
    margin-right: 0.5rem;
    display: inline-block;
    color: #e4e4e4 !important;
    max-width: 500px;
    line-height: normal;
}

.quote-mark {
    color: hsl(0 72% 45%);
    font-size: 2.25rem;
    font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
    font-style: italic;
}


/* Button */
.hero-btn {
    padding: 12px 31px;
    letter-spacing: 0.15em;
    border-width: 2px;
    transition: all 0.3s;
    border: 1px solid;
    border-radius: 4px;
    border-color: hsl(0deg 0% 95% / 40%);
    font-size: 16px;
}

.hero-btn:hover {
    background: #ffffff !important;
    color: hsl(0 0% 5%);
}

.section-label {
    font-size: .75rem;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: hsl(0deg 0% 83.46%);
}

/* ========================= about ============================== */

.sec-gap {
    padding: 8rem 0px;
}

.about_section {
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.about_section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 36%);
}

.about-image-wrapper {
    opacity: 1;
    transform: none;
}

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

.section-number {
    font-weight: 500;
    color: #6c757d;
}

.accent-line {
    width: 40px;
    height: 2px;
    background-color: #fff;
}

.section-subtitle {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: #fff;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.about-text p {
    color: #e5e7eb;
    font-size: 18px;
    margin-bottom: 1rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: transparent;
    padding: 0.75rem 2rem;
    transition: all 0.3s;
}

.about-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: #000;
}


.icon-wrapper {
    width: 80px;
    height: 80px;
    transition: all 0.3s ease;
    border-color: #ffffff !important;
    background: #ddd;
}

.service-item:hover .icon-wrapper {
    background-color: rgb(197 32 32 / 10%);
    border-color: var(--primary) !important;
}

.service_card h3 {
    font-size: 20px;
    color: #fff;
    font-family: sans-serif;
}

.service_card p {
    font-size: 15px;
    color: #c7c7c7 !important;
}


.service_card svg {
    color: var(--primary) !important;
}

.services-section .primary-btn {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
}

.services-section {
    background: hsl(0 0% 8%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.services-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 69%);
}

.pricing-section {
    background: hsl(0 0% 8%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 120px 0px;
}

.pricing-section .accent-line {
    background-color: hsl(0deg 0% 100%);
}

.pricing-section.bg-card:before {
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000078;
}

.service-item {
    transition: all 0.3s ease;
}

.service-item:hover .service-title {
    color: var(--primary);
}


.team_card h4 {
    color: var(--primary);
    font-size: 16px;
}

.team_card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.team_card p {
    margin: 0;
    font-size: 16px;
    color: #999;
}

.team_card img {
    filter: grayscale(1);
}

.team_card:hover img {
    background-color: hsl(0deg 72% 45% / 20%);
    filter: grayscale(0);
}

.team-sec .section-subtitle {
    color: var(--primary);
}

.team-sec .accent-line {
    background-color: var(--primary);
}

.shop_sec {
    padding: 6rem 0px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.shop_sec:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 69%);
}

.product_card {
    background: #141414;
    padding: 15px;
}

.product_card:hover .primary-btn {
    background: #fff !important;
    color: #000 !important;
}

.product_card h4 a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.product_card:hover h4 a {
    color: var(--primary);
}

.product_card img {
    transition: all 0.3s ease;
}

.product_card:hover img {
    transform: scale(1.04);
}

.product_card .price {
    font-size: 21px;
    color: #fff;
    font-weight: 500;
}

.product_card .price del {
    color: #ababab;
}


.testimonial-sec {
    background: hsl(0 0% 8%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.testimonial-sec:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 69%);
}

.footer_links h5 {
    color: #fff;
    font-size: 18px;
}

.footer_links li a {
    font-size: 15px;
    color: #ddd;
}

.footer_links li a:hover {
    color: var(--primary);
}

.contact_info svg {
    stroke: var(--primary);
    width: 18px;
}

.social_media li {
    display: inline-block;
    margin-right: 10px;
}

.copyright p {
    color: #ddd;
    padding-top: 21px;
}

.copyright {
    border-top: 1px solid #333;
    margin-top: 30px;
}

.testimonial_bg {
    background: hsl(0 0% 8%);
    border: 1px solid #555;
    border-radius: 12px;
}

.product_details {
    background: #141414;
    padding: 20px;
    border-radius: 6px;
}

.product_nav {
    background: #141414;
    padding: 12px;
    border: 1px solid #313131;
    border-radius: 1px;
    margin-bottom: 40px;
}

.product_nav .nav-link {
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    width: 100%;
}

.review-card {
    background: #141414;
    padding: 20px;
    border: 1px solid #313131;
    border-radius: 6px;
    margin-bottom: 20px;
}

.review-card {
    background: #141414;
    padding: 20px;
    border: 1px solid #313131;
    border-radius: 6px;
    margin-bottom: 20px;
}

.review-card h5 {
    color: #ddd;
    font-size: 18px;
}

.star-rating i {
    font-size: 12px;
}

.review-date {
    font-size: 14px;
    color: #CCC;
}

.review-card p {
    color: #DDD;
}

.review-card img {
    border: 1px solid #444;
    width: 50px;
    height: 50px;
    border-radius: 50px !important;
}

.shoppingModal .modal-content .modal-body {
    padding: 25px 15px;
}

.shoppingModal .modal-content {
    border-radius: 0;
    border: none;
    background: #000000;
    height: 100%;
}

.shoppingModal .modal-header {
    border-bottom: 1px solid #3b3b3b;
}

.shoppingModal .modal-footer {
    border-top: 1px solid #363636;
    color: #fff;
}

.shoppingModal.modal.right.fade.show .modal-dialog {
    right: 0;
}

.shoppingModal .modal-footer {
    border-top: 1px solid #363636;
    color: #fff;
}

.shoppingModal .products-cart {
    border-bottom: 1px solid #333;
    padding: 10px 0px;
    font-size: 13px;
    color: #fff;
}

.shoppingModal .products-cart h3 a {
    color: #fff;
    font-size: 19px;
}

.shoppingModal.modal.right.fade .modal-dialog {
    right: -420px;
    transition: 0.3s linear, right 0.3s ease-out;
}

.shoppingModal.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    max-width: 350px;
    width: 100%;
    height: 100%;
    transform: translate3d(0%, 0, 0);
}

.shoppingModal .close {
    color: #000000;
    transition: 0.2s;
    position: absolute;
    top: 11px;
    z-index: 1;
    background-color: transparent;
    border: none;
    right: 10px;
}

.shoppingModal .title {
    font-size: 16px;
    font-weight: 600;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}










/* ========================= Banner ============================== */

.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0px;
}

.hero-section:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #00000054;
}

.hero-section .content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 6rem;
    font-family: 'Playfair', sans-serif;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.sunday_tag {
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #ddd;
}

.hero-tagline {
    font-size: 1.5rem;
    line-height: 2rem;
    color: hsl(40deg 33% 97% / 90%);
}

.btn-primary {
    background: var(--primary) !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    border: none;
}

.btn-primary:hover {
    opacity: .9;
}

/* =========================  ============================== */

.experience-sec {
    background: #ffffff;
    /* background: #faf8f4; */
}

/* Headings */
.sec_title {
    font-family: 'Playfair', serif;
    font-size: 3rem;
}

.experience-sec .menu-title {
    font-family: 'Playfair', serif;
    font-size: 1.75rem;
}

/* Accent */
.sec_badge {
    color: var(--primary);
}

.experience-sec .letter-spacing {
    letter-spacing: 0.2em;
    font-size: 0.85rem;
}

/* Features */
.experience-sec .feature-item {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.experience-sec .feature-item:hover {
    transform: translateY(-4px);
}

.experience-sec .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #efe9df;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
    font-size: 1.4rem;
    transition: background 0.3s ease;
}

.experience-sec .feature-item:hover .feature-icon {
    background: rgba(197, 102, 61, 0.15);
}

.experience-sec .feature-title {
    font-family: 'Playfair', serif;
    font-size: 1.3rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #000;
}

.experience-sec .feature-text {
    font-size: .875rem;
    line-height: 1.25rem;
}

.experience-sec .menu-preview {
    background: #f7f5f1;
}

.experience-sec .menu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
}

.experience-sec .menu-item::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #c5663d;
    border-radius: 50%;
    display: inline-block;
}

/* ========================= Cityes ============================== */



.section_heading h4 {
    color: #222222;
    line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 38px;
    font-weight: 500;
}



.city_card {
    border: 1px solid var(--gold);
    padding: 20px 10px;
    border-radius: 4px;
    background: #ffd70029;
}

/* 
.city_name {
    font-size: 20px;
    color: hsl(0 0% 5%);
    background: var(--gold);
    padding: 12px 0px;
}

.city_services li a {
    font-size: 16px;
    color: #ffffff;
    display: inline-block;
    padding: 5px 0px;
}

.extra-service {
    color: #ffffff;
}

.city_services li a:hover,
.extra-service {
    color: #ddd;
} */

.city_wrap h3 {
    font-size: 22px;
    color: #212112;
}

.city_wrap a {
    color: #555;
    font-weight: 400;
    font-size: 14px;
}

.city_wrap:hover a {
    text-decoration: underline !important;
}

.cities_section .swiper-button-next,
.cities_section .swiper-button-prev {
    width: 40px;
    background: #fff;
    height: 40px;
    border-radius: 50px;
    opacity: 0;
}

.cities_section .swiper-button-next:after,
.cities_section .swiper-button-prev:after {
    font-size: 18px !important;
    color: #000;
}

.cities_section .city-swiper:hover .swiper-button-next,
.cities_section .city-swiper:hover .swiper-button-prev {
    opacity: 1;
}


.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0 !important;
}

/* ========================= Servie ============================== */

/* Service Item Wrapper */
.service_item {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: all .3s ease;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    position: relative;
}

/* Card Hover Effect */
.service_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.verify_badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #28a745;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.verify_badge i {
    width: 14px;
    height: 14px;
}

/* Image Wrapper */
.service_img {
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
}

/* Image Hover Zoom */
.service_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_img {
    text-align: center !important;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #28488917;
    height: 220px;
    overflow: hidden;
}

.product_img img {
    width: auto !important;
    max-height: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

/* Favorite Button */
.favorite_item {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}

.favorite_service {
    background: rgba(255, 255, 255, 0.82);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.favorite_service:hover {
    background: #fff;
    transform: scale(1.1);
}

/* Favorite Active State */
.favorite_service.active i {
    stroke: red;
    fill: red;
}

.favorite_service.active svg,
.favorite_service.active svg path {
    stroke: red !important;
    fill: red !important;
    color: red !important;
}

/* Service Content */
.service_content {
    padding: 18px;
}

.service_content h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 18px !important;
}

.service_content p {
    font-size: 14px;
    color: #555;
}

.service_content i[data-lucide="star"] {
    stroke: #ff9f1a;
}

.service_content i[data-lucide="map-pin"] {
    stroke: #444;
}

.service_item {
    display: flex;
    flex-direction: column;
}

.service_content {
    flex: 1;
}

/* ========================= Pricing ============================== */

.pricing_sec .single-pricing {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
    padding: 30px 20px;
    border: 1px solid #00000012;
    transition: all 0.3s ease-out 0s;
    position: relative;
}

.single-pricing h4 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 25px;
    letter-spacing: .35px;
}

.single-pricing h3 {
    margin-bottom: 25px;
    color: var(--primary);
    border-bottom: 1px solid #EEE;
    padding-bottom: 20px;
    font-size: 20px;
}

.single-pricing ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 34px;
    margin-bottom: 12px;
}

.single-pricing ul li svg {
    color: var(--secondary);
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border-radius: 50px;
    flex-shrink: 0;
}


.pricing_sec .single-pricing.active {
    border: 2px solid var(--gold) !important;
}

/* ========================= Pricing ============================== */

.how_it_work {
    background-color: var(--cream);
}

.how_it_work .step-card .step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    color: #fff;
    background-color: var(--primary);
    font-size: 18px;
    font-weight: 400;
}

.how_it_work .arch-line {
    position: absolute;
    top: 15px;
    width: 150px;
    right: 0;
    left: calc(100% + 24px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.pricing_lists {
    max-width: 700px;
    margin: auto;
}

.pricing_lists li {
    font-size: 16px;
    color: #fff;
}


.text_primary {
    color: var(--primary);
}

.bg_primary {
    background-color: var(--primary);
}

.footer_sec {
    background: hsl(0 0% 8%);
    border-color: hsl(0 0% 18%);
}

.breadcrumb_sec {
    display: flex;
    align-items: center;
    background: #141414;
    position: relative;
    text-align: center;
    padding: 32px 0px !important;
}

.breadcrumb_sec:before {
    position: absolute;
    content: "";
    background: #000000ad;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.breadcrumb_sec .hero-heading {
    font-size: 2rem;
}

.contact_form {
    background: hsl(0deg 0% 0%);
    border-radius: 12px;
    border: 1px solid #222;
}

.form-control {
    background-color: #0d0d0d;
    border: 1px solid #252424;
}

.form-control:focus,
.form-control,
select {
    color: #fff;
    background-color: #0d0d0d !important;
}

.form-label {
    color: #ffffff;
    font-size: 14px;
}

.form-control::placeholder {
    color: #777474dd;
}

.contact_form .primary-btn {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.contact_list h4 {
    color: #CCC;
    font-size: 22px;
    margin: 0;
}


.icon-circle {
    border: 1px solid #690606;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #ff00000d;
}

.filter_form {
    background: #141414;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 8px;
}

.secondary-btn {
    background: hsl(0deg 0% 5.1%);
    color: #fff;
    padding: 8px 20px;
}

.secondary-btn:hover {
    background: var(--primary) !important;
    color: #fff;
}

.btn-secondary {
    background: var(--primary);
    border: none;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.product_card .rating .fa-regular {
    color: #5b5b5b;
}

.products-size-wrapper .form-check-label {
    border: 1px solid #333333;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    text-align: center;
    color: #ddd;
    background: #141414;
}

.products-size-wrapper .form-check-input {
    margin: 0;
}

.products-size-wrapper .form-check-input:checked~.form-check-label {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
}

.products-size-wrapper .size .form-check {
    display: inline-block;
    margin: 2px;
    padding: 0;
}

.products-size-wrapper p {
    font-size: 15px;
}

.color_code {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    display: block;
    border-radius: 50px;
    margin-right: 10px;
}

.qty_option {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    position: relative;
    border: 1px solid #515151;
    border-radius: 6px;
    overflow: hidden;
}

.qty_option input {
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    pointer-events: none;
}

.input-group-quantity {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #2a2a2a;
}

.cart-quantity {
    width: 38px;
    height: 50%;
    border: none;
    background: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.cart-quantity:hover {
    background: #222222;
}

.cart-quantity svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    stroke: #b6b6b6;
}

.qty-plus {
    border-bottom: 1px solid #e2e2e2;
}


.review_wrap .bg-warning {
    background: #ffc107e0 !important;
    color: #ffc107 !important;
}




.service_booking_modal .accordion-button {
    background: #111111 !important;
    color: #fff;
    padding: 16px 20px;
    box-shadow: none !important;
    outline: none !important;
}

.service_booking_modal .accordion-item {
    border-bottom: 1px solid #2b2b2b;
}

.custom_radio .form-check-label {
    display: block;
    border: 1px solid #2d2d2d;
    padding: 10px 15px;
    border-radius: 6px;
    color: #fff;
    background: #000000;
    cursor: pointer;
}

.service_booking_modal .accordion-body {
    background: #000000;
}

.custom_radio .form-check-input:checked~.form-check-label {
    border-color: #0d6efd75;
    background: #0d6efd3b;
}

.service_booking_modal .accordion-button::after {
    background-image: none;
    content: "\f054";
    color: #fff;
    font-family: 'Font Awesome 6 Free';
    font-size: 17px;
    font-weight: 900;
    transform: rotate(0deg) !important;
}

.service_booking_modal .accordion-button:not(.collapsed)::after {
    content: "\f078";
}

.service_booking_modal .modal-header {
    background: #000000;
    border-bottom: 1px solid #222;
    border-radius: 0px !important;
}

.service_booking_modal .modal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
}

.service_booking_modal .modal-dialog-scrollable .modal-content {
    background: #000;
}

.service_booking_modal.modal.right .modal-dialog {
    max-width: 500px !important;
}

.service_booking_modal.modal.right.fade.show .modal-dialog {
    left: 0 !important;
    right: auto;
}

.service_booking_modal.modal.right.fade .modal-dialog {
    left: -420px !important;
    right: auto;
    transition: 0.3s linear, right 0.3s ease-out;
}

.stylist_img {
    width: 35px;
    height: 35px;
    border: 1px solid #2c2c2c;
    border-radius: 50px;
    background: #000;
    color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.cart_count {
    color: #000000;
    background: #fff;
    width: 20px;
    border-radius: 50px;
    height: 20px;
    top: -7px;
    right: -15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border: none !important;
}









/* ========================= Login ============================== */



.login-section .primary-btn {
    font-size: 16px;
    font-weight: 400;
    padding: 12px 10px;
}

.login-section .input-group-text {
    border: 1px solid #2c2b2b !important;
    background: #0d0d0d !important;
}

.login_form {
    max-width: 28rem;
    margin: auto;
    background: #000000;
}

.login_form h5 {
    font-size: 18px;
    font-weight: 600;
    color: #212121;
}

.login_form p {
    font-size: 15px;
}

.contain_info span {
    font-size: 15px;
    font-weight: 600;
    color: #212121;
}

.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) #ececec !important;
}

/* ========================= Footer ============================== */

.footer-area {
    background: hsl(0 0% 5%);
}

.footer-bottom-area p {
    color: #DDD;
    font-size: 15px;
}

.footer-bottom-area {
    border-top: 1px solid #252525;
}

.footer-area .link-list li {
    display: inline-block;
}

.footer-area .link-list li a {
    color: #CCC;
    font-size: 15px;
    padding: 5px 10px;
    display: inline-block;
}

.footer-area .link-list li:first-child a {
    padding-left: 0;
}

.footer-area .link-list li a:hover {
    color: #818181;
}

.social_media ul li {
    display: inline-block;
}

.social_media ul li a {
    color: #CCC;
    font-size: 15px;
    padding: 0px 10px;
    transition: all 0.3s ease;
}

.social_media ul li :first-child a {
    padding-left: 0;
}

.social_media ul li a:hover svg {
    stroke: #fff !important;
}

.site_name {
    font-size: 2.2rem;
    line-height: 2.25rem;
    color: hsl(40 33% 97%);
    font-family: 'Playfair', sans-serif;
}

.text-cream {
    font-size: .875rem;
    line-height: 1.25rem;
    color: hsl(40deg 33% 97% / 60%);
}

/* ========================= Contact Page ============================== */

.single-contact-info-box {
    text-align: center;
    padding: 30px 20px;
}

.single-contact-info-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.single-contact-info-box svg {
    stroke: var(--primary);
}

.single-contact-info-box p a {
    color: #696969;
    display: inline-block;
}

.contact-form h1 {
    font-size: 24px;
    font-weight: 500;
}

.page-title-area {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eeeeee;
}

.page-title-content {
    text-transform: uppercase;
}

.page-title-content ul li a {
    display: inline-block;
    color: var(--secondary);
    font-size: 15px;
}

.page-title-content ul li a::before {
    width: 1px;
    height: 14px;
    content: "";
    position: absolute;
    right: -13px;
    top: 6.2px;
    background-color: #404040;
    transform: rotate(10deg);
}

.page-title-content ul li {
    display: inline-block;
    position: relative;
    color: var(--primary);
    font-weight: 400;
    font-size: 15px;
    margin-left: 10px;
    margin-right: 10px;
}

#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 10px;
    z-index: 101;
    border: none;
    color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background: var(--secondary);
    justify-content: center;
    align-items: center;
    border: 1px solid #222;
}

#scrollToTopBtn svg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* select 2 */
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
    color: #fff;
    background-color: var(--primary) !important;
}

.select2-container--bootstrap-5 .select2-selection--single {
    border-radius: 0;
    height: 45px;
    display: flex;
    align-items: center;
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    outline: none !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field {
    box-shadow: none !important;
}

/* dashbaord */
.user_sidebar {
    border: 1px solid #242424;
    background: #000;
    border-radius: 12px;
}

.user_sidebar .nav-link {
    font-size: 16px;
    color: #ffffff;
    background: #0d0d0d40;
    padding: 12px 10px;
    border-radius: 9px;
    display: flex !important;
    border: 1px solid #44444438;
}

.user_sidebar .nav-link.active,
.user_sidebar .nav-link:hover {
    background: var(--primary);
    box-shadow: rgb(0 0 0 / 9%) 0px 1px 4px;
}

.user_sidebar .accordion-toggle-btn {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s, box-shadow 0.2s;
}

.card_dark {
    background: #000;
    border: 1px solid #333;
    border-radius: 7px;
}

.section_heading {
    background: #000000;
    color: #fff;
    padding: 14px 20px !important;
    border-radius: 10px;
}

.section_heading h4 {
    font-size: 18px;
    font-weight: 600;
}

.card-header {
    padding: 10px 15px;
    border-bottom: 1px solid #EEE;
    background: hsl(0 0% 5%);
    color: #fff;
}

.card-header .card-title {
    font-size: 16px;
    color: #ffffff;
    min-height: 40px;
    display: flex;
    align-items: center;
}

th,
td {
    font-size: 14px;
    font-weight: 400;
    padding: 16px 12px !important;
    text-align: start;
}
td {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #2e2e2e !important;
}

th {
    background-color: #000000 !important;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #454545;
    box-shadow: none !important;
    padding: 12px 12px !important;
    white-space: nowrap;
    color: #fff !important;
}

.page-link {
    padding: 4px 13px;
    font-size: 15px;
    box-shadow: none !important;
}

.active>.page-link,
.page-link.active {
    background: var(--secondary);
    border-color: var(--secondary);
}

.badge {
    padding: 5px 9px;
    font-size: 11px;
    min-width: 18px;
    border: 1px solid;
    border-radius: 16px;
}

.alert-warning {
    word-wrap: break-word;
}



.read_more {
    text-decoration: underline !important;
    transition: all 0.3s ease;
    color: #212121;
}

.read_more:hover {
    color: var(--gold);
}

.service_list:hover {
    transition: all 0.4s ease;
}

.service_list .badge.bg-success {
    background-color: #28a745 !important;
    font-weight: 600;
    border-radius: 0px;
    position: absolute;
    top: 16px;
    right: -42px;
    padding: 8px 41px;
    font-size: 11px !important;
    transform: rotate(45deg);
    z-index: 1;
    color: #fff !important;
}

.service_list:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.service_list .price {
    font-size: 16px;
    font-weight: 500;
}

.service_list .time {
    font-size: 12px;
    color: #666;
}

.service_list .primary-btn {
    font-size: 13px !important;
}

.service_list .review p {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 18px;
    line-height: 20px;

}

.service_list .review span {
    font-size: 11px;
    display: block;
    text-align: center;
    color: #fff;
    line-height: 20px;
}

.service_list .review {
    position: absolute;
    top: 25px;
    left: 25px;
    padding: 10px 14px;
    background: hsl(0 0% 5%);
    border-radius: 6px;
    z-index: 1;
}


.service_items h4 a {
    font-size: 22px;
    color: var(--primary);
}

.barber_serivce_item {
    border-bottom: 1px solid #f5f5f5;
    padding: 5px 0px;
    margin-bottom: 6px;
}

.pagination_nav .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px !important;
    margin: 0px 5px;
    border: 1px solid #EEE;
    color: #212121;
    box-shadow: none !important;
    font-weight: 400;
    padding: 0;
}

.pagination_nav .active>.page-link,
.pagination_nav .page-link.active {
    background: var(--primary);
    color: #fff !important;
    border-color: var(--primary);
}

.pagination_nav .page-link svg {
    width: 16px;
}

/* service details */

.barber-title {
    font-size: 22px;
    color: #212121;
    margin: 0;
    margin-bottom: 5px;
}

.barber-address {
    font-size: 15px;
    color: #777;
}

.rating-stars {
    font-size: 11px;
}

.details_sidebar .section-title {
    font-size: 18px;
    font-weight: 500;
    color: #212121;
}

.berber_wrap {
    border: 1px solid #efefef;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.social-link i {
    font-size: 20px;
    color: #333;
}

.productThumbs img {
    width: 100%;
    border: 2px solid transparent;
    padding: 3px;
    border-radius: 12px !important;
}

.productThumbs .swiper-slide-thumb-active img {
    border-color: #919191;
}

div#map {
    z-index: 1;
}

.blog_card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog_card img {
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.blog_card:hover img {
    transform: scale(1.05);
}

.blog_card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.blog-details h2 {
    font-size: 23px;
    font-weight: 500;
    padding: 0;
    margin: 30px 0;
}

.blog_card .card-title {
    font-size: 18px;
    line-height: normal;
}

.blog_card .card-text {
    font-size: 15px;
}

.blog-details .meta-top ul li+li {
    padding-left: 20px;
}

.blog-details .meta-top a {
    font-size: 14px;
    display: inline-block;
    line-height: 1;
    color: var(--primary);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .content {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.blog-details .content h3 {
    font-size: 20px;
    font-weight: 500;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.recent-posts-widget .post-item h4 a {
    transition: 0.3s;
}

.recent-posts-widget .post-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
    color: #444444;
    transition: 0.3s;
}

.recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts-widget .post-item h4:hover a {
    color: var(--gold);
}

.checkout-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.checkout-card h4 {
    font-size: 18px;
    font-weight: 500;
    color: #111;
}

.payment-option {
    border: 2px solid #e5e7eb;
    padding: 18px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s ease;
}

.payment-option:hover {
    border-color: #0d6efd;
    background: #f0f7ff;
}

.checkout-card .form-check-input:checked[type=radio]~label {
    border-color: #0d6efd;
    background: #f0f7ff;
}

.checkout-card .form-check-input:checked[type=radio] {
    box-shadow: none !important;
}

.payment_methods .form-check-input:checked[type=radio]~label {
    border-color: #0d6efd;
    background: #f0f7ff;
}

.payment_methods .form-check-input:checked[type=radio] {
    box-shadow: none !important;
}

.payment-option input {
    width: 18px;
    height: 18px;
}

.payment-option.active {
    border-color: #0d6efd;
    background-color: #eef5ff;
}

/* Enhanced Payment Gateway Styles */
.payment-header {
    margin-bottom: 16px;
}

.payment-gateway-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-gateway-card {
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.payment-gateway-card:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.payment-gateway-card.active {
    border-color: #2563eb;
    background: linear-gradient(to right, #f0f7ff, #eef5ff);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.payment-gateway-label {
    margin: 0;
    padding: 0;
    cursor: pointer;
    width: 100%;
}

.payment-gateway-content {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 16px;
}

.payment-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.payment-icon img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

.payment-info {
    flex-grow: 1;
}

.payment-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #111827;
}

.payment-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.payment-indicator {
    flex-shrink: 0;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.payment-gateway-card.active .radio-circle {
    border-color: #2563eb;
}

.radio-inner-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.2s ease;
}

.payment-gateway-card.active .radio-inner-circle {
    background: #2563eb;
}

/* Selection animation */
.payment-gateway-card {
    position: relative;
    overflow: hidden;
}

.payment-gateway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-20deg);
    transition: width 0.6s ease;
}

.payment-gateway-card.active::before {
    width: 100%;
}

.barber-card {
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center !important;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 120px;
    overflow: hidden;
}

.barber-card img {
    border-radius: 12px;
    width: auto !important;
    max-height: 120px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.heading_title {
    font-size: 20px;
    color: #212121;
}

.barber-card:hover img {
    transform: scale(1.07);
}

.barber-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 10px;
    color: #333;
}

.barber-card-wrapper {
    padding: 10px;
    border-radius: 14px;
    background: #fff;
    transition: box-shadow 0.3s ease;
    border: 1px solid #dddddd;
}

.barber-card-wrapper:hover {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.review_item {
    background: #fafafa;
    border-radius: 10px;
    padding: 18px;
}

.review-stars i {
    margin-right: 3px;
}

.review_item h6 {
    font-size: 16px;
}

.review_item p,
.review_item span {
    line-height: 1.6;
    color: #212121;
}

div.dataTables_wrapper div.dataTables_filter input {
    padding: 5px 10px;
    margin-right: 15px;
}

div#dataTables_length {
    margin: 10px 10px;
    margin-bottom: 8px;
}

div#dataTables_info {
    padding: 14px;
    padding-top: 8px;
    font-size: 14px;
}

div#dataTables_paginate {
    padding-right: 15px;
}

div#dataTables_filter {
    padding-top: 12px;
}

div.dataTables_wrapper div.dataTables_length select {
    box-shadow: none !important;
}

.stat-card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.user_dash_info .bg-light-primary {
    background-color: #e7f1ff !important;
}

.user_dash_info .bg-light-success {
    background-color: #e6f9f0 !important;
}

.user_dash_info .bg-light-warning {
    background-color: #fff7e6 !important;
}

.user_dash_info .bg-light-info {
    background-color: #e6f0ff !important;
}

.user_dash_info .stat-icon i {
    transition: transform 0.3s ease;
}

.user_dash_info .stat-card:hover .stat-icon i {
    transform: scale(1.2);
}

.book_now_service .form-control {
    padding: 10px 10px;
    border-radius: 4px !important;
    border: 1px solid #d2d2d2;
    font-size: 15px;
}

.book_now_service .form-label {
    font-size: 15px;
    font-weight: 400;
    color: hsl(0 0% 5%);
}

.selected_service h5 {
    font-size: 14px;
    line-height: normal;
}

.selected_service p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.select2-container--bootstrap-5 .select2-selection--single {
    border-radius: 4px;
}

.book_now_service .select2-container--bootstrap-5 .select2-selection--single {
    height: 45px !important;
    border-radius: 4px !important;
}

.listing_category .form-check-label {
    cursor: pointer;
}

.listing_category .form-check-label img {
    margin: auto;
    border: 2px solid #ddd;
    background: #fff;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 100px;
    width: 80px;
    height: 80px;
}

.listing_category h6 {
    font-size: 14px;
}

.form-check-input:checked~.form-check-label img {
    border-color: var(--bs-yellow) !important;
    background: #ffffff !important;
}

.form-check-input:checked~.form-check-label h6 {
    color: var(--bs-yellow) !important;
}

.progress,
.progress-stacked {
    background: #343434;
    border: 1px solid #272727;
    height: 13px;
    margin: auto;
}

.progress-bar {
    background: #000;
}

.step_heading h4 {
    font-size: 23px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.step_heading p {
    margin: 0;
    font-size: 14px;
    color: #6d6d6d;
}

.team_size .form-check-label,
.team_size .form-check-input {
    cursor: pointer;
}

.team_size .form-check-input:checked {
    background-color: hsl(0 0% 5%);
    border-color: hsl(0 0% 5%);
}

.listing_form {
    max-width: 500px;
    margin: auto;
    background: #fafafa;
    padding: 30px;
    border: 1px solid #EEE;
    border-radius: 20px;
}

.listing_form .form-label {
    color: #212121;
    font-size: 16px;
    font-weight: 400;
}

.listing_form .primary-btn {
    width: 100%;
}

.listing_form .form-control {
    /* height: 52px; */
    border-radius: 8px;
    font-size: 14px;
}

.listing_form .form-check-label {
    font-size: 18px;
    cursor: pointer;
}

.listing_form .form-check-input:checked {
    background-color: hsl(0 0% 5%);
    border-color: hsl(0 0% 5%);
}

.team_size .form-check-input {
    width: 25px;
    height: 25px;
    margin-right: 12px;
    margin-top: 1px;
    cursor: pointer;
}

.listing_form .form-switch .form-check-input {
    height: 20px;
    background-color: #fafafa;
    border: 1px solid #DDD;
}

.listing_form .form-switch .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-sm {
    font-size: 12px;
    padding: 10px 10px;
}

.fc .fc-toolbar-title {
    font-size: 16px;
}

.fc .fc-button-group>.fc-button {
    font-size: 14px;
}

.fc-direction-ltr .fc-toolbar>*> :not(:first-child) {
    font-size: 14px;
}

.fc .fc-col-header-cell-cushion {
    font-size: 13px;
    color: #000;
}

.appointment_calendar th {
    padding: 12px 0px !important;
}

.fc .fc-scrollgrid-section>* {
    padding: 0 !important;
}

.fc-h-event .fc-event-main-frame {
    display: block;
    text-align: center;
    padding: 5px 10px !important;
}



#userMenu svg {
    width: 24px !important;
    height: 20px !important;
}

#userMenu .nav-item .icon {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.user_sidebar .nav-link.active .icon,
.user_sidebar .nav-link:hover .icon {
    background: #dddddd;
}


.bg-primary {
    background: #0d6efd1a !important;
    color: #0d6efd !important;
}

.bg-secondary {
    background: #6c757d1a !important;
    color: #6c757d !important;
}

.bg-success {
    background: #00800038 !important;
    color: #008000 !important;
}

/* .bg-danger {
    background: #dc35451a !important;
    color: #dc3545 !important;
} */

.bg-warning {
    background: #ffc1071a !important;
    color: #ffc107 !important;
}

.bg-info {
    background: #0dcaf01a !important;
    color: #0dcaf0 !important;
}

.bg-dark {
    background: #2125291a !important;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    box-shadow: none !important;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgb(255 255 255);
}

.service_details .bg-warning {
    background: #ffc107 !important;
    color: #ffc107 !important;
}

.invoice_wrap .title {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
}

.invoice_wrap address {
    font-size: 15px;
    line-height: 29px;
    font-weight: 400;
    color: #212121;
}

.invoice_num {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary);
}

.load_more_service {
    font-size: 14px;
    font-weight: 500;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

#bookServiceModal .modal-body {
    overflow-y: auto;
    max-height: 480px;
    scrollbar-width: thin;
}

.checkout-card .form-check-input {
    position: absolute;
    top: 30px;
    right: 10px;
}

.checkout-card .form-check-input:checked[type=radio] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

#eventData p {
    margin: 0;
    font-size: 15px;
    padding: 8px 0px;
}

.fc-event.fc-event-start.fc-event-end.fc-event-today.fc-daygrid-event.fc-daygrid-dot-event {
    cursor: pointer;
}

.avatar_text {
    border: 1px solid #c2c2c2;
    border-radius: 50px;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eaeaea;
    font-size: 12px;
}

.report_serivce button {
    border: 1px solid #ffd700;
    background: linear-gradient(135deg, #fff7cc, #ffd7001c);
    padding: 14px 16px;
    border-radius: 10px !important;
    transition: all 0.25s ease;
    color: #7a5d00;
    font-weight: 600;
    font-size: 14px;
}

.report_serivce button:hover {
    border-color: #ffcc00;
    background: linear-gradient(135deg, #fff2a8, #ffd70033);
}

#mainNavbar {
    width: 300px;
}

#mainNavbar .offcanvas-header {
    border-bottom: 1px solid #232222 !important;
}

.link_badge {
    border: 1px solid #ddd;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 50px;
}

.enternal_booking {
    border: 1px solid #ffd700;
    background: #ffd70073 !important;
}

.favouriteCount,
#mobileUnreadCount,
#desktopUnreadCount,
#unreadCount {
    color: hsl(0 0% 5%);
    font-size: 13px;
    background: #ffd700;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery_product_img {
    text-align: center !important;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 500px;
    overflow: hidden;
    background-color: #28488917;
}

.gallery_product_img img {
    width: auto !important;
    max-height: 500px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.notification-item-message {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.founding_badge_text {
    font-size: 12px;
    font-weight: 600;
    color: #b89b2e;
    position: relative;
    z-index: 1;
    display: inline-block !important;
}


.breadcrumb-section {
    height: 220px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.breadcrumb-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
}

.breadcrumb-section h1 {
    font-size: 32px;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}


.shop_img img {
    width: auto !important;
    max-height: 276px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.shop_img {
    text-align: center !important;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #1f1f20;
    height: 276px;
    overflow: hidden;
}