/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

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

a {
    text-decoration: none !important;
    color: #2B2D2E;
}

textarea {
    resize: vertical;
}

body {
    /* font-family: "Open Sans", sans-serif; */
    font-family: 'Proxima Nova', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background-color: #ffffff;
}

.mt-6 {
    margin-top: 60px;
}

.mb-6 {
    margin-bottom: 60px;
}

/* Font Family */
/* Proxima Nova Black */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../../../resources/fonts/proximanova-black.otf') format('opentype');
    /* src: url('fonts/proximanova-black.otf') format('opentype'); */
    font-weight: 900;
    font-style: normal;
}

/* Proxima Nova Bold */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../../../resources/fonts/proximanova-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Proxima Nova Condensed ExtraBold */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../../../resources/fonts/proximanovacond-extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

/* Proxima Nova Condensed Light */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../../../resources/fonts/proximanovacond-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Proxima Nova Condensed Medium */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../../../resources/fonts/proximanovacond-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Proxima Nova Condensed Regular */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../../../resources/fonts/proximanovacond-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Proxima Nova Condensed SemiBold */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../../../resources/fonts/proximanovacond-semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

/* color */
:root {
    --primary: #E00000;
    --secondary-theme: #797979;
    --secondary: #0f5dc4;
    --white: #ffffff;
    --light: lightgray;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.section-title {
    line-height: 1.235;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 24px;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 16px;
    }
}

.pro-card {
    border-color: #e000005c;
    padding: 8px;
    height: 100%;
    transition: 0.3s all ease-in-out;
}

.pro-card:hover {
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 24px 0px;
}

.pro-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    min-height: 150px;
}

.pro-card .card-body {
    padding: 0;
    margin-top: 15px;
}

.pro-card .pro-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.pro-card .card-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.43;
    margin-bottom: 5px;
}

.pro-card .pro-title {
    color: #131414;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pro-card .pro-features {
    color: #2b2d2e;
}

.pro-card .pro-details {
    font-weight: 400;
    color: #878787;
    margin-bottom: 0;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 991px) {
    .pro-card img {
        height: 180px;
    }

    .pro-card:hover {
        box-shadow: none;
    }

    .pro-card.verified_item {
        padding: 10px;
    }
}

@media (max-width: 767px) {
    .pro-card img {
        height: 150px;
    }
}

/* Theme Color */
.theme-color {
    color: var(--primary);
}

/* Theme Btn */
.btn-primary,
.theme-btn {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover,
.theme-btn:hover {
    color: #fff;
    background-color: #f23d3d;
    border-color: #f23d3d;
}

.dropdown-item:focus {
    color: #fff !important;
    background-color: var(--secondary);
}

/* =============================  Header  ================================= */
.header-main {
    background-color: #fff;
    border-bottom: 1px solid #eef0f1;
    position: relative;
    z-index: 999;
}

.header-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header-main .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
}

.header-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #2b2d2e;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.header-backdrop.show {
    visibility: visible;
    opacity: 0.6;
}

.header-nav-item {
    padding: 0 18px;
    font-size: 14px;
    font-weight: 600;
    color: #2b2d2e;
    height: 52px;
    display: flex;
    align-items: center;
    position: relative;
}

.header-nav-item .new {
    padding: 4px 8px;
    background: var(--primary);
    text-align: center;
    margin: 0 6px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 14px;
    color: #FFFFFF;
    font-weight: 600;
}

.header-nav-item:hover {
    color: inherit;
    text-decoration: none;
}

.header-nav-item::after {
    content: '';
    height: 0;
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    background-color: #000;
    transition: height .1s ease-out;
}

.header-nav-item:hover::after {
    height: 6px;
}

.header-user-action {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.header-action-icon {
    margin-top: 10px;
    font-size: 18px;
    color: #666b72;
    text-align: center;
}

.header-action-icon img {
    width: 20px;
    height: 20px;
}

.header-action-text {
    font-size: 14px;
    line-height: 20px;
    color: #666b72;
    font-weight: 400;
    display: none;
}

.header-login-link {
    color: #2b2d2e;
    font-size: 14px;
    padding: 0 13px;
    white-space: nowrap;
}

.header-post-ad-btn {
    color: #fff;
    font-weight: 600;
    padding: 0 20px;
    font-size: 14px;
    border-radius: 6px;
    border-color: var(--primary);
    background-color: var(--primary);
    white-space: nowrap;
}

.header-post-ad-btn:hover {
    color: #fff;
    border-color: #f23d3d;
    background-color: #f23d3d;
}

.header-main .header-action-item .dropdown .dropdown-toggle {
    color: #666b72;
}

.header-main .header-action-item .dropdown .dropdown-toggle::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
}

.header-main .header-action-item .dropdown .dropdown-item {
    transition: all 0.3s ease-in-out;
}

.header-main .header-action-item .dropdown .dropdown-item:hover {
    color: var(--primary);
}

.header-main .header-action-item .dropdown .dropdown-item.theme-btn:hover {
    color: #ffffff;
}

/* Dropdown styles */
.header-dropdown {
    position: absolute;
    display: none;
    top: 100%;
    box-shadow: 0 16px 16px 0 rgba(0,0,0,.04);
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    background: #fff;
    width: 250px;
    z-index: 1000;
    left: 0;
    padding-bottom: 10px;
    border-bottom-right-radius: 0;
}

.header-nav-item:hover .header-dropdown {
    display: block;
}

.header-dropdown-item {
    padding: 0;
    font-size: 14px;
    color: #2b2d2e;
    width: 100%;
}

.header-dropdown-item a {
    padding: 6px 12px 6px 32px;
}

.header-dropdown-item:hover {
    color: var(--secondary);
    background: #f6f7f8;
    font-weight: normal;
    text-decoration: none;
}

/* Mega menu styles */
.header-megamenu {
    position: absolute;
    left: 100%;
    top: 0;
    padding: 16px;
    background: #f6f7f8;
    width: 378px;
    /* height: 100%; */
    min-height: 100%;
    border-left: 1px #eef0f1 solid;
    display: none;
}

.header-dropdown-item.active.expanded .header-megamenu,
.header-dropdown-item:hover .header-megamenu {
    display: block !important;
}

.header-dropdown-item.expanded {
    background-color: #f6f7f8;
}

.header-dropdown-item > a {
    color: #2B2D2E;
    font-weight: 300;
    width: 100%;
    display: block;
    transition: all 0.3s ease-in-out;
}

.header-dropdown-title:hover {
    color: var(--secondary) !important;
}

