/* ================================
   Base Reset + Global Typography
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
    letter-spacing: 0.6px;
}

:root {
    /* 🎨 Brand Colors */
    --primary-color: #017eff;
    --heading-color: #222222;

    /* Common UI Colors */
    --text-color: #4e5562;
    --bg-color: #ffffff;
    --border-color: #e5e7eb;

    /* Banner */
    --banner-bg: rgb(61 122 129);
    --banner-text: #ffffff;

    /* Radius */
    --radius-sm: 5px;
    --radius-md: 8px;
}

body {
    height: 100vh;
    background-color: #f6f9ff;
}

a {
    text-decoration: none;
}

/* ================================
   Header / Navbar
================================ */
a.navbar-brand img {
    max-width: 130px;
}

a.nav-link {
    color: #333d4c;
    font-size: 16px;
    font-weight: 500;
}

.nav-link.active {
    color: var(--heading-color);
}

.right-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Buttons */
a.login-btn {
    padding: 10px 20px;
    border: 1px solid var(--heading-color);
    color: var(--heading-color);
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    border-radius: var(--radius-sm);
    transition: 0.2s ease;
}

a.listing-btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 16px;
    transition: 0.2s ease;
}

a.listing-btn i {
    font-size: 18px;
    display: inline-flex;
}

/* ================================
   Banner Section
================================ */
section.banner-area {
    background-color: var(--banner-bg);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

/* section.banner-area::before {
    content: '';
    position: absolute;
    background-image: url(../images/banner-bg.jpg);
    background-size: cover;
    background-position: center;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
} */

.banner-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.banner-text h1 {
    color: var(--banner-text);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 85px;
}

.banner-text form {
    padding: 8px;
    background-color: var(--bg-color);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.banner-form {
    display: flex;
    gap: 16px;
    padding: 4px;
}

.banner-wrapper {
    display: flex;
    gap: 16px;
    width: 100%;
}

.banner-form-box {
    width: 100%;
    position: relative;
}

/* Icon inside input */
.banner-form-box i {
    position: absolute;
    left: 5px;
    color: var(--heading-color);
    font-size: 16px;
    line-height: 48px;
}

/* Input */
.form-control-lg.form-icon-start {
    border-radius: 0;
    border: none;
    font-size: 16px;
    padding: 10px 18px;
    padding-left: 41px;
    /* icon space */
    box-shadow: none !important;
    color: var(--text-color);
}

.form-control-lg.form-icon-start:focus {
    outline: none;
    box-shadow: none !important;
}

/* Divider */
.vr {
    align-self: stretch;
    background-color: rgb(224, 229, 235);
    display: inline-block;
    min-height: 1em;
    opacity: 1;
    width: 1px;
}

/* Zip Box Width */
.banner-form-box.zip-form-box {
    max-width: 300px;
}

/* Submit Button */
.banner-form button.btn.btn-lg.btn-primary {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 16px;
    border: none;
    transition: 0.2s ease;
}

a.login-btn:hover {
    background: var(--heading-color);
    color: var(--bg-color);
}

a.listing-btn:hover,
.banner-form button.btn.btn-lg.btn-primary:hover {
    filter: brightness(0.95);
}

.category-btns {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

button.category-btn-link {
    position: relative;
    padding: 5px 20px;
    font-size: 16px;
    font-weight: 500;
    border: 1.4px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 800px;
    transition: 0.3s ease;
}

button.category-btn-link:hover {
    background-color: #fff;
    color: var(--heading-color);
}



/* Category Section */

section.category-area {
    position: relative;
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--heading-color);
}

.category-item-two .category-img {
    position: relative;
    overflow: hidden;
    width: 260px;
    height: 260px;
    object-fit: cover;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(30, 33, 62, 0.19);
    box-shadow: 0px 0px 24px 0px rgba(30, 33, 62, 0.19);
    border: 10px solid #fff;
    border-radius: 50%;
    margin: 0 auto;
}

.category-item-two .category-img img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    height: 100%;
}

.category-item-two .category-img .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(30, 33, 62, 0.19);
    box-shadow: 0px 0px 24px 0px rgba(30, 33, 62, 0.19);
    border-radius: 50%;
    background-color: rgba(255, 52, 79, 0.8);
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.category-item-two .category-img .category-overlay .category-content a {
    font-size: 40px;
}

.category-item-two .info {
    position: relative;
    margin-top: -50px;
    text-align: center;
}

.category-item-two .info .icon {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background-color: #ffd74e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 40px;
    color: #0d0d0d;
    margin: 0 auto;
    line-height: 24px;
    margin-bottom: 10px;
}

.category-item-two .info h3.title {
    margin-bottom: 5px;
}

h3.title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
}

.category-item-two .info h3.title a {
    color: var(--heading-color);
}

.category-item-two .info span.listing {
    color: var(--text-color);
}

.category-item.category-item-two {
    margin-bottom: 35px;
    flex-basis: 315px;
}

.category-item-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

/* explore cities */

.city-grid {
    position: relative;
    margin: 5px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.city-grid::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.city-img {
    border-radius: 6px;
    overflow: hidden;
}

.city-img img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.city-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.listings-count {
    margin-bottom: 10px;
}

.count-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    display: block;
    line-height: 1;
}

.count-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    font-weight: 500;
    margin-top: 2px;
}

.city-title h3 {
    margin: 0;
}

.city-title h3 a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.city-grid.city-grid-normal-height {
    margin-bottom: 10px;
}

.city-grid.city-grid-normal-height .city-img img {
    border-radius: 6px;
    height: 245px;
    object-fit: cover;
    width: 100%;
}

.city-grid:hover .city-img img {
    transform: scale(1.05);
}

section.explore-city-area {
    background-color: #f8fafc;
    padding: 70px 0;
}


/* login css */