.header-dropdown-item.expanded > a {
    color: #2B2D2E;
    font-weight: 600;
}

.header-dropdown-item.expanded > a:hover {
    font-weight: 600;
}

.header-megamenu-section {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #eef0f1;
}

.header-megamenu-title {
    font-size: 14px;
    font-weight: 700;
    color: #2b2d2e;
}

.header-megamenu-viewall {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.header-megamenu-viewall:hover {
    color: #2b2d2e;
}

.header-megamenu-links {
    padding: 0;
    list-style: none;
}

.header-megamenu-link-item {
    font-size: 14px;
    font-weight: 300;
    color: #626465;
    padding-bottom: 8px;
}

.header-megamenu-link {
    color: #424242;
    text-decoration: none;
    display: block;
    width: 100%;
}

.header-megamenu-link:hover {
    color: #1270ec;
}

.header-dropdown,
.header-megamenu {
    height: min-content;
    min-height: 250px;
    max-height: 80vh;
}

.header-megamenu {
    min-height: -webkit-fill-available;
}

.header-category-item .header-dropdown,
.header-category-item.dropdown-end .header-dropdown {
    border-radius: 0 0 10px 10px;
}

.megamenu-available .header-category-item .header-dropdown {
    border-bottom-right-radius: 0 !important;
}

.megamenu-available .header-category-item .header-megamenu {
    border-bottom-right-radius: 10px !important;
}

.megamenu-available .header-category-item.dropdown-end .header-dropdown {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 10px !important;
}

.megamenu-available .header-category-item.dropdown-end .header-megamenu {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 0 !important;
}

/* Mobile menu styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #2b2d2e;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    margin-top: -5px;
}

.offcanvas-header {
    border-bottom: 1px solid #eef0f1;
}

.offcanvas-body {
    padding: 0;
}

.mobile-nav-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eef0f1;
    font-weight: 600;
    color: #2b2d2e;
    display: block;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}

.mobile-nav-item .new {
    padding: 4px 8px;
    background: var(--primary);
    text-align: center;
    margin: 0 6px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 14px;
    color: #FFFFFF;
    font-weight: 600;
}

.mobile-dropdown-toggle {
    position: absolute;
    right: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eef0f1;
    border-radius: 4px;
}

.mobile-categories-title {
    border-bottom: 1px solid var(--primary);
}

.mobile-nav-container .mobile-nav-item > .mobile-dropdown-toggle {
    color: #ffffff;
    background: var(--primary);
}

.mobile-dropdown-menu {
    padding-left: 20px;
    display: none;
}

.mobile-dropdown-item {
    padding: 10px 20px;
    border-bottom: 1px solid #eef0f1;
    font-weight: 400;
    color: #2b2d2e;
    display: block;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}

.mobile-megamenu {
    padding-left: 20px;
    display: none;
    max-width: 94%;
}

.mobile-megamenu-title {
    font-weight: 600;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-megamenu-links {
    padding: 0;
    list-style: none;
}

.mobile-megamenu-link {
    padding: 8px 0;
    display: block;
    color: #626465;
    text-decoration: none;
}

@media (min-width: 768px) {
    .header-action-text {
        display: block;
    }
}

@media (min-width: 992px) {
    .header-post-ad-btn {
        padding: 0 25px;
    }

    .desktop-menu {
        display: block !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-user-action {
        gap: 15px;
    }

    .header-login-link {
        padding: 0;
        color: #666b72;
    }

    .header-action-text {
        display: none;
    }

    .header-post-ad-btn svg {
        transform: scale(0.8);
    }
}

@media (max-width: 767px) {
    .header-logo img {
        width: 60px;
        height: auto;
        object-fit: contain;
    }

    .header-main .main-nav {
        height: 70px;
        align-items: center;
        display: flex;
    }
}

@media (max-width: 991px) {
    .header-main {
        height: 60px;
        display: flex;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding-top: 8px;
        box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    }

    .header-main .navigation-btn {
        color: #b6b8b9;
    }

    .header-main .navigation-btn:nth-child(3) .icon {
        background-color: var(--primary);
        padding: 5px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 20px;
        width: 20px;
    }

    .header-main .navigation-btn:nth-child(3) .icon svg {
        stroke: #ffffff;
        width: 15px !important;
        height: 15px !important;
    }

    .header-main .navigation-btn svg {
        stroke: #b6b8b9;
        margin: 0 !important;
    }

    .header-main .navigation-btn span {
        font-size: 14px;
        margin-top: 4px;
        display: inline-block;
    }

    .mobile-profile-info .item {
        padding: 15px;
        border-radius: 10px;
        box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    }

    .mobile-profile-info .profile-img {
        height: 100px;
        width: 100px;
        object-fit: cover;
    }

    .mobile-profile-info .rounded-btn {
        color: #46494b;
    }
    .mobile-profile-info

    .logout-btn {
        color: #46494b;
    }
}

@media (max-width: 767px) {
    .mobile-profile-info .profile-img {
        height: 70px;
        width: 70px;
        object-fit: cover;
    }

    .header-main .navigation-btn span {
        font-size: 12px;
        margin-top: 2px;
    }

    .offcanvas {
        max-width: 80%;
    }
}

/* =============================  Banner  ================================= */
.search-hero .hero-content {
    background-size: cover;
    min-height: 257px;
    border-radius: 6px;
    background-position: center;
}

.hero-content h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.334;
    color: white;
    text-shadow: 0 2px 4px rgb(0 0 0 / 35%);
    font-size: 24px;
}

.hero-content .search-tab-content {
    backdrop-filter: blur(2px);
    background-color: #14131380;
}

.hero-content .search-tab-content .input-group i {
    position: absolute;
    right: 16px;
    color: #cdcdcd;
    font-size: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-content .search-tab-content .tab-content .btn {
    color: #ffffff;
    background-color: var(--primary);
}

.hero-content  .search-tab-content .nav-pills .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 4px 15px;
    font-size: 14px;
}

.hero-content  .search-tab-content .nav-pills .nav-link.active {
    background-color: var(--primary);
}

.mobile-hero-content .logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.mobile-hero-content .input-group input {
    border-color: #b2b2b2;
    padding-left: 50px !important;
}

.mobile-hero-content .input-group .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    background-color: #ffffff;
    z-index: 9;
}

.mobile-hero-content .hero-icon-slider-container {
    border: 0;
    left: 5px;
    z-index: 9;
    width: 40px;
    height: 43px;
    overflow: hidden;
    position: absolute;
    background-color: transparent;
}

.mobile-hero-content .hero-icon-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.mobile-hero-content .hero-icon-slider .hero-icon {
    display: block;
    height: 43px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-hero-content .hero-icon-slider .hero-icon img {
    max-height: 24px;
    max-width: 24px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .hero-content {
        padding: 20px 0;
    }

    .hero-content .nav-pills > .nav-item {
        width: 50%;
        margin-bottom: 5px;
    }

    .hero-content .nav-pills > .nav-item > .nav-link {
        width: 100%;
    }
}

/* .banner_sec {
    background: #3a60ac;
    padding: 70px 0px;
}

.location_modal_btn button {
    background: #375aa0;
    font-weight: 600;
    font-size: 15px;
}

.banner_search .form-control {
    font-size: 15px;
    font-weight: 500;
    background: #2f4f8f;
    border: 2px solid #2f4f8f !important;
    border-right: none !important;
}

.banner_search .form-control::placeholder {
    color: var(--light);
}

.banner_search .form-control, select {
    color: var(--white);
}

.banner_search .input-group-text {
    color: var(--white);
    font-weight: bold;
    background-color: #2f4f8f !important;
    border-left: none !important;
    border-width: 2px;
    border-color: #2f4f8f !important;
} */

/* ===================== Highlight Cards ==================== */
.highlight-cards img {
    height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.highlight-cards .card {
    position: relative;
    background-color: rgb(238, 246, 252);
}

.highlight-cards .new {
    padding: 4px 8px;
    background: var(--primary);
    text-align: center;
    margin: 0 6px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 14px;
    color: #FFFFFF;
    font-weight: 600;
}

@media (max-width: 991px) {
    .highlight-cards .mobile-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .highlight-cards .mobile-cards > div {
        flex: 0 0 80%; /* Show one card at a time */
        scroll-snap-align: start;
        margin-right: 10px;
    }

    .highlight-cards .card-indicators {
        text-align:center;
        margin-top:10px;
    }

    .highlight-cards .card-indicators .dot {
        display:inline-block;
        width:10px;
        height:10px;
        margin:0 4px;
        background:#ccc;
        border-radius:50%;
        cursor:pointer;
        transition:background 0.3s;
    }

    .highlight-cards .card-indicators .dot.active {
        background:#333;
    }
}


@media (max-width: 991px) {
    .highlight-cards img {
        max-width: 100px;
        height: auto;
    }

    .highlight-cards .btn {
        font-size: 14px;
        font-weight: bold !important;
    }

    .highlight-cards .new {
        position: absolute;
        top: -10px;
        left: 15px;
    }
}

/* ============================= App Download ================================= */
.download-app {
    background: #e200000f;
    padding: 8px 0;
    margin-bottom: 0 !important;
    overflow: hidden;

    background: linear-gradient(135deg, #00000000 0%, #f7f7f7 100%);
}

.download-app h2 {
    color: #2B2D2E;
}

.download-app .app-image {
    right: 105%;
    bottom: -21px;
}

@media (min-width: 1200px) {
    .download-app .brand-img {
        height: 100% !important;
        width: 156px !important;
        max-width: 156px !important;
        object-fit: contain !important;
    }
}

@media (max-width: 991px) {
    .download-app img {
        max-width: 120px;
    }
}

/* My Searches - Start */
.search-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.search-card-img {
    height: 180px;
    min-height: 180px;
    object-fit: cover;
    width: 100%;
}

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

.search-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.search-card-category {
    display: inline-block;
    background: var(--primary);
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.search-card-date {
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}

/* Dropdown */
.header-action-item .sdropdownitem {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    width: 250px;
}

.header-action-item .dropdown-item img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 10px;
}

.header-action-item .dropdown-item .title {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease-in-out;
}

.header-action-item .dropdown-item:hover .title {
    color: var(--primary);
}

.header-action-item .dropdown-menu {
    padding: 0;
}

.header-action-item .view-all-btn {
    display: block;
    text-align: center;
    padding: 8px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.header-action-item .view-all-btn:hover {
    background-color: #f8f9fa;
}

.header-action-item .dropdown .dropdown-toggle::after {
    display: none;
}
/* My Searches - End */

/* Favorites - Start */
.favorite-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
    position: relative;
}

.favorite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.favorite-img {
    height: 180px;
    min-height: 180px;
    object-fit: cover;
    width: 100%;
}

.favorite-body {
    padding: 15px;
}

.favorite-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.favorite-category {
    display: inline-block;
    background: #f1f1f1;
    color: #666;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.favorite-date {
    color: #888;
    font-size: 12px;
}

.favorite-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.favorite-actions .btn {
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #dc3545;
    border: none;
}

.favorite-actions .btn:hover {
    background: #dc3545;
    color: white;
}

.no-favorites {
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 10px;
}

.no-favorites-icon {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 20px;
}
/* Favorites - End */

/* ============================= Populer Category - Start ================================= */
.populer-categories .title img {
    width: 20px;
    height: 20px;
}

.populer-categories .title {
    margin-bottom: 15px !important;
}

.populer-categories .title span {
    font-size: 15px;
}

.populer-categories ul li {
    margin-bottom: 5px;
}

.populer-categories ul li a {
    font-weight: 500;
    color: #000000;
    transition: 0.3s all ease-in-out;
}

.populer-categories ul li a:hover,
.populer-categories ul li a:hover.link-btn {
    color: #1270ec;
}

.populer-categories ul li a.link-btn,
.populer-categories ul li a.link-btn svg {
    color: var(--primary);
}

.populer-categories ul li a.link-btn svg {
    position: relative;
    top: -5px;
    right: 0;
    transition: 0.3s all ease-in-out;
}

.populer-categories ul li a:hover.link-btn svg {
    right: -5px;
    color: #1270ec;
}

.populer-categories ul li a.link-btn span {
    max-width: 85%;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-right: 5px;
}

@media (min-width: 992px) {
    .populer-categories ul li:last-child {
        position: relative;
    }
}

@media (max-width: 991px) {
    .populer-categories .title {
        flex-direction: column;
    }

    .populer-categories ul li {
        display: none;
    }

    .populer-categories ul li:last-child {
        display: block;
    }

    .populer-categories ul li:last-child a span,
    .populer-categories ul li:last-child a svg {
        display: none;
    }

    .populer-categories .title img {
        width: 25px;
        height: 25px;
    }

    .populer-categories .mobile-cols .title {
        background: #eef6fc;
        padding: 12px 10px 3px 10px;
        border-radius: 6px;
        height: 100%;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .populer-categories .mobile-cols .title span {
        font-size: 12px !important;
        font-weight: 400;
    }
}
/* ============================= Populer Category - End ================================= */

/* ============================= Product Card Overflow Scroll - Start ================================= */
@media (max-width: 991px) {
    .mobile-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        align-items: flex-start;
        padding: 1px;
        flex-wrap: nowrap;
    }

    .mobile-cards::-webkit-scrollbar {
        display: none;
    }

    .mobile-cards > div {
        width: 80%;
        white-space: nowrap;
    }

    .mobile-cards > div:first-child .pro-card {
        padding-left: 8px;
    }

    .pro-card {
        flex: 0 0 auto;
        width: 100%;
        scroll-snap-align: start;
    }

    .more-btn-card .btn-content {
        text-align: center;
        padding: 1rem;
    }

    .highlight-cards .mobile-cards > div {
        width: 100%;
        flex: 0 0 auto;
        scroll-snap-align: start;
        white-space: normal;
    }

    .highlight-cards .mobile-cards > div:nth-child(2) .card > div {
        flex-direction: row !important;
    }
}
/* ============================= Product Card Overflow Scroll - End ================================= */

/* =========== View All Btn - Start ============*/
.highlight-cards .mobile-cards div:last-child {
    display: block !important;
}

@media (min-width: 992px) {
    .mobile-cards > div:last-child {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .mobile-cards > div:last-child {
        height: -webkit-fill-available;
    }

    .mobile-cards > div:last-child .pro-card {
        height: 100%;
        background-color: #efefef;
    }
}
/* =========== View All Btn - End =========== */

/* =============================  Category  ================================= */

.section_heading .title {
    font-size: 18px;
    margin: 0;
    color: #1c1c1c;
    font-weight: 500;
}

.section_heading .title span {
    color: var(--primary);
    font-weight: 700;
}

.category_icon  {
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.category_item:hover .category_icon  {
    box-shadow: 0 2px 6px rgba(0, 0, 0, .5) !important;
}


.category_item .category_name {
    font-size: 14px;
    color: #353434;
}

.category_item .category_name.no-ads, .count_items.no-ads {
    color: #9e9e9ebf !important;
}
.category_item .count_items {
    font-size: 13px;
    color: #6c6c6cde;
}

.category_listings .browse_list a {
    font-size: 14px;
    color: #737373;
    display: inline-block;
    transition: all 0.3s ease;
    vertical-align: baseline;
    padding-right: 14px;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    font-weight: 600;
}

.category_listings .browse_list a::before {
    position: absolute;
    content: "|";
    top: 0;
    right: 0;
}

.category_listings .browse_list a:last-child::before {
    content: "";
}

.category_listings .browse_list a:hover {
    color: var(--primary);
}


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

.member_user p {
    font-size: 16px;
    color: #444;
}


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

.footer_section {
    background: #f7f7f7;
    border-top: 1px solid #e3e3e3;
}

.widget-heading h3 {
    font-size: 16px;
    color: #1c1c1c;
    font-weight: 700;
}

.footer-widget .links a {
    color: #ffffff;
    font-size: 15px;
    display: inline-block;
    padding: 5px 0px;
    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;
}

.footer-widget .links a:hover {
    color: #dfdfdf;
    font-weight: 500;
}

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

.social_media ul li a {
    color: #222;
    font-size: 18px;
    margin: 6px;
}

.custom_modal .btn-close {
    position: absolute;
    top: 15px;
    right: 20px;
    opacity: 1;
    font-size: 12px;
    box-shadow: none !important;
    z-index: 1;
}

#locationModal ::-webkit-scrollbar-track, #categoryModal ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

#locationModal ::-webkit-scrollbar, #categoryModal ::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

#locationModal ::-webkit-scrollbar-thumb, #categoryModal ::-webkit-scrollbar-thumb {
    background-color: #727272;
}

.custom_modal .heading h4 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.custom_modal .heading h6 {
    font-size: 14px;
    color: #7b7b7b;
    font-weight: 400;
}

.custom_modal .city_list p {
    font-size: 14px;
    color: #797979;
}

.custom_modal .modal-body {
    max-height: 800px;
    overflow-y: auto;
}

.modal-content {
    border-radius: 4px;
    border: none !important;
}

.modal-header {
    background: #f5f5f5;
    border-color: #ebebeb;
}

.modal-title {
    font-size: 16px !important;
    font-weight: 500;
    color: #111111;
}

/* =============================  Footer  ================================= */
.listings_wrap .listing_item {
    border-bottom: 1px solid #dadada;
    padding: 8px;
    transition: all 0.1s ease;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
}

.listings_wrap .listing_item:hover {
    box-shadow: 0 0 8px 0 #d4ded9;
}

.listing_img img {
    width: 165px;
    height: 110px;
}

.verified_item {
    border: 1px solid #ffcb5f !important;
    background-color: rgb(255 203 95 / 22%);
    border-radius: 6px;
    margin-bottom: 5px;
}

.listings_wrap .listing_name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    color: #222;
    font-weight: 700;
}

.listing_heading button {
    font-size: 16px;
    font-weight: 600;
    color: #1c1c1c;
}

.listing_content .car_info {
    font-size: 15px;
    color: #575757;
}

.listing_content .listing_info {
    font-size: 15px;
    color: #575757;
    font-weight: 500;
}

.listing_content .listing_price {
    color: #455ba8;
    font-weight: 800;
}

.listing_content .date {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.listing_content .listing_tag .member {
    color: #FF9800;
    font-weight: 600;
    font-size: 13px;
}

.listing_content .listing_tag .member i {
    color: #FF9800;
}

.listing_content .listing_tag .verified {
    color: #54ACC8;
    font-weight: 600;
    font-size: 13px;
}

.listing_heading button i {
    color: var(--primary);
}

.listing_sidebar label {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
}

.listing_sidebar .form-control {
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
}

.listing_sidebar .form-check-label {
    font-weight: 500;
}

.listing_sidebar .accordion-header button {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
}

.listing_sidebar .accordion-body h6, .location_list .accordion-body h6 {
    font-size: 14px;
    color: #777;
}

.listing_sidebar .filter-card {
    /* background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px; */
}

.listing_sidebar .filter-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.listing_sidebar .form-check {
    margin-bottom: 8px;
}

.listing_sidebar .price-range {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.listing_sidebar .price-range input {
    width: 100%;
    padding: 35px 12px 17px 12px !important;
    border-radius: 5px;
    border: 1px solid #ccc;
    height: 48px !important;
    min-height: 48px !important;
}

.listing_sidebar .price-range label {
    font-size: 14px;
    font-weight: 300;
}

.listing_sidebar .filter-card .form-check-input:focus {
    box-shadow: none;
}

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

.listing_sidebar .filter-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.listing_sidebar .filter-actions .btn {
    text-decoration: none;
    font-size: 12px;
}

.listing_sidebar .filter-actions .btn:last-child {
    color: var(--primary);
}

.category_list ul li a, .location_list ul li a {
    font-size: 14px;
    color: #2B2D2E;
    font-weight: 500;
}

.category_list ul li a:hover, .location_list ul li a:hover {
    color: var(--secondary);
}

.category_list ul li a span, .location_list ul li a span {
    color: #656565;
}

.filter_offcanvas .offcanvas {
    width: 320px !important;
}

.listing_pagination .page-link {
    background: transparent;
    border: none;
    font-size: 15px;
    color: #111;
    font-weight: 500;
    padding: 0px 12px;
    box-shadow: none !important;
}

.listing_pagination .page-link:hover {
    color: var(--primary);
}

.listing_header h1 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.listing_header p {
    font-size: 14px;
    color: #444;
}

.carousel_listings .carousel-caption {
    left: 8% !important;
}

.carousel_listings .carousel-item:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, hsla(0, 0%, 80.8%, 0) -2%, rgb(0 0 0 / 61%) 80%);
}

.carousel_listings .carousel-control-next, .carousel_listings .carousel-control-prev {
    width: 40px;
    height: 40px;
    top: 50%;
    background: #fff;
    opacity: 1;
    color: var(--primary) !important;
    font-size: 16px;
    border-radius: 0px 12px 12px 0px;
}

.carousel_listings .carousel-control-next {
    border-radius: 12px 0px 0px 12px;
}


.custom_modal .category_wrapper .nav-link, .custom_modal .cities_wrapper .nav-link {
    color: #2B2D2E !important;
    font-size: 15px;
    display: block;
    border-bottom: 1px solid #e7edee;
    text-align: left;
    padding: 10px 0px !important;
    position: relative;
}

.custom_modal .category_wrapper .nav-link:before, .custom_modal .cities_wrapper .nav-link:before {
    position: absolute;
    content: "\f105";
    top: 10px;
    right: 0;
    font-family: 'FontAwesome';
    color: #a19d9d;
}

.custom_modal .category_wrapper .nav-link:hover, .custom_modal .cities_wrapper:hover {
    color: #1270EC !important;
}

.custom_modal .category_wrapper .nav-link img {
    width: 35px;
}

.custom_modal .subcategory_items ul li, .custom_modal .areas_items ul li {
    border-bottom: 1px solid #e7edee;
    padding: 8px 0px !important;
}

.custom_modal .subcategory_items ul li a, .custom_modal .areas_items ul li a {
    color:#2B2D2E!important;

    font-size: 15px;
    display: block;
    text-align: left;
    position: relative;
}

.custom_modal .subcategory_items ul li:first-child, .custom_modal .areas_items ul li:first-child {
    padding-top: 0 !important;
}

.custom_modal .subcategory_items ul li a:hover, .custom_modal .areas_items ul li a:hover {
    color: #1270EC !important;
}

.custom_modal .cities_wrapper .nav-link:hover {
    color: #1270EC !important;
}


.custom_modal .city_list ul li {
    border-bottom: 1px solid #e7edee;
    padding: 8px 0px !important;
}

.custom_modal .city_list ul li a {
    color:#2B2D2E !important;
    font-size: 15px;
    display: block;
    text-align: left;
    position: relative;
}

.custom_modal .city_list ul li:first-child {
    padding-top: 0 !important;
}

.custom_modal .city_list ul li a:hover {
    color: #111 !important;
}


/* =============================  Listings Details  ================================= */
.seller_name h5 {
    font-size: 15px;
    color: #212121;
}

.seller_name a {
    font-size: 13px;
    font-weight: 500;
}

.safety_tips_box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.safety_tips_box p {
    font-size: 15px;
    text-align: justify;
    color: #444;
    margin: 0;
}

.form-control {
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: var(--light);
}

.form-label {
    font-weight: 500;
    color: #000;
    font-size: 14px;
}

.report_modal .modal-body p {
    font-size: 14px;
    font-weight: 500;
    color: #494949;
}


.listing_gallery .swiper {
    width: 100%;
    height: 100%;
}

.listing_gallery .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.listing_gallery .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.listing_gallery .swiper-slide {
    background-size: cover;
    background-position: center;
}

.listing_gallery .swiperGallery {
    height: 80%;
    width: 100%;
    z-index: 0;
}

.listing_gallery .swiperThumbs {
    height: 20%;
    z-index: 0;
    box-sizing: border-box;
    padding: 10px 0;
}

.listing_gallery .swiperThumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.listing_gallery .swiperThumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.listing_gallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.listing_gallery .swiper-button-next, .listing_gallery .swiper-button-prev {
    width: 40px;
    color: #ffffff;
    background: var(--primary);
    height: 40px;
    border-radius: 6px;
}

.listing_gallery .swiper-button-next:after, .listing_gallery .swiper-button-prev:after {
    font-size: 18px;
}

.phone_number {
    cursor: pointer;
}

.listings_details .singel_listing_name h1 {
    font-size: 20px;
    font-weight: 700;
}

.listings_details .posted_date {
    font-size: 14px;
    color: #444;
}

.listings_details .price {
    font-size: 15px;
    color: var(--primary);
    font-weight: 700;
}

.listings_details .short_info ul li {
    /* display: inline-block; */
    width: 48%;
    padding: 2px 0px;
    color: #555;
    font-size: 15px;
}

.listings_details .features_list h3, .listings_details .description h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
}

.listings_details .freatures {
    font-size: 14px;
    color: #616161;
}

.listings_details .description .desc {
    font-size: 15px;
    color: #616161;
}

.related_listings .carousel-control-next, .related_listings .carousel-control-prev {
    opacity: 1;
    background: #535353;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    top: -42px;
}

.related_listings .carousel-control-prev {
    right: 39px !important;
    left: auto;
}

.details_sidebar .contact-card, .details_sidebar .seller-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.details_sidebar .contact-card h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.details_sidebar .form-control {
    border-radius: 8px;
    padding: 10px;
    font-size: 0.95rem;
}

.details_sidebar .btn-callback {
    background: var(--primary);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    cursor: pointer;
}

.details_sidebar .seller-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.details_sidebar .seller-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d9f0e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #555;
}

.details_sidebar .seller-details h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}