.login-34 {
    padding: 25px 0;
    z-index: 999;
    position: relative;
    min-height: 100vh;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-34 .login-box {
    background: #fff;
    margin: 0 auto;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px 15px 15px 15px;
}

.login-34 .pad-0 {
    padding: 0;
}

.login-34 .info {
    max-width: 500px;
    margin: 0 auto;
    align-self: center !important;
}

.img-fluid {
    max-width: 100% !important;
    height: auto;
}

.login-34 .login-box .form-info {
    background-image: linear-gradient(to bottom, #0066ff, #37d1ff);
    border-radius: 0 15px 15px 0;
}

.login-34 .form-section {
    text-align: center;
    padding: 80px 40px 40px;
    border-radius: 10px 0 0 10px;
    position: relative;
}

.login-34 .form-section h1 {
    font-size: 30px;
    color: #fff;
}

.login-34 .form-section h3 {
    margin: 0 0 15px;
    font-size: 23px;
    font-weight: 400;
    color: #fff;
}

.login-34 .btn-section {
    border-radius: 50px;
    margin-bottom: 0;
    display: inline-block;
    top: 20px;
    position: absolute;
    right: 20px;
}

.login-34 .btn-section .link-btn {
    font-size: 14px;
    float: left;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-decoration: blink;
    width: 100px;
    padding: 8px 5px;
    margin-right: 5px;
    color: #fff;
    border-radius: 3px;
    background: #0000002e;
}

.login-34 .form-section .form-group {
    margin-bottom: 25px;
    width: 100%;
    text-align: left;
    position: relative;
}

.login-34 label {
    color: #fff;
    font-size: 16px;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.login-34 .form-section .form-control {
    padding: 10px 20px;
    font-size: 15px;
    outline: none;
    height: 50px;
    border-radius: 3px;
    border: 1px solid transparent;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.login-34 .form-section .btn-theme {
    background: #ff2f2f;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border: none;
    color: #fff;
}

.login-34 .form-section .form-check {
    float: left;
    margin-bottom: 0;
    padding-left: 0;
}

.login-34 .form-section .form-check-label {
    padding-left: 25px;
    margin-bottom: 0;
    font-size: 16px;
    color: #fff;
}

.login-34 .form-section .checkbox-theme input[type="checkbox"]:checked+label::before {
    background-color: #ff2f2f;
    border-color: #ff2f2f;
}

.login-34 .form-section input[type="checkbox"]:checked+label:before {
    font-weight: 600;
    color: #fff;
    line-height: 15px;
    font-size: 14px;
    content: "\2713";
    padding-left: 3px;
}

.login-34 .form-section .form-check label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 18px;
    height: 18px;
    top: 2px;
    margin-left: -25px;
    border: 1px solid #fff;
    border-radius: 3px;
    background-color: #fff;
}

.login-34 .form-section a.forgot-password {
    font-size: 16px;
    color: #fff;
    float: right;
}

.login-34 .form-section .btn-md {
    cursor: pointer;
    padding: 13px 50px 12px 50px;
    font-size: 17px;
    font-weight: 400;
    border-radius: 3px;
}

.login-34 .form-section .checkbox {
    font-size: 14px;
    flex-direction: row;
    justify-content: space-between;
    display: flex;
}

.login-34 .form-section .form-box {
    width: 100%;
    text-align: left;
    position: relative;
}

input#rememberMe {
    display: none;
}



/* dashboard css */

.sidebar-collapsed .sidebar-heading h1.hidden {
    display: none;
}

aside.sidebar-main .sidebar-heading svg {
    display: none;
}

.sidebar-collapsed aside.sidebar-main .sidebar-heading svg {
    display: block;
    color: #fff;
}

.sidebar-collapsed .sidebar-main {
    width: 78px;
    flex-basis: 78px;
    transition: 0.5s all;
}

.sidebar-collapsed .sidebar-main .sidebar-link {
    display: none;
    /* hide text */
}

.sidebar-collapsed .sidebar-heading {
    justify-content: center;
}

.sidebar-collapsed .sidebar-nav .sidebar-list,
.sidebar-collapsed .logout-btn button {
    justify-content: center;
    /* center icons */
    padding: 12px 10px;
}

    {
    display: flex;
    position: relative;
    height: 100vh;
}

aside.sidebar-main {
    position: fixed;
    top: 0px;
    left: 0;
    bottom: 0;
    width: 230px;
    z-index: 996;
    transition: all 0.3s;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #fff;
}

.sidebar-heading {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #3b82f6 100%);
}

.sidebar-heading h1 {
    margin-bottom: 0;
    font-size: 25px;
    color: #fff;
    font-weight: 600;
}

nav.sidebar-nav {
    overflow-y: auto;
    flex: 1 1 0%;
    padding: 10px 12px;
}

a.sidebar-list {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    transition: 0.3s;
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    gap: 16px;
    width: 100%;
    margin: 8px 0;
}

a.sidebar-list:hover {
    color: #fff;
    background: var(--primary-color);
}

a.sidebar-list.active {
    color: #fff;
    background: var(--primary-color);
}

.view-all-btn {
    margin-top: 30px;
}

.view-all-btn a.listing-btn {
    width: fit-content;
    margin: 0 auto;
}

.logout-btn {
    padding: 0px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #3b82f6 100%);
    position: fixed;
    bottom: 0;
    width: 230px;
}

.sidebar-collapsed .sidebar-main .logout-btn {
    width: 78px;
}

.sidebar-collapsed .dashboard-area {
    margin-left: 80px;
}

.logout-btn button {
    background-color: transparent;
    border: none;
    color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
    padding: 15px 32px;
    border-radius: 8px;
    gap: 16px;
}


.dashboard-area {
    position: relative;
    margin-left: 242px;
    transition: all 0.3s;
    padding: 10px;
    overflow: hidden;
}

header.dashboard-header {
    padding: 10px 20px 10px 10px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    border-bottom-width: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-icon-btn {
    transition-duration: 200ms;
    padding: 8px;
    border-radius: 8px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.menu-icon-btn svg {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.dashboard-right-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-box {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    background-color: #3b82f6;
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-area span {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    transition: 0.3s;
}

main.main-dashboard {
    padding: 20px;
}

main.main-dashboard>h1 {
    margin-top: 8px;
    margin-bottom: 20px;
    color: var(--heading-color);
    font-size: 25px;
    font-weight: 600;
}

.customers-card {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.stat-card {
    border-radius: 1rem;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.customers-icon {
    background: #c3dcff;
    color: #2563eb;
}

.stat-number-row {
    display: block;
    margin-bottom: 3px;
}

p.stat-number {
    margin-bottom: 10px;
}

.customers-button {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.stat-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}


.stat-icon {
    transition: transform 0.3s ease;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.drivers-card {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}


.drivers-icon {
    background: #b4f4d6;
    color: #059669;
}

.drivers-button {
    background: linear-gradient(135deg, #10b981, #059669);
}

.vehicles-card {
    background: linear-gradient(135deg, #e9d5ff, #ddd6fe);
}

.vehicles-icon {
    background: #e3caff;
    color: #7c3aed;
}

.vehicles-button {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.invoices-card {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.invoices-icon {
    background: #ffc37d;
    color: #ea580c;
}

.invoices-button {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

span.text-color {
    color: var(--primary-color);
}

.stat-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.top-heading h1 {
    margin: 0px;
    color: var(--heading-color);
    font-size: 25px;
    font-weight: 600;
}

.top-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.theme-btn {
    padding: 15px 15px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 15px;
    transition: 0.2s ease;
    border: none;
}

.theme-btn:hover {
    color: var(--bg-color);
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

button.btn-icon svg {
    width: 16px;
    height: 16px;
}

button.btn-edit svg {
    --tw-text-opacity: 1;
    color: rgb(1 126 255);
}

button.btn-delete svg {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}

.btn-icon {
    border: none;
    background-color: transparent;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
    padding: 6px 10px;
    border-radius: 5px;
}

.btn-edit:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}

.btn-delete:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

section.table-section {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    padding: 12px;
}

section.table-section .table thead tr th {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    padding: 1rem 1.4rem;
}

section.table-section .table tbody tr td {
    padding: 1rem 1.4rem;
    color: #017eff;
    font-size: 12px;
    align-content: center;
    font-weight: 500;
}

.bg-label-success {
    background-color: #28c76f36;
    color: #28c76f;
}

.badge {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
}

.bg-label-danger {
    background-color: #ff4c514d;
    color: #ff4c51;
}

.bg-label-warning {
    background-color: #ff9f435e;
    color: #ff9f43;
}

/* Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: hsl(240, 6%, 90%);
    ;
    transition: 0.15s;
    border-radius: 9999px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.15s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: hsl(217, 91%, 60%);
}

input:checked+.slider:before {
    transform: translateX(20px);
}

.CategoryModal .form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.CategoryModal .form-group label.form-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 0;
}

.CategoryModal .form-group input {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid hsl(240, 6%, 90%);
    border-radius: 6px;
    background-color: transparent;
    color: var(--heading-color);
    transition: all 0.15s;
    box-shadow: none !important;
}

select.form-select {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid hsl(240, 6%, 90%);
    border-radius: 6px;
    background-color: transparent;
    color: var(--heading-color);
    transition: all 0.15s;
    box-shadow: none !important;
}

.CategoryModal .form-group-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

main.main-dashboard .category-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 35px;
}

.upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 200px;
    align-content: center;
}

div#editUploadBox img#editPreview {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 100%;
    max-width: 210px;
    border-radius: 8px;
    height: 100%;
}

div#editUploadBox {
    position: relative;
}

.category-icon i {
    font-size: 30px;
}


/* add listing page css */

.hero {
    background: linear-gradient(135deg, #017eff 0%, #2563eb 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}


.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.progess-area-list {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.top-progress-bar {
    position: relative;
    background-color: rgb(61 122 129);
    padding: 20px;
}

.progess-box {
    display: flex;
    gap: 16px;
    white-space: nowrap;
    align-items: center;
}

.step-circle {
    width: 45px;
    height: 45px;
    /* background-color: #fff; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    flex-shrink: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

span.step-label {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.progess-area-list hr {
    width: 100%;
    color: #fff;
}

.step-area {
    margin-top: 30px;
}

.form-step h2 {
    color: var(--heading-color);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-grid .form-group .form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-grid .form-group input {
    border: 1.5px solid #cad0d9;
    width: 100%;
    padding: 6px 15px;
    border-radius: 6px;
    outline: none !important;
    font-size: 14px;
}

.custom-select {
    position: relative;
    width: 100%;
}

.textarea-field {
    width: 100%;
    border: 1.5px solid #cad0d9 !important;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 14px;
    color: #111827;
    resize: vertical;
    transition: border-color .2s ease, box-shadow .2s ease;
    box-shadow: none !important;
    outline: none !important;
}

.textarea-field::placeholder {
    color: #9ca3af;
}

.select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
    border: 1.5px solid #cad0d9 !important;
    width: 100%;
    padding: 6px 15px;
    border-radius: 6px;
    outline: none !important;
    box-shadow: none !important;
}

.select-trigger:focus,
.select-trigger:focus-visible {
    outline: none;
    border-color: #017eff;
    box-shadow: 0 0 0 4px rgba(1, 126, 255, .12);
}

.select-placeholder {
    color: #6B7280;
    font-size: 14px;
}

.form-grid .form-group input::placeholder {
    color: #6B7280;
    font-size: 14px;
}

.custom-select.is-open .select-icon {
    transform: rotate(180deg);
}

.select-icon {
    display: flex;
    transition: transform .2s ease;
    color: #111827;
}

.select-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(17, 24, 39, .12);
    overflow: hidden;

    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 50;
}

.custom-select.is-open .select-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.select-search {
    padding: 10px;
    border-bottom: 1px solid #F3F4F6;
    background: #fff;
}

.select-search input {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    outline: none;
    box-shadow: none !important;
}


.select-options {
    max-height: 220px;
    overflow: auto;
    padding: 8px;
    margin: 0;
    list-style: none;
}

.select-option {
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #111827;
    transition: background .15s ease;
}

.select-option:hover {
    background: #F3F4F6;
}

.select-option.is-hidden {
    display: none;
}

.form-grid .form-group {
    margin-bottom: 25px;
}

.required {
    color: #ef4444;
}

.logo-preview img {
    width: 100%;
    max-width: 170px;
    text-align: center;
    margin: 0 auto;
}

.logo-preview {
    text-align: center;
    margin-top: 30px;
}

.remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

/* ====== Progress states ====== */

.progess-box.active .step-circle {
    border-color: #10b981;
    background: #10b981;
    color: #fff;
}

.progess-box.completed .step-circle {
    border-color: #10b981;
    background: #10b981;
    color: #fff;
}

/* ====== Form steps ====== */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* ====== Bottom navigation ====== */
.form-navigation {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.form-navigation .btn {
    padding: 12px 28px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
}

.form-navigation .next-btn {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.form-navigation .submit-btn {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.form-navigation .btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.step-counter {
    font-weight: 600;
    color: #6b7280;
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 15px;
    /* background-color: #f9fafb; */
    border-top: 1px solid #e5e7eb;
}

.btn-prev {
    background: none;
    color: #374151;
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.wizard-center {
    font-size: 0.875rem;
    color: #6b7280;
}

.next-btn {
    background: none;
    color: #374151;
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.bussiness-logo .upload-area {
    height: 160px;
    align-content: center;
}

.working-hours-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
}

.day-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid #eef1f6;
}

.day-row:last-child {
    border-bottom: 0;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
    flex: 0 0 auto;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #d6dde8;
    transition: .2s;
    border-radius: 999px;
}

.slider:before {
    content: "";
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    top: 4px;
    background: white;
    transition: .2s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.switch input:checked+.slider {
    background: #22c55e;
}

.switch input:checked+.slider:before {
    transform: translateX(26px);
}

.day-name {
    min-width: 140px;
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 600;
}

.time-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.time-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #cfd8e3;
    border-radius: 12px;
    padding: 10px 15px 10px 15px;
    background: #fff;
    min-width: 150px;
    height: 50px;
}

.time-box input[type="time"] {
    border: 0;
    outline: 0;
    width: 100%;
    font-size: 18px;
    color: #111827;
    background: transparent;
}

.time-box .icon {
    position: absolute;
    right: 14px;
    width: 18px;
    height: 18px;
    opacity: .8;
    pointer-events: none;
}

.to-text {
    font-size: 18px;
    color: #6b7280;
    margin: 0 2px;
}

.lunch-label {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-left: 8px;
}

.closed-text {
    font-size: 18px;
    color: #6b7280;
    padding: 10px 0;
}

/* Disabled row look */
.day-row.is-closed .day-name {
    opacity: .55;
}

.day-row.is-closed .time-wrap {
    display: none;
}

.so-wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 14px
}

.service-card {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(16, 24, 40, .06);
    padding: 18px;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 220px 40px;
    gap: 18px;
    align-items: end;
}

.fg label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.fg input {
    outline: none;
    border: 1.5px solid #cad0d9;
    width: 100%;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 14px;
}

.delete-service {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.add-service-btn {
    margin-top: 14px;
    border: 1px solid #e3e7ef;
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 14px;
}

.add-service-btn .plus {
    font-size: 18px;
    margin-right: 6px
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
        align-items: stretch
    }

    .delete-service {
        justify-content: flex-start
    }
}

.features-card {
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 18px;
    background: #fff;
    max-width: 420px;
    margin-bottom: 30px;
}

.features-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-tile {
    border: 2px solid #017eff;
    border-radius: 14px;
    padding: 14px 10px;
    background: #f4f7ff;
    color: var(--heading-color);
    cursor: pointer;
    transition: all .15s ease;
}

.feature-tile .ft-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f6fed;
    font-size: 25px;
}

.feature-tile .ft-text {
    font-weight: 600;
    font-size: 13px;
}

.feature-tile:hover {
    transform: translateY(-1px);
}

.feature-tile.is-selected {
    background: #2f6fed;
    color: #fff;
}

.feature-tile.is-selected .ft-icon {
    color: #fff;
}

.features-divider {
    height: 1px;
    background: #e9e9e9;
    margin: 16px 0;
}

.selected-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.selected-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    color: #666;
}

.selected-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sel-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #eef3ff;
    color: #1f3f8a;
    font-size: 12px;
    font-weight: 600;
}

.sel-chip button {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    color: #1f3f8a;
}

.media-card {
    background: #fff;
    border: 1px solid #e9eef5;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(17, 24, 39, .06);
}

.media-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.media-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #f3f6ff;
    color: #2f6fed;
}

.media-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

.media-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.upload-box {
    border: 2px dashed #dbe6ff;
    border-radius: 14px;
    padding: 22px;
    cursor: pointer;
    display: block;
    background: linear-gradient(180deg, #fbfdff 0%, #ffffff 60%);
    transition: .15s ease;
}

.upload-box:hover {
    border-color: #9dbbff;
    transform: translateY(-1px);
}

.upload-inner {
    text-align: center;
}

.upload-circle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    background: #eef4ff;
    color: #2f6fed;
}

.upload-title {
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.upload-hint {
    font-size: 13px;
    color: #6b7280;
}

.upload-meta {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

.upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 10px;
    background: #2f6fed;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    user-select: none;
}

.media-input {
    border-radius: 12px;
    padding: 12px 12px;
    border: 1px solid #e6eaf2;
}

.media-input:focus {
    box-shadow: none;
    border-color: #9dbbff;
}

.video-preview-wrap {
    margin-top: 8px;
}

.video-preview-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #9ca3af;
    margin-bottom: 8px;
}

.video-preview {
    border: 1px solid #e9eef5;
    background: #fbfbfd;
    border-radius: 14px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #9ca3af;
}

.video-preview-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #f1f3f8;
    color: #9ca3af;
}

.video-preview-text {
    font-size: 12px;
}

.gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.gallery-strip {
    display: flex;
    gap: 12px;
    overflow: auto;
    padding-bottom: 4px;
}

.gallery-thumb {
    width: 220px;
    height: 92px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #e9eef5;
}

.gallery-item {
    position: relative;
    display: inline-block;
}

.gallery-thumb {
    width: 220px;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.gallery-remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 18px;
    line-height: 26px;
    display: flex;
    align-items: center;
    background: oklch(.577 .245 27.325);
    color: #fff;
    justify-content: center;
}

.review-wrap {
    max-width: 980px;
}

.review-card {
    border: 1px solid #e6e8ee;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(16, 24, 40, .02);
    margin-bottom: 14px;
}

.review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid rgba(230, 232, 238, .7);
    background: #f7f8fb;
}

.review-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #101828;
}

.review-ico {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(230, 232, 238, .8);
}

.review-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-edit {
    border: 0;
    background: transparent;
    color: #1f66ff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 8px;
}

.btn-edit:hover {
    background: rgba(31, 102, 255, .08);
}

.chev {
    display: inline-flex;
    transition: .2s ease;
}

.review-head[aria-expanded="true"] .chev {
    transform: rotate(180deg);
}

.review-body {
    padding: 18px;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
}

.review-item .lbl {
    font-size: 12px;
    color: #667085;
    margin-bottom: 6px;
}

.review-item .val {
    font-size: 14px;
    color: #101828;
    font-weight: 600;
    line-height: 1.4;
}

.review-item.full {
    grid-column: 1 / -1;
}

/* HOURS */
.hours-table {
    border-top: 1px solid #e6e8ee;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2px;
    border-bottom: 1px solid #e6e8ee;
    font-weight: 600;
    color: #101828;
}

.hours-row .d {
    font-size: 14px;
}

.hours-row .t {
    font-size: 14px;
    color: #344054;
    font-weight: 500;
}

/* CHIPS */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    background: #ffe8f4;
    border: 1px solid #ffd0ea;
    color: #a4005e;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

button.chip-remove {
    border: none;
    border-radius: 50px;
    color: #000000;
    font-size: 24px;
    background: transparent;
}

.muted-sm {
    color: #667085;
    font-size: 13px;
}

/* MEDIA */
.media-label {
    font-size: 12px;
    color: #667085;
    font-weight: 700;
    margin-bottom: 8px;
}

.media-video {
    height: 170px;
    border-radius: 12px;
    background: #0b0f1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.media-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-empty {
    color: #98a2b3;
}

.media-thumbs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.media-thumb {
    width: 180px;
    height: 120px;
    border-radius: 12px;
    background: #eef2f6;
    border: 1px solid #e6e8ee;
    overflow: hidden;
    position: relative;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TERMS */
.terms-box {
    border: 1px solid #cfe2ff;
    background: #eef6ff;
    border-radius: 12px;
    padding: 14px 16px;
}

.terms-text {
    font-size: 13px;
    color: #344054;
}

.terms-text a {
    color: #1f66ff;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* LISTING OPTIONS */
.listing-card {
    border: 1px solid #e6e8ee;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.listing-head {
    padding: 14px 16px;
    font-weight: 800;
    color: #101828;
    border-bottom: 1px solid #e6e8ee;
}

.opt-card {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    margin: 14px 16px;
    cursor: pointer;
    background: #fff;
}

.opt-card input {
    margin-top: 4px;
}

.opt-title {
    font-weight: 800;
    color: #101828;
}

.opt-sub {
    font-size: 12px;
    color: #667085;
    margin-top: 2px;
}

.opt-card.active {
    border-color: #1f66ff;
    background: #eef6ff;
}

/* COLOR THEMES (like your screenshot) */
.theme-basic .review-head {
    background: #eef6ff;
}

.theme-contact .review-head {
    background: #f9f0ff;
}

.theme-hours .review-head {
    background: #fff8ec;
}

.theme-services .review-head {
    background: #eefcf3;
}

.theme-features .review-head {
    background: #fff0f6;
}

.theme-media .review-head {
    background: #eef2ff;
}

/* Listing front css start */

section.listing-area-front {
    position: relative;
    padding: 60px 0 40px;
}

.front-listing-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 50px;
    box-shadow: 0 25px 70px #080a3714;
}

.front-listing-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.front-listing-img img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    border-radius: 0 !important;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

.front-listing-img .action-buttons {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.front-listing-img .action-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #374151;
}


.status-badge.open {
    color: #16a34a;
}

.status-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.front-listing-content {
    padding: 24px;
}

.front-listing-header {
    margin-bottom: 20px;
}

.front-listing-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.front-listing-title h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.front-listing-title h3 a {
    color: var(--heading-color);
}

.front-listing-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.front-listing-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #6b7280;
}

.front-listing-meta .rating {
    display: flex;
    align-items: center;
    gap: 4px;
}


.front-listing-meta .rating svg {
    color: #f59e0b;
    fill: #f59e0b;

}

.rating span {
    font-weight: 600;
    color: #374151;
    font-size: 12px;
}

.category-badge {
    background: #dbeafe;
    color: #017eff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
}

.testimonial {
    background: #f9fafb;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.testimonial-content {
    display: flex;
    gap: 12px;
}

.testimonial-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.testimonial-text p {
    font-style: italic;
    font-size: 12px;
    line-height: 19px;
    font-weight: 500;
    color: #344054;
    margin-bottom: 5px;
}

.testimonial-author {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}


/* admin dashboard css */

.announcement-area {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.announcement-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.announcement-img {
    margin-bottom: 10px;
    opacity: 0.7;
}

.announcement-img img {
    max-width: 200px;
    margin-bottom: 20px;
}

.announcement-content h2 {
    color: var(--heading-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.announcement-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

.announcement-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
}

.announcement-btn:hover {
    color: #fff;
}

.ann-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 30px;
}

.ann-card-head {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 6px;
    color: var(--heading-color);
    font-weight: 500;
}

.ann-preview .ann-card-body {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    justify-content: space-between;
}

.ann-preview-texts {
    max-width: 480px;
    margin-right: auto;
    margin-left: 20px;
}

.ann-preview-icon {
    background: #f0f4ff;
    color: var(--primary-color);
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ann-preview-title {
    font-weight: 500;
    margin-bottom: 3px;
    color: var(--primary-color);
}

.ann-preview-desc {
    color: #555;
    font-size: 14px;
}

.ann-chip {
    background: #017eff2e;
    color: var(--primary-color);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.ann-card-body {
    padding: 15px;
}

.icon-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 50px;
    color: #000;
    border: 1px solid #dbe2ea;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease,
        border-color 0.15s ease;
}

.icon-chip.is-selected {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(11, minmax(0, 1fr));
    row-gap: 15px;
}

.icon-chip svg {
    width: 20px;
    height: 20px;
}


.ann-card .ann-card-body .form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.ann-card .ann-card-body input {
    border: 1.5px solid #cad0d9;
    width: 100%;
    padding: 6px 15px;
    border-radius: 6px;
    outline: none !important;
    font-size: 14px;
}

.ann-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.ann-ghost-btn {
    background: #f9f9f9;
    border: 1px solid #ccc;
    height: 40px;
    width: 80px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    text-align: center;
    align-content: center;
}

.ann-actions-right {
    display: flex;
    gap: 10px;
}

.ann-primary-btn {
    background: var(--primary-color);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    /* height: 40px; */
    /* width: 80px; */
    padding: 10px 30px;
}


/* listing detail page css */

.listing-slider-single img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.listing-slider-single {
    border-radius: 10px;
    height: 460px !important;
    width: 100%;
    object-fit: cover;
}

section.listing-slider {
    position: relative;
    padding: 30px 0;
}

.listing-slider-wrapper {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.swiper-scrollbar-drag {
    background: #017eff !important;
}

/* Smooth & premium slide feel */
.swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.listing-thumbs {
    margin-top: 12px;
}

.listing-thumbs .thumb-slide {
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    opacity: .6;
    cursor: pointer;
    width: 100px !important;
}

.listing-thumbs .thumb-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ✅ active thumb highlight */
.listing-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    outline: 2px solid #017eff;
    outline-offset: 2px;
    border-radius: 10px;
}

.listing-thumbs .swiper-wrapper {
    gap: 15px;
}

@media (max-width: 576px) {
    .listing-thumbs .thumb-slide {
        height: 55px;
    }
}

.breadcrumb-item+.breadcrumb-item:before {
    height: 16px;
    margin-right: 6px;
    padding-right: 0;
    width: 16px;
}

.breadcrumb-item+.breadcrumb-item:before {
    color: var(--fn-breadcrumb-divider-color);
    content: var(--fn-breadcrumb-divider, url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333d4c' viewBox='0 0 24 24'%3E%3Cpath d='M8.381 5.381a.874.874 0 0 1 1.237 0l6 6a.874.874 0 0 1 0 1.237l-6 6a.874.874 0 1 1-1.237-1.237L13.763 12 8.381 6.619a.874.874 0 0 1 0-1.237z'/%3E%3C/svg%3E"));
    float: left;

}

.breadcrumb-area {
    padding-top: 20px;
    position: relative;
    padding-bottom: 20px;
}

li.breadcrumb-item a {
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
}

.breadcrumb-item.active {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item {
    align-items: center;
    display: flex;
}

section.profile-details {
    position: relative;
    padding: 0 0 30px 0;
}

.profile-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-detail-area {
    display: flex;
    align-items: center;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #d8d8d8;
}

.profile-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.profile-content {
    padding-left: 20px;
}

.profile-name h1 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--heading-color);
    font-weight: 600;
}

.profile-reviews-area ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.profile-reviews-area ul li svg {
    fill: rgb(252 146 49);
    color: rgb(252 146 49);
    width: 16px;
    height: 16px;
}

span.profile-review-number {
    font-size: 14px;
    color: var(--heading-color);
    font-weight: 500;
}

span.profile-review-count {
    font-size: 12px;
    color: #6c727f;
}

.profile-reviews-area ul>li+li svg {
    fill: transparent;
    color: #6c727f;
}

.btn-2 {
    height: 40px;
    padding: 0;
    width: 40px;
    background-color: #fff;
    border-radius: 50%;
    border: 1.5px solid #e0e5eb;
    color: var(--heading-color);
    transition: color .25s ease-in-out, background-color .25s ease-in-out, border-color .25s ease-in-out;
}

.btn-2:hover {}

.profile-share-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* RIGHT SIDE IMAGE BOX */
.right-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 2;
    overflow: hidden;
}

/* IMAGE */
.right-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    top: 0;
}

.right-img-box::before {
    content: '';
    padding-top: calc(204 / 196 * 100%);
    display: block;
}

.listing-details-about {
    position: relative;
    margin-bottom: 20px;
}

.heading-title {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 600;
}

.listing-details-about p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #344054;
    margin-bottom: 0;
}

.icon-box-one {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

.icon-box-one .icon i {
    font-size: 26px;
    color: var(--primary-color);
}

.icon-box-one .icon {
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #efefef;
    border-radius: 50%;
    margin-right: 20px;
    background-color: #fff;
}

.icon-box-one .info h6 {
    margin-bottom: 0;
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 500;
}

.icon-box-one .icon svg {
    color: #017eff;
}

.services-list ul {
    margin-bottom: 0;
    padding-left: 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.services-list ul li {
    flex-basis: 210px;
    display: flex;
    margin-bottom: 0px;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    position: relative;
}

.services-list ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0px;
    color: #28a745;
    font-weight: 700;
    font-size: 16px;
}

.services-list .services-name {
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 500;
}

.services-price {
    color: #017eff;
    font-weight: 600;
    font-size: 15px;
}

.listing-feature-show {
    position: relative;
    margin-bottom: 20px;
}

.listing-services-show {
    position: relative;
    margin-bottom: 30px;
}

.listing-details-sidebar {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
    position: relative;
    margin-bottom: 20px;
    background-color: #fff;
}

.contact-info ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--heading-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-icon svg {
    color: var(--primary-color);
}


.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}


.social-link.twitter {
    background: #1da1f2;
}

.social-link.instagram {
    background: #e4405f;
}

.social-link.linkedin {
    background: #0a66c2;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.snapchat {
    background: #ffee00;
}

.social-link:hover {
    transform: scale(1.1);
}

.business-hour-list ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.business-hour-list ul li {
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e7e7;
    margin-bottom: 20px;
    font-size: 15px;
}

.listing-business-hour {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
    position: relative;
    margin-bottom: 20px;
    background-color: #fff;
}

.business-hour-list ul li span.day-title {
    font-weight: 500;
    color: var(--heading-color);
    font-size: 14px;
}

.business-hour-list ul li span.day-time {
    font-weight: 500;
    color: #344054;
    font-size: 13px;
    float: right;
}

.business-hour-list ul li span.day-close {
    font-weight: 500;
    color: #ff344f;
    font-size: 13px;
    float: right;
}

.business-hour-list ul li:last-child {
    margin-bottom: 0px;
    border-bottom: none;
    padding-bottom: 0px;
}

.listing-contact-form {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
    position: relative;
    margin-bottom: 20px;
    background-color: #fff;
}

.btn-submit {
    width: 100%;
    border: none;
    background-color: var(--primary-color);
    border-radius: 6px;
    color: #fff;
    padding: 12px 0;
}

.listing-review-area {
    position: relative;
    margin-bottom: 20px;
    margin-top: 40px;
}

.heading-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

button.review-btn {
    background: #fff;
    color: var(--heading-color);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--heading-color);
}

.review-box-flex {
    background-color: rgb(245 247 250);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    padding: 25px;
    justify-content: center;
}

.review-box-flex h1 {
    color: var(--heading-color);
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 10px;
}

.review-box-star-icon {
    margin-bottom: 10px;
}

.review-box-star-icon {
    margin-bottom: 10px;
    align-self: stretch;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.review-box-star-icon svg {
    color: rgb(252 146 49);
    fill: rgb(252 146 49);
    width: 20px;
    height: 20px;
}

.total-review {
    font-size: 16px;
    font-weight: 500;
    color: #6c727f;
}

.review-progress-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-progress-bar-box {
    display: flex;
    gap: 8px;
    align-items: center;
}

.review-progress-bar-1 {
    display: flex;
    align-items: center;
    font-size: 20px;
    gap: 6px;
    color: var(--heading-color);
    font-weight: 600;
}

.review-progress-bar-1 svg {
    color: rgb(252 146 49);
    fill: rgb(252 146 49);
    width: 18px;
    height: 18px;
}

.review-progress-bar-box .text-nowrap {
    font-size: 16px;
    font-weight: 500;
    color: #6c727f;
}

.review-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-details-box {
    flex: 1 1 auto;
    flex-direction: column;
    display: flex;
    margin-bottom: 10px;
    gap: 4px;
}

.review-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-info h6 {
    color: var(--heading-color);
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

span.review-date {
    font-size: 12px;
    color: #6c727f;
}

.review-star svg {
    color: rgb(252 146 49);
    fill: rgb(252 146 49);
    width: 15px;
    height: 15px;
}

.review-details-box p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #344054;
    margin-bottom: 0;
}

ul.pagination li.page-item.active span.page-link {
    background-color: #eef1f6;
    border-color: #eef1f6;
    color: var(--heading-color);
    border-radius: 5px;
}

ul.pagination {
    gap: 4px;
}

ul.pagination li.page-item .page-link {
    color: var(--heading-color);
    border: none;
    box-shadow: none !important;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.top-sticky {
    position: sticky;
    top: 20px;
}

/* Coupon Promo Bar */
.couponBar {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #3b82f6 100%);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    margin-bottom: 20px;
}

.couponBar__content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.couponBar__text {
    font-size: 14px;
}

.couponBar__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.couponCodeText {
    border: 2px dashed rgba(255, 255, 255, .8);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 1px;
}

.copyCouponBtn {
    background: #fff;
    color: #e0002a;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

.copyCouponBtn:hover {
    opacity: .92;
}

.couponTimer {
    background: rgba(255, 255, 255, .15);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.closeCouponBar {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #e0002a;
    font-size: 18px;
    cursor: pointer;
}

.closeCouponBar:hover {
    opacity: .92;
}

/* Mobile small improvements */
@media (max-width:576px) {
    .couponBar {
        padding: 12px 12px;
    }

    .couponBar__right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.search-bar {
    border-top: 1px solid oklch(92.8% 0.006 264.531);
    /* border-bottom: 1px solid oklch(92.8% 0.006 264.531); */
    position: relative;
    padding: 20px 0 0;
}

.search-bar .form-control-lg.form-icon-start {
    border: 1px solid oklch(92.8% 0.006 264.531);
    border-radius: 5px;
    padding: 6px 18px;
    padding-left: 41px;
}

.search-bar .banner-form-box.zip-form-box {
    max-width: 280px;
}

.search-bar .banner-form-box i {
    position: absolute;
    left: 12px;
    color: var(--heading-color);
    font-size: 16px;
    line-height: 42px;
}


.search-bar .form-control-lg.form-icon-start {
    font-size: 13px;
}

.search-bar .banner-form button.btn.btn-lg.btn-primary {
    padding: 6px 20px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 16px;
    border: none;
    transition: 0.2s ease;
}

.form-control-lg.form-icon-start::placeholder {
    font-size: 15px;
    color: var(--text-color);
}

.listing-search-area h1 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--heading-color);
    font-weight: 600;
}

.listing-search-area-box {
    border-radius: 10px;
    border: solid 1px #eee;
    background-color: #fff;
    padding: 20px;
    display: inline-flex;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
}

.wishlist-icon {
    position: absolute;
    top: 10px;
    right: 10px;
}

.wishlist-icon a {
    color: #767676;
}

.listing-search-box-img-area .listing-slider-single {
    border-radius: 10px;
    height: 180px !important;
    width: 180px !important;
    object-fit: cover;
}

.listing-search-box-content-area .services-list ul {
    gap: 12px;
}

.listing-search-box-img-area {
    position: relative;
    height: 180px;
    width: 180px;
    overflow: hidden;
    border-radius: 4px;
}

.listing-search-box-img-area img {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 4px;
}

.listing-search-box-content-area {
    position: relative;
    padding-left: 20px;
}

.listing-search-box-content-area h3 a {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--heading-color);
    font-weight: 600;
}

.listing-search-box-content-area .profile-reviews-area {
    margin-bottom: 5px;
}

.listing-search-box-social-links ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.listing-search-box-social-links ul li .call-btn {
    background-color: #058a07;
    color: #fff;
    padding: 8px 12px;
    position: relative;
    font-size: 12px;
    border-radius: 5px;
    font-weight: 600;
}

.listing-search-box-social-links ul li .send-enquiry-btn {
    background-color: #000;
    color: #fff;
    padding: 8px 12px;
    position: relative;
    font-size: 12px;
    border-radius: 5px;
    font-weight: 600;
}

.listing-search-box-social-links {
    margin-top: 20px;
}

.listing-search-box-social-links ul li a svg {
    width: 16px;
    margin-right: 4px;
}

.listing-search-box-social-links ul li .whatsaap-btn {
    background-color: oklch(96.2% 0.044 156.743);
    color: oklch(52.7% 0.154 150.069);
    padding: 8px 12px;
    position: relative;
    font-size: 12px;
    border-radius: 5px;
    font-weight: 600;
}



/*  */

.day-row .day-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.event-type-box .ann-preview-icon {
    width: 180px;
    height: 150px;
}

.features-box-grid {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    row-gap: 0;
}

.features-box-grid .icon-box.icon-box-one {
    flex-basis: 203px;
}


.filter-section {
    padding: 22px 0;
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.filter-field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #e6ebf2;
    border-radius: 10px;
    background: #fff;
}

.fi {
    display: flex;
    align-items: center;
    color: #6b7280;
}

.filter-input {
    border: 0;
    outline: 0;
    min-width: 240px;
    font-size: 14px;
    color: #111827;
}

.filter-select {
    position: relative;
    cursor: pointer;
}

.pill-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    color: #111827;
}

.pill-x {
    border: 0;
    background: transparent;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
}

.caret {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #6b7280;
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
    padding: 8px;
    display: none;
    z-index: 99;
}

.filter-select.open .dropdown {
    display: block;
}

.dd-item {
    width: 100%;
    text-align: left;
    padding: 10px 10px;
    border: 0;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #111827;
}

.dd-item:hover {
    background: #f3f4f6;
}

.toggle-group {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 6px;
}

.toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    cursor: pointer;
}

.toggle input {
    display: none;
}

.track {
    width: 44px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 999px;
    position: relative;
    transition: .2s;
}

.track::after {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: .2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}

.toggle input:checked+.track {
    background: #111827;
}

.toggle input:checked+.track::after {
    left: 23px;
}

.tlabel {
    font-size: 14px;
    color: #111827;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    float: right;
    margin-left: auto;
}

.results {
    font-size: 14px;
    color: #6b7280;
    padding-right: 8px;
}

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
}

.sort-label {
    color: #6b7280;
    font-size: 14px;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #e6ebf2;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    color: #111827;
    font-size: 14px;
}

.view-icons {
    display: flex;
    gap: 8px;
}

.view-btn {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e6ebf2;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    color: #6b7280;
}

.view-btn.active {
    color: #111827;
    border-color: #cfd6e1;
}

@media (max-width: 768px) {


    .filter-right {
        width: 100%;
        justify-content: space-between;
    }
}

section.banner-area-other {
    background-color: var(--banner-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

section.banner-area-other {
    background-color: var(--banner-bg);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


section.about-deatil-section {
    position: relative;
    padding: 60px 0;
}

.left-side-about h4 {
    font-size: 40px;
    font-weight: 600;
    color: var(--heading-color);
}

.left-side-about p {
    color: var(--text-color);
    line-height: 30px;
    font-weight: 400;
}

.right-side-about {
    text-align: center;
}

.right-side-about img {
    width: 100%;
    max-width: 310px;
}

.footer-top-wrap {
    background-color: #1a1a1a;
    padding: 4.6875rem 0 2.875rem;
}

.footer-box-layout1 {
    margin-bottom: 1.875rem;
}

.footer-box-layout1 .footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    max-width: 130px;
}

.footer-box-layout1 p {
    font-size: 12px;
    color: #a5a5a5;
    line-height: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-box-layout1 .footer-social li {
    display: inline-block;
    margin-right: 0.25rem;
    margin-bottom: 0.3125rem;
}

.footer-box-layout1 .footer-social li a {
    display: flex;
    text-align: center;
    height: 2.375rem;
    width: 2.375rem;
    line-height: 2.375rem;
    background-color: rgba(255, 255, 255, 0.19);
    border-radius: 50%;
    color: #a5a5a5;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    align-items: center;
    justify-content: center;
}

.footer-box-layout1 .footer-title {
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
}

.footer-box-layout1 .footer-title h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}

.footer-box-layout1 .footer-title:after {
    content: "";
    height: 0.1875rem;
    width: 2.5rem;
    background-color: #017eff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-box-layout1 .footer-menu-box ul li a {
    font-size: 12px;
    color: #a5a5a5;
    padding: 0.3125rem 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
}

.footer-box-layout1 .footer-menu-box ul li {
    margin-bottom: 0.375rem;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-bottom-wrap {
    background-color: #111212;
    padding: 1.5625rem 0;
}

.footer-bottom-wrap .copyright-text {
    color: #ababab;
    text-align: center;
}

.footer-bottom-wrap .copyright-text a {
    color: #f5f5f5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-box-layout1 .footer-menu-box ul li a:hover {
    color: #ffffff;
}

section.listing-details-area {
    margin-bottom: 60px;
}

.pill-input {
    border: 0;
    outline: none;
    background: transparent;
    font-size: 14px;
    min-width: 120px;
    padding: 6px 4px;
}

.pill-input::placeholder {
    color: #9aa3af;
}

.dd-item.d-none {
    display: none !important;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 500;
}

.faq-question svg {
    transition: transform 0.3s ease;
}


.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 1rem;
    max-height: 200px;
}

.faq-answer {
    padding: 0 1rem;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    color: #344054;
    margin-bottom: 0;
}

section.pricing-area {
    position: relative;
    padding: 40px 0;
    background-color: #f8fafc;
}

.price-shape-one {
    position: absolute;
    bottom: -20px;
    left: 0;
}

.price-shape-one img {
    width: 400px;
    height: 350px;
}

.tpsection__content .section-title {
    text-align: start;
    margin-bottom: 0;
    padding-left: 80px;
}

.tp-price-toggle {
    position: relative;
}

.tpprice {
    padding-left: 40px;
}

.tppricing {
    background-color: #fff;
    border-radius: 14px;
    padding: 60px 50px;
    box-shadow: 0 25px 70px #080a3714;
    margin-bottom: 30px;
}

.tppricing-icon {
    margin-bottom: 30px;
}

h3.tppricing-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 20px;
}

.tppricing-icon-1 img {
    width: 34px;
    height: 30px;
}

.tppricing-feature ul li {
    color: #565764;
    padding-left: 28px;
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;
    list-style: none;
    position: relative;
}

.tppricing-feature ul li span svg {
    color: #017eff;
    font-weight: 500;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

h4.tppricing-price-title {
    color: #000;
    margin-bottom: 0;
    font-size: 34px;
    font-weight: 600;
    line-height: 34px;
}

.tppricing-feature {
    margin-bottom: 25px;
}


.tppricing-price {
    margin-bottom: 25px;
}

a.tp-btn-blue {
    color: #ffffff;
    text-align: center;
    -o-transition: all .4s ease-out 0s;
    background-color: #0000;
    border: 1px solid #0c13381a;
    border-radius: 6px;
    padding: 17px 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 10px;
    transition: all .4s ease-out;
    display: block;
    background-color: #017eff;
}

.pricing-wrapper .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.map-sidebar {
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
    position: relative;
    margin-bottom: 20px;
    background-color: #fff;
}

.pagination-wrap {
    float: right;
}

ul.pagination li.page-item.active a.page-link {
    color: #fff;
}

button#submitBtn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 16px;
    transition: 0.2s ease;
}

.chip-feature-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffe8f1;
    /* light pink like screenshot */
    color: #d1006c;
    font-size: 14px;
    font-weight: 500;
}

.chip-feature-review .chip-icon {
    height: 30px;
    width: 40px;
    object-fit: contain;
}

.chip-feature-review .chip-text {
    line-height: 1;
}


/*  */



/* User dropdown in navbar */
.user-dd {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.profile-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    background: #2f6df6;
    font-size: 14px;
}

.dropdown-trigger {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 10px;
}

.dropdown-trigger:hover {
    background: rgba(0, 0, 0, 0.04);
}

.user-name {
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
}

.chev {
    font-size: 14px;
    transition: transform .2s ease;
}

.user-dd.open .chev {
    transform: rotate(180deg);
}

/* Dropdown menu */
.dropdown-menu-user {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 10px;
    z-index: 9999;

    /* animation start state */
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

/* Open state: niche se upper feel */
.user-dd.open .dropdown-menu-user {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dd-item {
    display: flex;
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    color: #111;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.dd-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.dd-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 8px 0;
}

.dd-danger {
    color: #dc3545;
}

.dropdown-trigger:hover {
    background-color: transparent;
}

/*  */


.bh-dropdown {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.bh-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
}

.bh-left {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.bh-title {
    font-weight: 600;
}

.bh-today {
    font-weight: 600;
}

.bh-status {
    color: #444;
}

.bh-status.is-closed {
    color: #e53935;
}

.bh-caret {
    transition: transform .2s ease;
}

.bh-dropdown.open .bh-caret {
    transform: rotate(180deg);
}

.bh-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .22s ease;
    z-index: 9999;
}

.bh-dropdown.open .bh-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bh-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    border-radius: 10px;
}

.bh-row+.bh-row {
    border-top: 1px solid #f1f1f1;
    border-radius: 0;
}

.bh-row.is-today {
    background: #f6f9ff;
    border-radius: 10px;
    border-top: none;
}

.bh-day {
    font-weight: 600;
}

.bh-time {
    color: #444;
}

.bh-closed {
    color: #e53935;
}


.action-btn.is-saved svg {
    stroke: red;
    fill: red;
}

.whishlist-wrapper .front-listing-box {
    flex-basis: 400px;
}

.whishlist-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 0;
}


.CategoryModal .form-group textarea {
    width: 100%;
    border: 1.5px solid #cad0d9 !important;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 14px;
    color: #111827;
    resize: vertical;
    transition: border-color .2s ease, box-shadow .2s ease;
    box-shadow: none !important;
    outline: none !important;
}














































































































































































/*  */