.details_sidebar .verified-badge {
    display: inline-block;
    background: #e7f3ff;
    color: #007bff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 6px;
    margin-top: 2px;
}

.details_sidebar .seller-meta {
    font-size: 12px;
    color: #6c757d;
}

.details_sidebar .btn-green {
    background: var(--primary);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
}

.details_sidebar .btn-outline-green {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: bold;
    border-radius: 8px;
    padding: 8px;
    width: 100%;
    background: #fff;
}

.details_sidebar .form-section {
    display: none; /* Initially hidden */
    overflow: hidden;
}

.details_sidebar .label-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details_sidebar .close-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 0.9rem;
}

.details_sidebar .error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

/* Ratings */
.details_sidebar .rating-section {
    margin-top: 15px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.details_sidebar .stars i {
    font-size: 14px;
    margin-right: 0;
}

.details_sidebar .stars .stars-count span {
    display: none;
}

.details_sidebar .stars.one-stars .stars-count span:nth-child(1) {
    display: inline-block;
}

.details_sidebar .stars.one-stars i {
    color: #FF0000; /* Red */
}

.details_sidebar .stars.one-stars i:nth-child(2),
.details_sidebar .stars.one-stars i:nth-child(3),
.details_sidebar .stars.one-stars i:nth-child(4),
.details_sidebar .stars.one-stars i:nth-child(5) {
    color: #686868 !important;
    display: none;
}

.details_sidebar .stars.two-stars .stars-count span:nth-child(2) {
    display: inline-block;
}

.details_sidebar .stars.two-stars i {
    color: #FFA500; /* Yellow */
}

.details_sidebar .stars.two-stars i:nth-child(3),
.details_sidebar .stars.two-stars i:nth-child(4),
.details_sidebar .stars.two-stars i:nth-child(5) {
    color: #686868 !important;
    display: none;
}

.details_sidebar .stars.three-stars .stars-count span:nth-child(3) {
    display: inline-block;
}

.details_sidebar .stars.three-stars i {
    color: #0000FF; /* Blue */
}

.details_sidebar .stars.three-stars i:nth-child(4),
.details_sidebar .stars.three-stars i:nth-child(5) {
    color: #686868 !important;
    display: none;
}

.details_sidebar .stars.four-stars .stars-count span:nth-child(4) {
    display: inline-block;
}

.details_sidebar .stars.four-stars i {
    color: #008000 !important; /* Green */
}

.details_sidebar .stars.four-stars i:nth-child(5) {
    color: #686868 !important;
    display: none;
}

.details_sidebar .stars.five-stars .stars-count span:nth-child(5) {
    display: inline-block;
}

.details_sidebar .stars.five-stars i {
    color: #008000; /* Green */
}

.details_sidebar .ghana-flag {
    top: 2px;
    width: 20px;
    height: 15px;
    margin-left: 2px;
    position: relative;
    border-radius: 2px;
    display: inline-block;
    background: url('https://upload.wikimedia.org/wikipedia/commons/1/19/Flag_of_Ghana.svg') no-repeat center/cover;
}

.details_sidebar .stars .rating-text {
    font-size: 0.85rem;
    color: #555;
    margin-top: 5px;
}

.details_sidebar .stars .rating-text span {
    display: none;
}

.details_sidebar .stars.one-stars .rating-text span:nth-child(1),
.details_sidebar .stars.two-stars .rating-text span:nth-child(2),
.details_sidebar .stars.three-stars .rating-text span:nth-child(3),
.details_sidebar .stars.four-stars .rating-text span:nth-child(4),
.details_sidebar .stars.five-stars .rating-text span:nth-child(5) {
    display: inline-block;
}

/* ===================== Balance Page Design ===================== */
.balance-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px 30px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    margin: -10px 0 20px 0;
}

.balance-info {
    font-size: 14px;
    color: #555;
}

.balance-amount {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.recharge-btn {
    padding: 6px 12px;
    font-size: 14px;
    color: var(--primary);
    border-radius: 5px;
    background: none;
    cursor: pointer;
    border: 1px solid var(--primary);
    transition: all 0.3s ease-in-out;
}

.recharge-btn:hover {
    color: #ffffff;
    background-color: var(--primary);
}

.boost-section {
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

.boost-section a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.boost-section a:hover {
    text-decoration: underline;
}

/* =============================  Similar Listings  ================================= */

.related_listings {
    padding-bottom: 55px;
}

.related_listings .carousel-item {
    min-height: 300px;
}

.related_listings .carousel-indicators {
    bottom: -70px;
}

.related_listings .carousel-indicators button {
    background: #4747474f !important;
    border: none !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50px;
}

.related_listings .carousel-indicators button.active {
    background: #494848 !important;
}

/* =============================  Ad post  ================================= */

.ad_post_sec .title {
    font-size: 18px;
    color: #333;
}

.ad_post_wrap h4 {
    color: #2f3432;
    font-size: 18px;
    font-weight: 600;
}

.image-uploader .upload-text {
    color: var(--primary);
}


.image-uploader {
    border-radius: 4px;
    background: #fff;
}

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

.select2-container--bootstrap-5 .select2-selection--single {
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
    box-shadow: none !important;
    height: auto !important;
}

.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;
}

/* =============================  Login  ================================= */
.login_form {
    max-width: 32rem;
    margin: auto;
}

.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;
}

/* ========================= Registration ====================== */
.seller-type-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.seller-type-tab {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    margin-right: 5px;
    background: #f8f9fa;
}

.seller-type-tab.active {
    background: #fff;
    border-color: #dee2e6;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
    font-weight: bold;
}

.seller-type-content {
    display: none;
}

.seller-type-content.active {
    display: block;
}

/* =============================  Dashboard  ================================= */
.dashboard_section {
    min-height: 530px;
}

.dashboard_sidebar ul li {
    border-bottom: 1px solid #e7edee;
    padding: 10px 8px !important;
    border-radius: 2px;
}

.dashboard_sidebar ul li.active {
    background: #455ba817;
    color: #455ba8 !important;
}

.dashboard_sidebar ul li.active a {
    color: #455ba8;
    font-weight: 600;
}

.dashboard_sidebar ul li a {
    font-size: 15px;
    color: #212529;
    position: relative;
    display: block;
    font-weight: 500;
}

.dashboard_sidebar ul li a:hover {
    color: #1c1c1c;
}

.dashboard_sidebar ul li a:before {
    position: absolute;
    content: "\f105";
    top: 0;
    right: 0;
    font-family: 'FontAwesome';
    color: #999;
}

.dashboard_sidebar ul li:last-child {
    border: 0;
}

.dashboard_section .listing_heading .title {
    font-size: 18px;
    color: #2f2929;
}

.status_tag {
    position: absolute;
    content: "";
    top: 0px;
    left: -8px;
    z-index: 1;
}

.status_tag span {
    background: #31a249;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 2px 2px 2px 0px;
    position: relative;
    color: #fff;
}

.status_tag span:before {
    border-style: solid;
    border-width: 0 7px 7px 0;
    bottom: -7px;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    width: 0;
    border-color: transparent #31a249 transparent transparent;
}

.status_tag.warning span {
    background: #FFC107;
}
.status_tag.primary span {
    background: #07c5ff;
}

.status_tag.info span {
    background: #07c5ff;
}

.status_tag.warning span:before {
    border-color: transparent #FFC107 transparent transparent;
}

.status_tag.info span:before {
    border-color: transparent #07c5ff transparent transparent;
}

.dashboard_wrapper .page_title {
    font-size: 18px;
    color: #222;
}

.dashboard_card .title {
    font-size: 16px;
    font-weight: 600;
    color: #292929;
    margin-bottom: 5px;
}

.dashboard_card .count_num {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.logout-btn {
    font-weight: 600;
}



input[readonly] {
    background-color: #ebebeb !important;
}

.user_membership ul li {
    font-size: 16px;
    color: #4b4a4a;
    font-weight: 500;
    padding: 3px 0px;
}

/* =============================  Membership  ================================= */


.membership_section .pricing-item {
    padding: 50px 40px;
    background: #fafafa;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.membership_section .pricing-header {
    padding: 40px;
    margin: -60px -40px 0;
    background: #E00000;
}


.membership_section .pricing-item ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #413e3e;
    font-size: 15px;
    font-weight: 500;
    padding-left: 15px;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: #E00000;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    border-color : #e00000;
}


.membership_section .pricing-header h3 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 28px;
}

.membership_section .pricing-header h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.membership_section .pricing-header h4 sub {
    font-weight: 400;
}

.pricing-item ul li {
    position: relative;
}

.pricing-item ul li:before {
    position: absolute;
    content: "";
    top: 16px;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 100px;
}


.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #fafafa;
}

.messge_section .scrollable {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.messge_section .img-thumbnail {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 11px 20px;
}

/* =============================  faq  ================================= */

.faq_ans {
    font-size: 16px;
    color: #555;
}

/* =============================  Custom page  ================================= */
.custom_heading {
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

.posting_rule ul li {
    font-size: 16px;
    color: #555;
    padding: 4px 0px;
    list-style: circle;
    margin-left: 20px;
}

.custom_section .desc {
    font-size: 16px !important;
    color: #555;
    /* font-family: "Open Sans", sans-serif !important; */
    line-height: 27px;
}

/* ============================= About  ================================= */

.about_content h1 {
    font-size: 22px;
    font-weight: 600;
    color: #212121;
}

.about_content .desc {
    font-size: 16px;
    color: #333;
    line-height: 24px;
}

/* ============================= Seller Shop  ================================= */

.seller_shop {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.seller_shop .logo {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.seller_shop .logo img {
    width: 60px;
    height: 60px;
    border-radius: 100px;
}

.seller_shop:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, hsla(0, 0%, 80.8%, 0) -2%, rgb(0 0 0 / 61%) 80%);
    height: 92px;
    width: 100%;
    border-radius: 4px;
}

.shop_name {
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    word-wrap: break-word;
    word-break: break-all;
}

.seller_shop_tag .member {
    color: #FF9800;
    font-weight: 600;
    font-size: 13px;
}

.seller_shop_tag .verified {
    color: #54ACC8;
    font-weight: 600;
    font-size: 13px;
}

.member_since {
    font-size: 14px;
    color: #444;
    word-wrap: break-word;
    word-break: break-all;
}


.seller_social_media .icon i {
    font-size: 15px;
    color: #444;
}

.seller_social_media .link a {
    font-size: 14px;
    word-wrap: break-word;
    word-break: break-all;
}

.seller_address span {
    font-size: 14px;
    color: #444;
    word-wrap: break-word;
    word-break: break-all;
}


.input-group-text:focus {
    outline: none !important;
}

























































/* ==========================================================================
     Helper classes
     ========================================================================== */

.hidden,
[hidden] {
    display: none !important;
}

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}


.invisible {
    visibility: hidden;
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

@media print {

    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " ("attr(href) ")";
    }

    abbr[title]::after {
        content: " ("attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* Home Page - Sidebar Category & Sub-category */
.sidebar-category {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    position: relative;
    overflow: visible;
    position: sticky;
    top: 90px;
    border: 1px solid #00000020;
    transition: all 0.3s ease-in-out;
}

/* .sidebar-category:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} */

.show-subcategory .sidebar-category {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.category-header {
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px 8px 0 0;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;

    max-height: 80vh;
    overflow-y: auto;
    overflow-x: visible;

    direction: rtl;  /* scrollbar left side */
    text-align: left;
}

.category-item {
    direction: ltr; /* normal text direction */
}

.category-item:hover .subcategory-menu,
.category-item .subcategory-menu:hover {
    display: block;
}


.category-item {
    border-bottom: 1px solid #eee;
}

.category-link, .subcategory-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.category-link:hover, .subcategory-link:hover {
    background: #f5f5f5;
    color: #007bff;
}

.category-icon, .subcategory-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-text, .subcategory-text {
    flex-grow: 1;
}

.category-name, .subcategory-name {
    font-weight: 500;
    font-size: 14px;
}

.category-count, .subcategory-count {
    font-size: 12px;
    color: #777;
}

.category-arrow, .subcategory-arrow {
    color: #99B2BF;
    transition: transform 0.3s;
}

.subcategory-menu {
    position: absolute;
    left: 100%;
    top: -1px;
    width: 280px;
    background: #fff;
    border-radius: 0 8px 8px 0;
    padding: 0;
    display: none;
    z-index: 1000;
    height: 100%;
    border-radius: 8px;
    border: 1px solid #00000020;
    transition: all 0.3s ease-in-out;

    overflow-y: auto;
}

.category-item:hover .subcategory-menu {
    display: block;
}

.show-subcategory .subcategory-menu {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.subcategory-item {
    border-bottom: 1px solid #eee;
}

/* Subcategory specific styles */
.subcategory-icon i {
    font-size: 14px;
}

.subcategory-name {
    font-size: 13px;
}

.subcategory-count {
    font-size: 11px;
}

@media (max-width: 991px) {
    .card-wise-products .header-title {
        width: 102%;
        left: -5px;
        position: relative;
    }
}

.category-card {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: scale(1.05);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 24px;
    color: #555;
    transition: all 0.3s ease;
}

.category-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
}

.category-card p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Price page */
.membership_section h3.sec-title {
    font-size: 30px;
    color: #081639 !important;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Nav Tabs Styling */
.membership_section .nav-tabs {
    border-bottom: none;
    margin-bottom: 30px;
}

.membership_section .nav-tabs .nav-link {
    background-color: white;
    color: black;
    border: 1px solid #ddd;
    margin: 0 5px;
    padding: 12px 45px;
    border-radius: 50px;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
    font-size: 16px;
    box-shadow: #ec1c29 0 6px 18px -12px;
}

.membership_section .nav-tabs .nav-link:hover {
    box-shadow: none;
}

.membership_section .nav-tabs .nav-link.active {
    background-color: #e00000;
    color: white;
    border-color: #e00000;
}

/* Pricing Table Styling */
.pricingTable {
    color: #081639;
    background: #fff;
    text-align: center;
    padding: 0 0 30px;
    border-radius: 0 100px 50px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    margin: 0 15px;
    position: relative;
    height: 100%;
}

.pricingTable:before {
    content: "";
    background: #081639;
    width: 15px;
    height: calc(100% - 80px);
    border-radius: 10px 0 0 0;
    position: absolute;
    top: 0;
    left: -15px;
}

/* Default color scheme */
.pricingTable .title {
    color: #fff;
    background: #EC1C29;
    font-size: 24px;
    font-weight: 700;
    width: calc(100% + 15px);
    text-transform: uppercase;
    padding: 25px 25px;
    margin: 0 0 10px;
    border-radius: 0 100px 100px 0;
}

.pricingTable .pricing-content li:before {
    color: #EC1C29;
}

.pricingTable .pricingTable-signup a {
    background: #EC1C29;
}

/* Recommended color scheme */
.pricingTable.recommended .title {
    background: #05954F;
}

.pricingTable.recommended .pricing-content li:before {
    color: #05954F;
}

.pricingTable.recommended .pricingTable-signup a {
    background: #05954F;
}

.pricingTable .price-value {
    width: calc(100% - 85px);
    padding: 12px 0 18px 0;
    border-bottom: 3px dashed #0B1E43;
    margin: 0 auto 25px auto;
}

.pricingTable .price-value .currency {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    display: inline-block;
    vertical-align: top;
}

.pricingTable .price-value .amount {
    font-size: 42px;
    font-weight: 800;
    line-height: 50px;
    display: inline-block;
}

.pricingTable .price-value .duration {
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 0 -5px;
    display: inline-block;
    vertical-align: bottom;
}

.pricingTable .pricing-content {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
    display: inline-block;
}

.pricingTable .pricing-content li {
    color: #0B1E43;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 0 0 0 25px;
    margin: 0 0 20px;
    position: relative;
}

.pricingTable .pricing-content li:last-child {
    margin-bottom: 0;
}

.pricingTable .pricing-content li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 free";
    font-size: 15px;
    font-weight: 900;
    position: absolute;
    top: 2px;
    left: 0;
}

.pricingTable .pricing-content li.disable:before {
    content: "\f00d";
    color: #081639;
}

.pricingTable .pricingTable-signup a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    text-transform: uppercase;
    padding: 8px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: all 0.3s ease 0s;
}

.pricingTable .pricingTable-signup a:hover {
    transform: translateY(-2px)
}

.virtual-btn {
    font-size: 14px !important;
    padding: 8px 20px !important;
    background-color: #081639 !important;
}

@media (max-width: 991px) {
    .pricingTable .title {
        font-size: 20px;
    }

    .pricingTable .price-value .amount {
        font-size: 38px;
    }

    .pricingTable .price-value .currency {
        font-size: 16px;
    }

    .pricingTable .pricing-content li {
        font-size: 14px;
        margin: 0 0 16px;
    }

    .membership_section h3.sec-title {
        font-size: 24px;
        margin-bottom: 4px;
    }
}

@media (max-width: 575px) {
    .pricingTable .title {
        font-size: 18x;
        padding: 15px 25px;
    }

    .pricingTable .price-value .amount {
        font-size: 28px;
    }

    .pricingTable .price-value .currency {
        font-size: 12px;
        line-height: 34px;
    }

    .pricingTable .pricingTable-signup a {
        font-size: 14px;
        line-height: 25px;
        padding: 5px 25px;
    }

    .nav-tabs .nav-link {
        padding: 8px 30px;
    }

    .membership_section .nav-tabs .nav-link {
        padding: 5px 25px;
        font-size: 14px;
    }
}

/* Footer Section */
.footer {
    color: white;
    background-color: transparent;
}

.footer .footer-top-shape svg {
    fill: var(--secondary-theme);
    max-width: 100%;
}

.footer .footer-content {
    padding: 50px 0;
    background-color: var(--secondary-theme);
}

.footer h6,
.footer h3 {
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

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

.app-btn {
    display: inline-block;
}

.app-btn img {
    height: auto;
    width: 140px;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #ccc;
}

.footer-widget {
    padding-left: 1.5rem;
}

.footer-widget .links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer hr {
    margin-top: 30px;
}

.flag-icons a {
    display: inline-block;
    margin: 5px;
}

.flag-icons img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ffffff;
    transition: transform 0.2s;
}

.flag-icons a:hover img {
    transform: scale(1.1);
}

@media (max-width: 1000px) {
    .footer .footer-content {
        margin-top: -1%;
    }
}

@media (max-width: 900px) {
    .footer .footer-content {
        margin-top: -3%;
    }
}

@media (max-width: 767px) {
    .footer .footer-content {
        margin-top: -5%;
    }

    .footer {
        margin-top: -50px;
    }
}

@media (max-width: 650px) {
    .footer .footer-content {
        margin-top: -8%;
    }
}

@media (max-width: 530px) {
    .footer .footer-content {
        margin-top: -10%;
    }
}

@media (max-width: 470px) {
    .footer .footer-content {
        margin-top: -15%;
    }
}

@media (max-width: 375px) {
    .footer .footer-content {
        margin-top: -18%;
    }
}

@media (max-width: 330px) {
    .footer .footer-content {
        margin-top: -20%;
    }
}

@media (max-width: 310px) {
    .footer .footer-content {
        margin-top: -23%;
    }
}

@media (max-width: 280px) {
    .footer .footer-content {
        margin-top: -25%;
    }
}
