/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Customize the background color to match your design.
   */

::-moz-selection {
    background: #0072BA;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #0072BA;
    color: #fff;
    text-shadow: none;
}

/*
   * A better looking default horizontal rule
   */

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

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */

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

/*
   * Remove default fieldset styles.
   */

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

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

a {
    text-decoration: none !important;
}

/*
   * Allow only vertical resizing of textareas.
   */

textarea {
    resize: vertical;
}

body {
    font-size: 16px;
    font-weight: 400;
    background-color: #f4f6f9;
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
    color: #1a1a2e;
}

/* color */
:root {
    --bs-primary: #0072BA;
    --bs-primary-hover: #005d96;
    --bs-primary-light: #e6f3ff;
    --bs-accent: #C12228;
    --bs-accent-hover: #8B181C;
    --bs-black: #1a1a2e;
    --bs-white: #ffffff;
    --bs-button-primary: #0072BA;
    --bs-button-primary-hover: #005d96;
    --bs-button-secondary: #1a1a2e;
    --bs-button-secondary-hover: #0072BA;
    --bs-tooltip: #1a1a2e;
    --bs-border-radius: 10px;
    --bs-shadow-sm: 0 2px 12px rgba(0, 114, 186, 0.08);
    --bs-shadow-md: 0 6px 24px rgba(0, 114, 186, 0.14);
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-700: #495057;
}

html { scroll-behavior: smooth; }

.custom-tooltip {
    --bs-tooltip-bg: var(--bs-tooltip);
}

.text-warning {
    color: #ffa500 !important;
}

/* Buttons */
.shine-button {
    color: #fff;
    position: relative;
    padding: 15px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s all ease-in-out;
    letter-spacing: 0.5px;
    min-width: 200px;
    background: linear-gradient(135deg, #0090e0 0%, var(--bs-primary) 100%);
    box-shadow: 0 10px 30px rgba(0, 114, 186, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.shine-button.buy-now {
    background: linear-gradient(135deg, #667eea 0%, #667eea 100%);
}

.shine-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 40px rgba(0, 114, 186, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.shine-button::before {
    content: '';
    position: absolute;
    height: 250%;
    width: 40px;
    top: 0;
    left: -60px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg) translateY(-35%);
    animation: shine 3s ease infinite;
}

@keyframes shine {
    0% {
        left: -80px;
    }

    40% {
        left: calc(100% + 20px);
    }

    100% {
        left: calc(100% + 22px);
    }
}

/* =============================  Top Bar  ================================= */
.top-bar {
    background: #001d3d;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.85);
}

.top-bar a {
    color: rgba(255,255,255,0.85) !important;
    transition: color 0.2s ease;
}

.top-bar a:hover {
    color: #ffffff !important;
}

.top-bar i {
    font-size: 12px;
    opacity: 0.75;
}

/* =============================  Header  ================================= */
.header_section {
    background: #ffffff;
    border-bottom: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
}

.header_section .nav-link {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333344 !important;
    padding: 10px 16px !important;
    border-radius: 0;
    transition: color 0.2s ease;
    position: relative;
    text-transform: none !important;
    letter-spacing: 0;
    background: transparent !important;
}

.header_section .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--bs-primary);
    border-radius: 1px;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.header_section .nav-link:hover,
.header_section .nav-link.active {
    color: var(--bs-primary) !important;
    background: transparent !important;
}

.header_section .nav-link:hover::after,
.header_section .nav-link.active::after {
    width: 60%;
}

.header_section .nav-link i {
    vertical-align: middle;
    color: var(--bs-primary);
}

.navbar .logo {
    height: 48px;
}

.header_section .nav-contact-btn {
    background: var(--bs-primary) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 8px 18px !important;
    font-weight: 600 !important;
    transition: opacity 0.2s ease, transform 0.15s ease !important;
}
.header_section .nav-contact-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    color: #fff !important;
}
.header_section .nav-contact-btn::after { display: none !important; }

.btn-primary {
    border: none !important;
    background: var(--bs-button-primary);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 114, 186, 0.25);
}

.btn-primary:hover {
    background-color: var(--bs-button-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 114, 186, 0.4);
}

.btn-secondary {
    border: none !important;
    background: var(--bs-button-secondary);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background-color: var(--bs-button-secondary-hover);
    transform: translateY(-1px);
}

.btn-primary i {
    vertical-align: middle;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--bs-white) !important;
    background-color: var(--bs-primary-hover) !important;
    border-color: var(--bs-primary-hover) !important;
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
}

.dropdown-toggle::after {
    display: none;
}

.megamenu_dropdwon .dropdown-toggle {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--bs-black) !important;
    padding: 32px 12px 25px 12px !important;
}

.megamenu_dropdwon:hover .dropdown-toggle {
    color: var(--bs-primary-hover) !important;
}


.header_section .megamenu h6 {
    font-size: 19px;
    font-weight: 600;
    color: var(--bs-black);
    margin-bottom: 15px;
}

.header_section .megamenu ul li a {
    font-size: 16px;
    padding: 5px 0px;
    display: block;
    color: #777;
    position: relative;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.header_section .megamenu ul li a:before {
    position: absolute;
    content: "";
    top: 14px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bs-primary-hover);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.header_section .megamenu ul li a:hover:before {
    width: 8px;
}

.header_section .megamenu ul li a:hover {
    color: var(--bs-primary-hover);
}

.header_section .megamenu ul li a:hover {
    padding-left: 10px;
}

.header_section .offcanvas {
    width: 280px;
}

@media (max-width: 991px) {
    .header_section .navbar-toggler-icon {
        width: 2.5em;
        height: 2.5em;
    }

    .header_section .navbar-toggler {
        padding: 0 !important;
    }

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

    .header_section .offcanvas {
        color: #ffffff;
        background-color: #232323;
    }

    .navbar .nav-item .nav-link {
        color: #fff !important;
    }

    .navbar .btn-close {
        top: 7px;
        opacity: 1;
        width: 30px;
        left: -47px;
        height: 30px;
        color: #fff;
        font-size: 18px;
        z-index: 999999;
        border-radius: 0;
        position: absolute;
        transform: scale(1.5);
        background-image: none;
        background-color: var(--bs-primary);
    }

    .banner_section .owl-nav img {
        height: 40px;
    }
}

@media (max-width: 767px) {
    .header_section .navbar-toggler-icon {
        width: 2em;
        height: 2em;
    }

    .banner_section .owl-nav img {
        height: 30px;
    }

    .nav-account .btn svg {
        height: 32px !important;
        width: 32px !important;
    }
}

@media (max-width: 575px) {
    .header_section .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
    }

    .header_section .navbar-brand {
        padding: 0 !important;
    }

    .header_section {
        padding-bottom: 0 !important;
    }

    .navbar .navbar-brand .logo {
        height: 50px !important;
    }

    .navbar .btn-close {
        top: 0;
        left: -38px;
        transform: scale(1);
    }

    .banner_section .owl-nav img {
        height: 25px;
    }

    .header_section .navbar-toggler .navbar-toggler-icon {
        width: 2rem !important;
        height: 2rem !important;
    }

    .nav-account .btn svg {
        height: 28px !important;
        width: 28px !important;
    }
}

@media (min-width: 992px) {
    .navbar .btn-close {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar .nav-item .nav-link {
        font-size: 18px !important;
    }
}

/* =============================  Banner  ================================= */
/* .banner_section {
    min-height: 500px;
} */

/* @media (max-width: 991px) {
    .banner_section {
        min-height: 300px;
    }
} */

/* .banner_section {
    background-image: url('../images/banner/1.jpg');
    position: relative;
} */

.banner_section:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .4;
}

.banner_heading {
    position: relative;
}

.banner_heading h3 {
    color: var(--bs-white);
    font-size: 42px;
    font-weight: 500;
}

.banner_section .banner_form {
    padding: 7px;
    background: #ddd;
    border-radius: 4px;
    position: relative;
    box-shadow: rgb(0 0 0 / 25%) 0px 0.0625em 0.0625em, rgb(0 0 0 / 25%) 0px 0.125em 0.5em, rgb(255 255 255 / 10%) 0px 0px 0px 1px inset;
}

/* .banner_section .form-control {
    height: 55px;
    border: none !important;
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-black);
    border-radius: 3px;
} */

.banner_section .btn-primary {
    padding: 0px 27px;
    font-size: 19px;
}


.featured_item {
    background: #fff;
    display: inline-block;
    width: 100%;
    padding: 0;
    font-size: 16px;
    text-align: left;
    float: none;
    position: relative;
    border-radius: 3px;
    margin: 0 0 8px;
    box-shadow: 1px 1px 4px rgb(0 0 0 / 6%), 0 0 0 1px rgb(0 0 0 / 15%) inset;
}

.featured_item.pt201 .osp-chk {
    background: #f0f3bd;
}

.featured_item label.osp-chk {
    padding: 10px;
    position: absolute;
    left: -1px;
    top: 0;
    margin: 0 !important;
    height: 100%;
    width: 50px;
    background: rgb(212 212 212);
    border: none !important;
    line-height: 100%;
    display: flex;
    align-items: center;
}

.featured_item label {
    display: inline-block;
    width: auto;
    position: relative;
    cursor: pointer;
}

.featured_item .osp-text {
    float: left;
    width: 60%;
    padding: 10px 10px 10px 15px;
    clear: none;
}

.featured_item .osp-select {
    float: left;
    width: 40%;
    padding: 13px 10px 10px;
    clear: none;
}

.featured_item .form-check .form-check-input {
    width: 18px;
    height: 18px;
    outline: none !important;
    box-shadow: none !important;
}

.featured_item .form-check {
    margin-bottom: 6px;
    font-size: 16px;
    margin-left: 5px;
    margin-top: 4px;
}

.featured_item .osp-pb-name {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.featured_item .osp-pb-desc {
    font-size: 16px;
    color: #777;
}


.featured_item .form-control {
    border: 1px solid #d8d8d8;
    box-shadow: rgb(99 99 99 / 3%) 0px 2px 8px 0px !important;
    height: 36px;
    border-radius: 50px;
}

/* =============================  Category  ================================= */
.category_item {
    padding: 8px 12px;
    border-radius: 0px;
    height: 100%;
    vertical-align: middle;
    align-items: center;
    display: flex;
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.category_item:not(.last_item):hover {
    background: var(--bs-primary-light);
    border-left: 3px solid var(--bs-primary);
}

.category_icon .icon {
    font-size: 42px;
    vertical-align: middle;
    color: var(--bs-primary);
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.category_item:hover .category_icon .icon {
    color: var(--bs-primary);
}

.category_info h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    color: var(--bs-black);
    margin-bottom: 5px;
}

.category_item:hover .category_info h3 {
    font-weight: 500;
}

.category_info span {
    font-size: 16px;
    color: #7e7e7e;
    font-weight: 500;
}

/* =============================  Ads  ================================= */

.section_heading h3 {
    font-size: 20px;
    /* font-size: 22px; */
    font-weight: 500;
    color: var(--bs-black);
    letter-spacing: 1px;
    margin: 0;
}

.ads_wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    height: 100%;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    border: 1px solid #edf0f4;
}

.ads_wrapper:hover {
    box-shadow: 0 8px 28px rgba(0, 114, 186, 0.15);
    transform: translateY(-3px);
}

.auction_product {
    position: relative;
    z-index: 5;
}

.auction_product span {
    position: absolute;
    top: 7px;
    cursor: pointer;
    right: 10px;
    z-index: 1;
    background: #ff5722;
    color: var(--bs-white);
    padding: 2px 15px;
    font-weight: 600;
    border-radius: 3px;
}

.ads_img img {
    border-radius: 12px 12px 0 0;
    height: 200px;
    object-fit: cover;
    width: 100%;
}


.ads_wrapper .ads_content {
    padding: 10px;
}

.ads_wrapper .ads_content ul li {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    padding: 2px 0px;
}

.ads_wrapper .ads_content ul li i {
    color: #b1b1b1;
}

.ads_wrapper .ads_content h3 a {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: var(--bs-black);
    display: block;
    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;
}

.ads_wrapper:hover .ads_content h3 a {
    color: var(--bs-primary);
}

.ads_wrapper .ads_bottom {
    border-top: 1px solid #f2f2f2;
    padding: 12px 0px;
}

.price span {
    font-weight: 400;
    color: var(--bs-primary);
    font-size: 16px;
}

.ads_wrapper .form-check-label {
    position: relative;
    cursor: pointer;
    text-align: end;
    float: right;
}

a.btn-sm.btn-info {
    color: #FFFFFF;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

a.btn-sm.btn-info:hover {
    background-color: var(--bs-button-primary-hover);
    border-color: var(--bs-button-primary-hover);
}

.pagination-end .pagination {
    justify-content: end;
}


.ads_wrapper input[type="checkbox"] {
    display: none;
}

.ads_wrapper .form-check.add_favourite {
    display: inline;
}

.ads_wrapper .form-check-label:before {
    position: absolute;
    content: '\f004';
    top: -7px;
    right: 0px;
    color: #000000;
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #f6f6f6;
}

.ads_wrapper input[type="checkbox"]:checked+label::before {
    content: '\f004';
    color: var(--bs-primary);
    font-weight: bold;
    border-color: var(--bs-primary);
}


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

.footer_section {
    background: #0d1b2a;
}

.footer_section .footer_address ul li {
    font-size: 14px;
    padding: 8px 0px;
    color: rgba(255,255,255,0.8);
    position: relative;
    font-weight: 400;
}

.footer_section .footer_address ul li i {
    font-size: 16px;
    color: var(--bs-primary);
    left: 0;
}

.footer_section .footer_heading h3 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-bottom: 12px;
    border-bottom: none;
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
}

.footer_section .footer_heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--bs-primary);
    border-radius: 1px;
}

.footer_section .footer_links ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    padding: 6px 0px;
    display: inline-block;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer_section .footer_links ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer_section .footer_links p {
    font-size: 14px;
    line-height: 24px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.footer_section .form-control {
    height: 48px;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 8px 0 0 8px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

.footer_section .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.footer_section .social-links .btn {
    width: 38px;
    height: 38px;
    display: flex;
    color: rgba(255,255,255,0.8);
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.3s all ease-in-out;
}

.footer_section .social-links .btn:hover {
    color: #ffffff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    transform: translateY(-2px);
}

.footer_section .f-logo {
    height: 55px;
    margin-bottom: 7px;
    border-radius: 10px;
    padding: 0 10px 5px 0;
    filter: brightness(0) invert(1);
}

.copyright_sec {
    background: #070f1a;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.copyright-text p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.copyright-text p a {
    color: var(--bs-primary);
}

@media (max-width: 575px) {
    .footer_section {
        text-align: center;
    }

    /* .footer_address {
        display: flex;
    }

    .footer_address ul {
        display: flex;
        margin: auto;
    }

    .footer_address ul li {
        display: flex;
        align-items: center;
    } */

    .footer_section .footer_address ul li {
        font-size: 16px;
        padding: 5px 0px;
        padding-left: 0;
    }

    .footer_section .footer_heading {
        margin-bottom: 0 !important;
    }

    .footer_section .footer_links ul li a {
        padding: 5px 0px;
    }

    .footer_section .social-links {
        justify-content: center;
    }

    .footer_section .footer_links {
        margin-top: 8px;
    }

    .testimonial .test-user-profile,
    .testimonial .test-user-video,
    .testimonial .test-user-iframce {
        height: 200px !important;
    }
}

/* ============================= Breadcrumb  ================================= */

.breadcrumb_sec {
    background: #1d1f2b;
}

.breadcrumb-item a {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
}

.breadcrumb-item.active {
    color: var(--bs-primary);
    font-size: 16px;
    vertical-align: middle;
}

/* ============================= About us  ================================= */
.about_content p {
    font-size: 18px;
    line-height: 30px;
    color: #555;
    margin: 0;
    text-align: justify;
}

.page_content p {
    font-size: 18px;
    line-height: 30px;
    color: #555;
    margin: 0;
    text-align: justify;
    margin-bottom: 20px;
}

/* =============================  Contact  ================================= */
.contact_section .title h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--bs-black);
}

.contact_info,
.contact_form {
    background: #fff;
    padding: 20px;
}

.contact_section .contact_address ul li {
    font-size: 16px;
    padding: 10px 0px;
    color: #666;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
}

.contact_section .contact_address ul li i {
    font-size: 18px;
    color: var(--bs-primary);
    position: absolute;
    left: 0;
}

.contact_section .form-label {
    font-size: 16px;
    font-weight: 600;
}

.contact_section .form-control {
    border: none;
    width: 100%;
    height: 50px;
    padding: 0px 10px;
    border-radius: 0px;
    color: var(--bs-black);
    background: #f5f5f5;
    border-bottom: 2px solid #e8e8e8;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

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

.faq_list .accordion-item {
    border: 1px solid #EEE !important;
    margin-bottom: 12px;
    border-radius: 0px !important;
}

.faq_list .accordion-item button {
    font-size: 18px;
    font-weight: 500;
    outline: none !important;
    box-shadow: none !important;
    padding: 26px 19px;
}


.faq_list .accordion-body {
    padding: 20px 20px;
}

.faq_list .accordion-body p {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    color: #444;
}

.faq_list .accordion-button:not(.collapsed) {
    background: var(--bs-primary);
    color: #fff !important;
    border-radius: 0px !important;
}

/* .faq_list .accordion-button::after {
    transform: none !important;
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
} */

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

.shop_sideabr {
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #EEE;
}

.shop_heading h3 {
    font-size: 18px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0px;
}

.shop_list ul li a {
    color: #0074ba;
    font-size: 16px;
    font-weight: 300;
    display: block;
    padding: 5px 0px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f4f5fa;
}

.shop_list ul li a:hover {
    color: var(--bs-primary);
}

.shop_list ul li a span {
    float: right;
    color: var(--bs-primary);
}

/* .shop_list {
    padding-right: 5px;
} */

.featured_tag {
    position: absolute;
}

.featured_tag .ribbon {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.featured_tag .ribbon span {
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 20px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #2dbe6c;
    font-weight: 700;
    position: absolute;
    top: 20px;
    left: -21px;
}

.featured_tag .ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #2dbe6c;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #2dbe6c;
}

.featured_tag .ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #2dbe6c;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #2dbe6c;
}

/* user dashboard feature Tags*/
.featured_tag_user_dash {
    position: absolute;
}

.featured_tag_user_dash .ribbon_user_dash {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.featured_tag_user_dash .ribbon_user_dash span {
    font-size: 10px;
    color: #fff;
    text-align: center;
    line-height: 11px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 100px;
    display: block;
    background: #2dbe6c;
    font-weight: 700;
    position: absolute;
    top: 14px;
    left: -25px;
}

.featured_tag_user_dash .ribbon_user_dash span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #2dbe6c;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #2dbe6c;
}

.featured_tag_user_dash .ribbon_user_dash span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #2dbe6c;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #2dbe6c;
}

/* End user dashboard feature tags */
.listing_ad h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #444;
}

.shop_header .filter_form .input-group-text {
    background: transparent;
    border: none !important;
    font-size: 16px;
    font-weight: 700;
    color: var(--bs-black);
}

.shop_header .filter_form .form-control {
    border-radius: 4px !important;
    font-size: 16px;
    font-weight: 500;
    max-width: 200px !important;
    height: 42px;
    padding: 9px 12px;
    color: var(--bs-black);
    background: #ffffff;
    border: 1px solid #e7e7e7;
    cursor: pointer;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.shop_checkbox {
    /*margin-left: 25px;*/
}

.shop_checkbox label {
    font-size: 16px;
    font-weight: 500;
}

.shop_checkbox label {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline;
}

.shop_checkbox .form-check-input {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    margin-top: 0px;
    border: 1px solid var(--bs-primary);
    border-radius: 50px;
    outline: none !important;
    box-shadow: none !important;
}

.shop_checkbox .form-check-input:checked[type=radio] {
    background: var(--bs-primary);
}

.shop_checkbox .form-check {
    margin-bottom: 7px;
}


.shop_price .form-control {
    border: none !important;
    background: #fff;
    box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px !important;
    border-radius: 0px;
}

.shop_price span.input-group-text {
    border: none !important;
    box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px !important;
}

.shop_price .btn-primary {
    box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px !important;
}

.shop_price input::-webkit-outer-spin-button,
.shop_price input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shop_price input[type="number"] {
    -moz-appearance: textfield;
}

.shop_pagination .page-link {
    width: 50px;
    height: 50px;
    margin: 0px 10px;
    border: none !important;
    border-radius: 50px !important;
    line-height: 38px;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    text-align: center;
}

.shop_pagination .page-link .active {
    background: var(--bs-primary);
    color: #fff !important;
}

.page-item.active span {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff !important;
}

.shop_wrap {
    border-bottom: 1px dashed #ff572229;
    max-height: 433px;
    overflow: hidden;
    overflow-y: auto;
    padding: 5px 0px;
}

.shop_wrap .accordion-button.list-sidebar__accordion-inner-button {
    padding: 10px 0px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0px !important;
}

div#st-el-1 {
    display: none;
}

.shop_wrap .accordion-body .accordion-button::after {
    background-image: none !important;
    content: "\f107";
    font-family: 'Font Awesome 5 Free';
    font-weight: bold;
    transform: rotate(0);
}

.shop_wrap .accordion-body .accordion-button:not(.collapsed)::after {
    content: "\f106";
    background-image: none !important;
}

.accordion-item.list-sidebar__accordion-inner-item {
    border-bottom: 1px solid #fafafa;
}

.ads_wrapper .ads_img {
    overflow: hidden;
    position: relative;
}

.shop_wrap::-webkit-scrollbar {
    width: 3px;
}

.shop_wrap::-webkit-scrollbar-thumb {
    background-color: #ddd;
}

.shop_wrap:last-child {
    border-bottom: 0px;
}


.single_ad_left {
    box-shadow: rgb(99 99 99 / 12%) 0px 2px 8px 0px;
    padding: 20px;
    background: #ffff;
    border-radius: 4px;
}

#social-links li a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bd2026;
    font-size: 20px;
}

#social-links ul {
    display: flex;
}

#social-links ul li {
    margin: 0px 5px;
}

.ad_details_section .ad_wrap {
    padding: 21px 18px;
    box-shadow: rgb(0 0 0 / 8%) 0px 1px 4px;
    background: #fff;
    border-radius: 4px;
}

.ad_details_section .ad_header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--bs-black);
    margin-bottom: 10px;
}

.ad_details_section .ad_details h3 {
    font-size: 21px;
    color: var(--bs-black);
    margin-bottom: 13px;
}

.ad_details_section .ad_details p {
    font-size: 17px;
    line-height: 29px;
    text-align: justify;
    color: #666;
}

.ad_details_section .ad_price h4 {
    margin: 0;
    font-size: 22px;
    color: var(--bs-primary);
}

.ad_details_section .heading h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 14px;
}


.ad_wrap ul li {
    font-size: 16px;
    padding: 10px 0px;
    border-bottom: 1px solid #f5f5f5;
}

.ad_wrap ul li span {
    float: right;
    font-weight: 600;
}

.bid_form .form-control {
    height: 50px;
    box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px !important;
    border: 1px solid #EEE;
    font-size: 16px;
    font-weight: 500;
}

.bid_form .btn-primary {
    box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px !important;
}

.single-cta {
    border-bottom: 1px solid #EEE;
    padding-bottom: 22px;
}

.single-cta:last-child {
    border: 0;
}

.single-cta h4 {
    font-size: 21px;
    font-weight: 600;
    color: var(--bs-black);
    margin-bottom: 6px;
}

.single-cta i {
    font-size: 54px;
    color: #312525;
    margin-bottom: 14px;
}

.single-cta p {
    margin: 0;
    font-size: 16px;
    color: #888;
}

/*.dashboard__message-users {*/
/*    padding-top: 24px;*/
/*}*/
/*.dashboard__message-left {*/
/*    width: 35%;*/
/*    border-top-left-radius: 12px;*/
/*    border-bottom-left-radius: 12px;*/
/*    border-right: 1px solid #ebeef7;*/
/*}*/

/*.dashboard__message-userscontent {*/
/*    margin-top: 12px;*/
/*    height: 484px;*/
/*    overflow-y: auto;*/
/*}*/
/*.dashboard__message .user:hover, .dashboard__message .user.active {*/
/*    background-color: #f5f7fa;*/
/*}*/
/*.dashboard__message .user {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*    -webkit-box-pack: justify;*/
/*    -ms-flex-pack: justify;*/
/*    justify-content: space-between;*/
/*    padding: 12px 24px;*/
/*    cursor: pointer;*/
/*}*/
/*.dashboard__message .user-info {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-align: center;*/
/*    -ms-flex-align: center;*/
/*    align-items: center;*/
/*}*/
/*.dashboard__message .user-info .img {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    border-radius: 50%;*/
/*    margin-right: 10px;*/
/*    overflow: hidden;*/
/*}*/

/* Chrome, Safari, Edge, Opera */
.bid_form input::-webkit-outer-spin-button,
.bid_form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.bid_form input[type="number"] {
    -moz-appearance: textfield;
}


.ad_wrap .form-control {
    box-shadow: rgb(0 0 0 / 5%) 1.95px 1.95px 2.6px !important;
    border: 1px solid #EEE;
    height: 50px;
    font-size: 18px;
}

.ad_wrap ul li span a {
    color: var(--bs-primary);
}


.product-item__gallery .mySwiper2 {
    position: relative;
    width: 100%;
    height: 640px;
    margin-bottom: 4px;
    overflow: hidden;
    background-color: #222;
}

.product-item__gallery .mySwiper2 .swiper-slide {
    /* display: flex; */
    justify-content: center;
}

.product-item__gallery .mySwiper2 .swiper-slide img {
    width: 75%;
    margin: 0px auto;
}

.product-item__gallery .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    transition: all 0.3s ease-in;
}

.product-item__gallery .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.product-item__gallery .swiper {
    width: 100%;
    height: 100%;
}

.product-item__gallery .swiper-slide {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.product-item__gallery .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

.thumbsimg img {
    width: 100%;
    height: 100px !important;
}


.ad_details_section .heading a {
    color: var(--bs-primary);
}


.modal-content {
    border: none !important;
    border-radius: 0px;
    padding: 10px;
}

.modal {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: #4356c32b;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.modal-body {
    padding: 0;
}

.bidAmount_list .modal-header {
    padding: 3px 0px 20px 0px;
}

.bidAmount_list table th {
    border: 1px solid #EEE;
}

.bidAmount_list table tr td {
    border: 1px solid #EEE;
    font-size: 18px;
    font-weight: 400;
}

.bidAmount_list .modal-header .btn-close {
    border: none !important;
    opacity: 1;
    font-size: 16px;
    outline: none !important;
    box-shadow: none !important;
}

.related-post__slider-item {
    margin: 0px 8px;
    display: grid;
}

.related-post__slider-item .ads_wrapper {
    box-shadow: none !important;
    border: 1px solid #ddd;
}

.related_ads_section button.slider-btn--prev.slick-arrow,
.related_ads_section button.slider-btn--next.slick-arrow {
    border: 1px solid #EEE;
    width: 38px;
    height: 38px;
    border-radius: 33px;
    background: #EEE;
    color: #000;
    font-size: 18px;
    margin: 0px 6px;
    line-height: 6px;
    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;
}

.related_ads_section button.slider-btn--prev.slick-arrow:hover,
.related_ads_section button.slider-btn--next.slick-arrow:hover {
    background: var(--bs-primary);
    color: #fff;
}

.slider-btn {
    text-align: end;
}

.related-post__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.adpost_form {
    background: #fff;
    padding: 20px 20px;
}

.adpost_form .dropdown button {
    background: #fff !important;
}

.adpost_form .form-control {
    border: none;
    height: 50px;
    padding: 7px 10px;
    border-radius: 0px;
    color: var(--bs-black);
    background: #f5f5f5;
    border-bottom: 2px solid #e8e8e8;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.adpost_form .input-gorup-text {
    background: #f5f5f5;
    border: none;
    border-bottom: 2px solid #e8e8e8;
    outline: none !important;
    font-size: 16px;
    box-shadow: none !important;
    border-left: 2px solid #dedede !important;
    padding: 0px 7px;
}

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

.adpost_form .form-label {
    font-size: 16px;
    color: var(--bs-black);
    font-weight: 600;
}

.adpost_form .text-danger {
    color: #dc3545 !important;
    font-size: 18px;
}

.adpost_form .heading h3,
.seller_info .heading h3 {
    font-size: 20px;
    color: var(--bs-black);
    font-weight: 700;
}

.adpost_form .form-control[type=file] {
    cursor: pointer;
    line-height: 43px;
    padding-top: 3px;
}


.post_category a {
    font-size: 17px;
    color: #000;
    margin: 10px 0px;
    border: 1px solid #EEE;
    padding: 19px 5px;
    background: #0072ba0f;
    border-radius: 4px;
    transition: all 500ms ease;
    display: block;
    font-weight: 500;
}

.post_category a:hover {
    border-color: var(--bs-primary);
    background: #ff57222e;
}

.post_category a i {
    display: block;
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--bs-primary);
}


.terms_check .form-check-input {
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    margin-top: 3px;
}

.form-check-input {
    box-shadow: none !important;
}

.terms_check .form-check-label {
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.adpost_form .form-check-label {
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    vertical-align: middle;
}

/* .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
    border: none;
    width: 100%;
    height: 50px;
    padding: 7px 10px;
    border-radius: 0px;
    color: var(--bs-black);
    background: #f5f5f5;
    border-bottom: 2px solid #e8e8e8;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.select2-container {
    width: 100% !important;
    height: 48px;
}

.select2-results__option {
    font-size: 17px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    background: #f5f5f5 !important;
    border-bottom: 2px solid #e8e8e8 !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--bs-primary) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 12px !important;
}

.select2-dropdown {
    border: 1px solid #EEE !important;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd;
    border-radius: 50px;
    height: 35px;
    outline: none !important;
    box-shadow: none !important;
    padding: 4px 13px;
}

.select2-container--default .select2-selection--single {
    border: none !important;
} */

.terms_check .form-check-label a {
    color: var(--bs-primary);
}

.features_list .form-check {
    margin: 4px 0px;
}

.form-check .form-check-input {
    cursor: pointer;
}

.adpost_form .form-check-input:checked {
    background-color: var(--bs-primary);
    border: 1px solid var(--bs-primary) !important;
}

.upload-text,
.image-uploader .uploaded {
    background: #f5f5f5;
}

.image-uploader {
    border: none !important;
    border-bottom: 2px solid #e8e8e8 !important;
}

.image-uploader .uploaded .uploaded-image .delete-image {
    background-color: #f44336;
}

.user_dashboard .dropdown {
    padding: 14px 0px;
}

.user_dashboard .dropdown-menu {
    padding: 0;
    z-index: 5;
    border-radius: 0px !important;
}

.user_dashboard li {
    display: block !important;
}

.user_dashboard .dropdown-menu li a {
    padding: 7px 12px;
    font-size: 16px;
}

.user_dashboard .dropdown-item:focus,
.user_dashboard .dropdown-item:hover {
    background: var(--bs-primary) !important;
    color: #fff;
}

.dashboard_wrap {
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    background: #fff;
}

.profile_info img {
    background: #fff;
    padding: 1px;
    border: 3px solid var(--bs-primary);
}

/* .dashboard_profile ul li a — handled by new .user-dash-btns rules below */

.dashboard_wrapper {
    background: #fff;
    border: 1px solid #EEE;
    border-radius: 6px;
    padding: 20px 20px;
}

.dashboard_card .card_item {
    border: 1px solid #EEE;
    padding: 12px 10px;
    border-radius: 7px;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.dashboard_card .card_item:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4e65e429;
}

.dashboard_card .card_item h1 {
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.dashboard_card .card_item h5 {
    font-size: 18px;
}

.dashboard_card .card_body {
    position: relative;
}

.badge {
    padding: 5px 8px;
    display: inline-block;
    height: 18px;
}

.sup-badge {
    font-size: 16px;
    background: var(--bs-primary);
    border-radius: 50px;
    min-width: 18px;
    height: 18px;
    text-align: center;
    display: inline-block;
    line-height: 19px;
    padding: 0px 5px;
}

.primary-color {
    color: var(--bs-primary)
}

.dashboard_wrapper .table {
    border: 1px solid #EEE;
    text-align: center;
    min-width: 900px;
}

.dashboard_wrapper .table th {
    border: 1px solid #EEE;
}

.dashboard_wrapper .table td {
    border: 1px solid #EEE;
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
}

.dashboard_wrapper .table .dropdown-toggle {
    background: #f3f3f3;
    border: none !important;
    font-size: 19px;
    border-radius: 50px;
    font-weight: bold;
    outline: none !important;
    box-shadow: none !important;
    line-height: 15px;
    width: 36px;
    height: 36px;
}

.dashboard_wrapper .dropdown-menu {
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    padding: 0;
    min-width: 100px !important;
}

.dashboard_wrapper .dropdown-menu a {
    padding: 6px 14px;
    font-weight: 600;
    font-size: 16px;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-white) !important;
    background-color: var(--bs-primary) !important;
}

.dashboard_wrapper .heading h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.user_dashboard img {
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0px;
}

.user_dashboard .form-control {
    border: none;
    width: 100%;
    height: 50px;
    padding: 7px 10px;
    border-radius: 0px;
    color: var(--bs-black);
    background: #f5f5f5;
    border-bottom: 2px solid #e8e8e8;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

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

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

.user_dashboard .form-label {
    font-size: 16px;
    color: var(--bs-black);
    font-weight: 600;
}

.user_dashboard .text-danger {
    color: #dc3545 !important;
    font-size: 18px;
}

.user_dashboard .form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer;
    line-height: 36px;
    border: none !important;
}

/* Old conflicting user-dash-btns rules removed — see new modern dashboard styles below */

/*  chat box */


.chat-message-left,
.chat-message-right {
    display: flex;
    flex-shrink: 0
}

.chat-message-left {
    margin-right: auto
}

.chat_box .chat-message-right {
    flex-direction: row-reverse;
    margin-left: auto
}

.chat_box .user_list {
    display: block !important;
    margin-bottom: 5px;
    background: #fafafa;
    padding: 7px 9px;
    border-radius: 6px;
    transition: all 0.5ms ease-in;
    -webkit-transition: all 0.5ms ease-in;
    -moz-transition: all 0.5ms ease-in;
    -ms-transition: all 0.5ms ease-in;
    -o-transition: all 0.5ms ease-in;
}


.chat_box .user_list.active {
    background: #dddddd !important;
}

.chat_box .user_list:hover {
    background: #dddddd;
}


.chat_box .user_list img {
    border-radius: 50px;
    border: 1px solid #ddd;
    margin-right: 8px;
}

.chat_box .user_list h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--bs-black);
    margin: 0;
    margin-bottom: 5px;
}

.chat_box .user_list span {
    font-size: 12px;
    padding: 0px 12px;
    display: inline-block;
    color: #fff;
    border-radius: 0px 10px;
}

.chat_box .user_list .online {
    background: #2dbe6c !important;
}

.chat_box .user_list .offline {
    background: #d5d5d5 !important;
    color: #000;
}

.chat_box .border-right {
    border-right: 1px solid #efeeee;
}

.selected_user.header {
    background: #fafafa;
    padding: 10px 20px;
}

.selected_user.header h5 {
    font-size: 18px;
    color: var(--bs-black);
    margin: 0;
    font-weight: 700;
}

.selected_user.header span {
    font-size: 12px;
    padding: 0px 12px;
    display: inline-block;
    color: #fff;
    border-radius: 0px 10px;
}

.selected_user.header span.online {
    background-color: #00bb00;
}

.selected_user.header span.offline {
    background-color: #9c3328;
}

.chat_form .form-control {
    border: none;
    height: 52px;
    padding: 7px 10px;
    border-radius: 0px;
    color: var(--bs-black);
    background: #f5f5f5;
    border-bottom: 2px solid #e8e8e8;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.chat_messages {
    padding: 20px 17px;
    height: 500px;
    background-color: white;
    overflow: auto;
}

.chat_messages::-webkit-scrollbar {
    width: 3px;
}

.chat_messages::-webkit-scrollbar-thumb {
    background-color: #ddd;
}

.chat_msg:last-child {
    border: 0;
}

.chat_msg {
    border-bottom: 1px solid #f8f8f8;
    margin-bottom: 20px;
}

.chat_msg h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    color: var(--bs-primary);
}

.chat_msg p {
    margin: 0;
    font-size: 16px;
    color: #2f2f2f;
    line-height: 26px;
}

.chat_msg .text-muted {
    text-align: center;
    font-weight: 600;
}


.lg-backdrop {
    background-color: #303030 !important;
}

.lg-toolbar .lg-icon {
    color: #fff;
}

.seller_dashboard {
    border: 1px solid #f2f2f2;
    background: #fff;
    padding: 15px 21px;
    border-radius: 10px;
    position: relative;
}

.seller_dashboard .profile {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
}

.info_seller img {
    width: 16px;
    height: 16px;
    margin-bottom: 7px;
}

.info_seller .star span {
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
    margin-left: 8px;
    font-weight: 400;
    color: #333;
}

.info_seller h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 4px;
}

.info_seller p {
    margin: 0;
    font-size: 16px;
    color: #777;
}

.info_seller p strong {
    color: #212121;
    margin: 0px 3px;
}


.chat_seller_btn {
    position: absolute;
    top: 31px;
    right: 15px;
}

.seller_dashboard_shop .nav-pills {
    max-width: 600px;
    margin: 0 auto;
}

.seller_dashboard_shop .nav-item {
    display: block;
    width: 33.33%;
}

.seller_dashboard_shop .nav-item button {
    width: 100%;
}

.seller_dashboard_shop .nav-pills .nav-link {
    font-size: 18px;
    color: var(--bs-black);
    border-radius: 0px;
    padding: 13px 5px;
    background: #e8e8e8;
    outline: none !important;
    box-shadow: none !important;
    font-weight: 600;
}

.seller_dashboard_shop .nav-pills .nav-link.active {
    background: var(--bs-primary) !important;
    color: #fff;
}

.seller_dashboard_shop .shop_header {
    border-bottom: 1px solid #e3e3e3;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    padding-bottom: 12px;
}

.seller_sort_info .profile {
    border: 2px solid #DDD;
    margin-bottom: 5px;
}

.seller_sort_info h3 a {
    font-size: 20px;
    font-weight: 600;
}

.seller_sort_info h3 {
    margin: 0;
}

.seller_sort_info p {
    margin: 0;
    font-size: 16px;
    padding: 6px 0px;
    border-bottom: 1px solid #f5f5f5;
}

.seller_sort_info .star {
    margin: 0;
    font-size: 16px;
    padding: 6px 0px;
    border-bottom: 1px solid #f5f5f5;
}

.seller_sort_info .star img {
    width: 16px;
    height: 16px;
    margin-bottom: 7px;
}

.seller_sort_info .star span {
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
    margin-left: 8px;
    font-weight: 400;
    color: #333;
}




.feedback_list {
    border: 1px solid #e8e8e8;
    padding: 15px 15px;
    border-radius: 6px;
    background: #fff;
}

.feedback_list .feedback_img img {
    border-radius: 3px;
}

.feedback_content .star img {
    width: 17px;
    height: 17px;
}

.feedback_content h6 {
    font-size: 16px;
    color: #666;
    margin-bottom: 4px;
}


.feedback_content .star {
    margin-bottom: 9px;
}

.feedback_content p {
    margin: 0;
    font-size: 16px;
    text-align: justify;
    line-height: 25px;
    color: #555;
}

.review_form .form-control {
    background: #f7f7f7;
    border: 1px solid #EEE;
    padding: 10px 10px;
}

.review_form {
    background: #fff;
    padding: 20px 20px;
}



/* sign in */

.signin_form {
    padding: 30px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    box-shadow: 0px 20px 60px 0px rgb(0 0 0 / 4%);
}

.signin_form .heading h3 {
    color: #070707;
    font-weight: 600;
    font-size: 23px;
    margin: 0;
    margin-bottom: 10px;
}

.signin_form .heading p {
    margin: 0;
    font-size: 16px;
    color: #777;
}

.signin_form .heading p a {
    color: var(--bs-primary);
    font-weight: bold;
}

.signin_form .heading p a {
    color: var(--bs-primary);
    font-weight: bold;
}

.signin_form .form-control {
    border: none;
    width: 100%;
    height: 50px;
    padding: 7px 10px;
    border-radius: 0px;
    color: var(--bs-black);
    background: #f5f5f5;
    border-bottom: 2px solid #e8e8e8;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.signin_form .form-control::placeholder {
    color: #AAA;
}

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

.signin_form .form-label {
    font-size: 16px;
    font-weight: 500;
}

.signin_form .form-check label {
    cursor: pointer;
    font-size: 16px;
}

.signin_form .form-check .form-check-input {
    margin-top: 0px;
    width: 17px;
    height: 17px;
    border-radius: 50px;
    border: 1px solid #c6c6c6 !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
}

.signin_form .form-check-input:checked {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.signin_form .password_forgot a {
    font-weight: 600;
    font-size: 16px;
    color: var(--bs-black);
    transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
}

.signin_form .password_forgot a:hover {
    color: var(--bs-primary)
}

.signin_form .btn-primary {
    height: 50px;
    font-size: 17px;
}

.text-danger {
    color: #dc3545 !important;
}

/* =============================  Blog  ================================= */
.blog_wrapper {
    background: #fff;
    border: 1px solid #DDD;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
}

.blog_img {
    overflow: hidden;
}

.blog_img img {
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}


.blog_wrapper:hover .blog_img img {
    transform: scale(1.1);
}

.blog_content {
    padding: 14px 14px;
}

.blog_content h6 {
    font-size: 16px;
    color: #777;
    font-weight: 400;
    margin-bottom: 15px;
}

.blog_content h2 a {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
    line-height: 29px;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.blog_content h2 a:hover {
    color: var(--bs-primary)
}

.blog_content p {
    margin: 0;
    font-size: 16px;
    color: #666;
    line-height: 25px;
    margin-bottom: 18px;
}

.blog_content h5 {
    font-size: 12px;
    font-weight: 400;
}

.blog_content h5 a {
    color: var(--bs-primary) !important;
}


.blog_share div#st-2 {
    text-align: center !important;
}

/* Blog  */

.blog_sidebar .post_wrap {
    background: #fff;
    padding: 20px;
    border-radius: 2px;
}

.blog_sidebar .post_widget h3 {
    font-size: 18px;
    color: #444;
}

.blog_sidebar .post_wrap ul li a {
    display: block;
    padding: 6px 0px;
    font-size: 16px;
    color: #777;
}

.blog_sidebar .post_wrap ul li a:hover {
    color: var(--bs-primary);
    text-decoration: underline !important;
}

.blog_sidebar .post_body {
    max-height: 500px;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 10px;
}

.blog_sidebar .single_blog {
    background: #fff;
    padding: 20px;
    border-radius: 2px;
}

.blog_section .single_post_img img {
    border-radius: 4px;
}

.blog_section .single_blog {
    background: #fff;
    padding: 20px;
    border-radius: 2px;
}

.blog_section .single_post_details h6 {
    font-size: 16px;
    color: #777;
    font-weight: 400;
    margin-bottom: 10px;
}

.blog_section .single_post_details h5 {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #777;
}

.blog_section .single_post_details h5 a {
    color: var(--bs-primary);
}

.blog_section .single_post_details h2 a {
    font-size: 21px;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
    line-height: 29px;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.blog_section .single_post_details p {
    margin-bottom: 20px;
    color: #666;
    line-height: 30px;
}


/* choose category */
.adpost_form .heading h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

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

.post_category ul li .category_name {
    font-size: 16px;
    padding: 10px 18px;
    display: block;
    border: 1px solid #EEE;
    border-radius: 6px;
    font-weight: 500;
    margin: 7px 4px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

.post_category ul li .category_name:hover {
    background: var(--bs-primary);
    color: #fff;
}

.product_featured_check {
    background: #fff;
    display: inline-block;
    width: 100%;
    padding: 0;
    font-size: 16px;
    text-align: left;
    float: none;
    position: relative;
    border-radius: 3px;
    margin: 0 0 8px;
    box-shadow: 1px 1px 4px rgb(0 0 0 / 6%), 0 0 0 1px rgb(0 0 0 / 15%) inset;
}

.product_featured_check label.osp-chk {
    padding: 10px;
    position: absolute;
    left: -1px;
    top: 0;
    margin: 0 !important;
    height: 100%;
    width: 50px;
    background: rgb(212 212 212);
    border: none !important;
    line-height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.product_featured_check .form-check {
    margin-bottom: 6px;
    font-size: 16px;
    margin-left: 5px;
    margin-top: 4px;
}

.product_featured_check .form-check .form-check-input {
    width: 18px;
    height: 18px;
    outline: none !important;
    box-shadow: none !important;
}

.product_featured_check .osp-text {
    float: left;
    width: 60%;
    padding: 10px 10px 10px 60px;
    clear: none;
}

.product_featured_check .osp-select {
    float: left;
    width: 40%;
    clear: none;
    padding: 6px 4px 0px 0px;
}

.product_featured_check .osp-pb-name {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.product_featured_check .osp-pb-desc {
    font-size: 16px;
    color: #777;
}

.product_featured_check .form-control {
    height: 45px;
    border-radius: 0px;
    border-color: #EEE;
    font-size: 16px;
}

.transmisson_type .form-check label {
    vertical-align: middle;
}

.transmisson_type .form-check {
    display: inline-block;
    margin-right: 14px;
    vertical-align: middle;
}

.condition_check .form-check {
    display: inline-block;
    margin-right: 8px;
}

.adpost_form .form-check .form-check-input {
    cursor: pointer;
    box-shadow: none !important;
}

.adpost_form .form-check-input:checked {
    background-color: var(--bs-primary);
    border: 1px solid var(--bs-primary) !important;
}

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

.adpost_form .input-group-text {
    /* background: transparent !important; */
    font-size: 16px;
    text-align: left;
    outline: none !important;
    box-shadow: none !important;
}

.adpost_form .input-group .btn {
    font-size: 16px;
    font-weight: 500;
}

ul.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 150px;
    margin: 0 0 10px 25px;
    list-style: none;
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.2);
}

li.ui-menu-item {
    padding: 0 .5em;
    line-height: 2em;
    font-size: 16px;
    cursor: pointer;
}

li.ui-menu-item:hover {
    color: #3f51b5;
}

.ui-state-focus {
    background: #F7F7F7;
}


.promotion_product td {
    border: 1px solid #f3f3f3;
    padding: 15px 18px;
}

.payment_option .card {
    text-align: center;
    background: #889bff38;
    padding: 50px 10px;
    overflow: hidden;
    position: relative;
}

.payment_option .card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #212121;
    margin: 0;
    margin-bottom: 30px;
}

.payment_option .card-body {
    padding: 0;
}

.payment_option .card img {
    width: 300px;
    position: absolute;
    bottom: -36px;
    left: -41px;
    transform: rotate(20deg);
    opacity: .1;
}

.customer_invoice td {
    border: 1px solid #f3f3f3 !important;
    padding: 15px 18px !important;
}

.customer_invoice th {
    border: 1px solid #f3f3f3 !important;
    padding: 15px 18px !important;
}

.menu_offcanvas .nav-item {
    padding: 2px 0px;
    font-size: 18px;
    border-bottom: 1px solid #eee;
}

.registration-form__sign-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 22px;
}

.registration-form__sign-btns .btn-sign {
    width: 100%;
    margin: 0 auto;
}

.btn-sign {
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #464d61;
    text-transform: capitalize;
    text-align: center;
    padding: 14px 24px;
    border: 1px solid #ebeef7;
    background-color: #E8F0FE;
}

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

.btn-sign .icon {
    margin-right: 16px;
}

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

/*
   * Hide visually and from screen readers
   */

.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;
    /* 1 */
}

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

/*
   * Hide visually and from screen readers, but maintain layout
   */

.invisible {
    visibility: hidden;
}

/*
   * Clearfix: contain floats
   *
   * The use of `table` rather than `block` is only necessary if using
   * `::before` to contain the top-margins of child elements.
   */

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

.clearfix::after {
    clear: both;
}

/* ==========================================================================
     EXAMPLE Media Queries for Responsive Design.
     These examples override the primary ('mobile first') styles.
     Modify as content requires.
     ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
     Print styles.
     Inlined to avoid the additional HTTP request:
     https://www.phpied.com/delay-loading-your-print-css/
     ========================================================================== */

@media print {

    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        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;
    }
}

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: "Barlow Condensed", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


@font-face {
    font-family: 'Grandis Light';
    src: url('../fonts/custom-font/grandis-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Grandis Condensed Medium';
    src: url('../fonts/custom-font/grandiscondensed-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Grandis Medium';
    src: url('../fonts/custom-font/grandis-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Grandis Regular';
    src: url('../fonts/custom-font/grandis-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Grandis Regular Italic';
    src: url('../fonts/custom-font/grandis-regularitalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Grandis Extended Medium';
    src: url('../fonts/custom-font/grandisextended-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Zawgyi-One';
    src: url('../fonts/custom-font/zawgyi_one.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.font-grandis-light {
    font-family: 'Grandis Light', sans-serif;
}

.font-grandis-condensed {
    font-family: 'Grandis Condensed Medium', sans-serif;
}

.font-grandis-medium {
    font-family: 'Grandis Medium', sans-serif;
}

.font-grandis-regular {
    font-family: 'Grandis Regular', sans-serif;
}

.font-grandis-regular-italic {
    font-family: 'Grandis Regular Italic', sans-serif;
}

.font-grandis-extended {
    font-family: 'Grandis Extended Medium', sans-serif;
}

/* Body */
body {
    /* font-family: "Barlow Condensed", sans-serif !important; */
    font-family: "Roboto", sans-serif !important;
}

/* Top Bar */
.top-nav {
    background: #000;
    box-shadow: none;
    padding: 0;
    margin: 0;
    height: 40px;
    display: flex;
    align-items: center;
}

.top-nav #language {
    width: 145px;
    color: #fff;
    border: 1px solid #fff;
    padding: 0 30px 0 5px;
    height: 30px;
    font-size: 12px;
    text-transform: uppercase;
    margin: 2px 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/icon/select-arrow-white.png) right center no-repeat #000;
}

.nav-time {
    color: #ffffff;
}

.nav-account {
    min-width: auto;
}

.nav-account .btn {
    box-shadow: none;
    white-space: nowrap;
    font-weight: 500;
    padding: 8px 16px;
    background-color: var(--bs-primary);
    color: #ffffff;
    border: 1px solid var(--bs-primary);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-account .btn:hover {
    background-color: #005a94;
    border-color: #005a94;
    color: #ffffff;
}

.nav-account .btn span {
    position: relative;
    top: 2px;
}

.navbar .navbar-brand .logo {
    height: 55px;
}

.navbar .nav-item .nav-link {
    /* font-size: 20px; */
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.navbar .nav-item .nav-link {
    padding: 2px 10px !important;
}

@media (min-width: 992px) {
    .navbar .nav-item {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .nav-account .btn {
        padding: 3px 7px 3px 6px;
        position: static !important;
        border: 0 !important;
    }

    .navbar .nav-item .nav-link {
        width: 100%;
        border-radius: 0;
        text-align: start;

        font-size: 18px;
        padding: 10px 15px !important;
        border-bottom: 2px solid rgba(255, 255, 255, .1);
    }
}

@media (max-width: 767px) {
    .nav-time {
        display: none !important;
    }

    .nav-account {
        min-width: auto !important;
    }
}

/* Hero Section */
.carousel-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Make the owl carousel full-bleed */
.banner_section .owl-carousel .item {
    min-height: 500px;
    /* change to suit your design */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #93000008;
}

/* Example overlay text inside slides */
.banner_section .slide-content {
    background: rgba(0, 0, 0, 0.35);
    padding: 24px 32px;
    border-radius: 8px;
    text-align: center;
}

.banner_section .slide-title {
    font-size: 2.2rem;
    margin: 0 0 8px;
    font-weight: 700;
}

.banner_section .slide-sub {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
}

/* Custom nav buttons */
.banner_section .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    /* let buttons control pointer per button */
    padding: 0 18px;
}

.banner_section .owl-nav button {
    pointer-events: all;
    background: transparent;
    border: none;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    transition: transform .16s ease, opacity .16s ease;
    opacity: 0.95;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
}

.banner_section .owl-nav button:hover {
    transform: scale(1.04);
    opacity: 1;
}

.banner_section .owl-nav img {
    display: block;
}

/* hide default text */
.banner_section .owl-nav .owl-prev,
.banner_section .owl-nav .owl-next {
    font-size: 0;
}

.banner_section .owl-nav .owl-next {
    display: flex;
    justify-content: end;
}

.banner_section .owl-theme .owl-nav [class*=owl-]:hover {
    box-shadow: none;
    background-color: transparent !important;
}

.banner_section .banner_section .owl-nav button {
    box-shadow: none !important;
}

.banner_section .owl-theme .owl-nav {
    margin-top: 0 !important;
}

.banner_section .owl-theme .owl-nav .owl-next img {
    transform: rotate(-180deg);
}

/* small screens adjustments */
@media (max-width: 991px) {
    .banner_section .owl-carousel .item {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .banner_section .owl-carousel .item {
        min-height: 200px;
    }

    .banner_section .slide-title {
        font-size: 1.5rem;
    }

    .banner_section .owl-nav button {
        width: 44px;
        height: 44px;
    }
}

/* Select Filter / Hero Search */
.select-filter {
    background: linear-gradient(135deg, #001d3d 0%, #003566 40%, #0072BA 100%);
    padding: 56px 0 64px;
}

.select-filter .hero-heading {
    text-align: center;
    margin-bottom: 28px;
}

.select-filter .hero-heading h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.select-filter .hero-heading p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.select-filter .search-form {
    z-index: 999;
    padding: 18px 22px;
    color: #ffffff;
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.banner_section:before { display: none; }

/* Primary search row: keyword + 4 selects + buttons inline */
.search-row-primary {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}
/* When model field grows (multiple tags), keep other fields bottom-aligned */
.search-row-primary > * { align-self: flex-end; }

.search-keyword {
    flex: 2 1 280px;
    position: relative;
}

.search-keyword-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa3ad;
    font-size: 14px;
    pointer-events: none;
}

.search-keyword .form-control {
    height: 46px;
    border-radius: 8px;
    border: 1px solid #e3e7ec;
    padding-left: 38px;
    font-size: 14px;
    background: #f7f9fc;
    transition: all 0.2s ease;
}

.search-keyword .form-control:focus {
    background: #ffffff;
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(0, 114, 186, 0.12);
    outline: none;
}

.search-field {
    flex: 1 1 130px;
    min-width: 0;
}
.search-field-model {
    flex: 2 1 200px;
}

.search-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.btn-more-filters {
    height: 46px;
    padding: 0 14px;
    background: #f1f5fa;
    border: 1px solid #e3e7ec;
    border-radius: 8px;
    color: #495057;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-more-filters:hover,
.btn-more-filters.active {
    background: #e3edf7;
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

.btn-search {
    height: 46px;
    padding: 0 22px;
    background: var(--bs-primary);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-search:hover {
    background: #005a94;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 114, 186, 0.25);
}

.btn-reset {
    background: transparent;
    border: none;
    color: var(--bs-primary);
    font-size: 13px;
    font-weight: 500;
    padding: 0 6px;
    text-decoration: underline;
    cursor: pointer;
}

.btn-reset:hover {
    color: #005a94;
}

/* Advanced filters panel */
.search-row-advanced {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eef1f5;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-row-advanced .search-field {
    flex: 1 1 calc(25% - 10px);
    min-width: 140px;
}

/* Select2 inside search-form */
.search-form .select2-container {
    height: auto;
    width: 100% !important;
}

.search-form .select2-container--default .select2-selection--single {
    height: 46px;
    border: 1px solid #e3e7ec;
    border-radius: 8px;
    background: #f7f9fc;
    position: relative;
}
.search-form .select2-container--default .select2-selection--multiple {
    min-height: 46px;
    height: auto;
    border: 1px solid #e3e7ec;
    border-radius: 8px;
    background: #f7f9fc;
    position: relative;
    padding: 0 !important;
}

/* Clear button: override select2 defaults with !important — it uses float:right + position:relative
   which renders at the top of the box. We make it absolute, vertically centred on the right. */
.search-form .select2-container--default .select2-selection--single .select2-selection__clear,
.search-form .select2-container--default .select2-selection--multiple .select2-selection__clear {
    position: absolute !important;
    right: 28px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    border-radius: 50% !important;
    background: #cbd5e1 !important;
    color: #475569 !important;
    border: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 18px !important;
    text-align: center !important;
    z-index: 3 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.15s, color 0.15s !important;
}

.search-form .select2-container--default .select2-selection--single .select2-selection__clear:hover,
.search-form .select2-container--default .select2-selection--multiple .select2-selection__clear:hover {
    background: #ef4444 !important;
    color: #fff !important;
}

/* Hide the inner <span> — the × is already on the button itself */
.search-form .select2-container--default .select2-selection__clear > span[aria-hidden] {
    display: none !important;
}

/* Single-select rendered text: leave room on right for clear btn + arrow */
.search-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 52px !important;
}

/* Multi-select rendered list: leave room on right for clear btn */
.search-form .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-right: 32px !important;
}

/* Fix pill: × remove button renders before text ("×C-Class"). Re-order so text comes first. */
.search-form .select2-container--default .select2-selection--multiple .select2-selection__choice {
    display: inline-flex !important;
    align-items: center !important;
    flex-direction: row !important;
}

.search-form .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    order: 1 !important;
}

.search-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    order: 2 !important;
    float: none !important;
    margin-left: 5px !important;
    margin-right: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.search-form .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    padding: 6px 32px 6px 6px !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
}

.search-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    color: #212529;
    padding-left: 12px;
    padding-right: 28px;
    font-size: 14px;
}

.search-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #6c757d;
}

.search-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 6px;
}

.search-form .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e8f2fb !important;
    border: 1px solid #b8d8f0 !important;
    color: #0072BA !important;
    border-radius: 6px !important;
    padding: 3px 8px !important;
    margin: 0 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
    float: none !important;
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    max-width: 100% !important;
}

.search-form .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    color: #0072BA;
    font-size: 12px;
}

.search-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #0072BA;
    opacity: 0.6;
    margin-left: 4px;
    margin-right: 0;
    line-height: 1;
}
.search-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #dc3545;
    opacity: 1;
    background: transparent;
}

.search-form .select2-container--default .select2-search--inline .select2-search__field {
    font-size: 13px;
    margin: 0;
    padding: 0 4px;
    height: 28px;
    font-family: inherit;
    min-width: 80px;
}

.search-form .select2-dropdown {
    border: 1px solid #e3e7ec;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (max-width: 991px) {
    .search-row-primary { gap: 10px; }
    .search-keyword { flex: 1 1 100%; }
    .search-field { flex: 1 1 calc(50% - 5px); }
    .btn-more-filters,
    .btn-search { flex: 1 1 calc(50% - 5px); }
    .btn-reset { flex: 1 1 100%; text-align: center; padding: 8px; }
    .search-row-advanced .search-field { flex: 1 1 calc(50% - 5px); }
}

@media (max-width: 575px) {
    .select-filter { padding: 32px 0 40px; }
    .select-filter .hero-heading h1 { font-size: 1.6rem; }
    .select-filter .search-form { padding: 14px; }
    .search-field { flex: 1 1 100%; }
    .search-row-advanced .search-field { flex: 1 1 100%; }
}

@media (max-width: 767px) {
    .search-form {
        position: static !important;
        transform: translate(0) !important;
    }

    .search-form .select2-container {
        height: 32px;
    }

    .search-form .car-select .select2-container {
        margin-top: -4px;
    }

    .search-form {
        margin-top: 20px;
    }

    /* .main-content {
        margin-top: 20px;
    } */
}

.category_section .section_heading h4 {
    margin: 0;
    font-size: 14px;
    color: #333333;
    font-weight: 700;
    padding-bottom: 10px;
    margin: 0 0 0 0;
    border-bottom: 2px solid var(--bs-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.cat-border {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e8ecf0;
    overflow: hidden;
}

.category_item .category-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 6px;
    padding: 4px;
    background: #f8f9fa;
    border: 1px solid #e8ecf0;
}

.category_item h3 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.category_item p {
    font-size: 12px !important;
    color: #888;
    font-weight: 400;
}

.pro-card {
    padding: 0;
    height: 100%;
    border-radius: 12px;
    margin-bottom: 0 !important;
    border: 1px solid #e8ecf0;
    transition: 0.3s all ease-in-out;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    background: #ffffff;
}

.pro-card:hover {
    box-shadow: 0 8px 24px rgba(0, 114, 186, 0.15);
    transform: translateY(-4px);
    border-color: rgba(0, 114, 186, 0.2);
}

.pro-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    min-height: 180px;
    transition: transform 0.4s ease;
}

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

.pro-card .card-body {
    padding: 12px 14px 8px;
    margin-top: 0;
    position: relative;
}

.pro-card .pro-price {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.listing_price .fw-bold,
.listing_price .text-success {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: var(--bs-primary) !important;
}

.pro-card .card-text {
    font-size: 15px;
    /* font-size: 16px; */
    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;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

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

.pro-card .pro-favourite {
    font-weight: 400;
    color: #555;
    margin-bottom: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.pro-card .pro-favourite:hover {
    color: var(--bs-primary);
    background: #ffffff;
    transform: scale(1.1);
}

.pro-card .pro-favourite.active i {
    color: var(--bs-primary);
}

.pro-card .pro-favourite i {
    font-size: 15px;
}

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

    .pro-card.verified_item {
        padding: 0;
    }
}

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

.main-content {
    padding-top: 32px;
    padding-bottom: 40px;
}

/* ============================= 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 =========== */

/* .main-content {
    margin-top: 70px;
} */

@media (max-width: 991px) {
    /* .main-content {
        margin-top: 20px;
    } */

    .category_section .cat-border {
        margin-top: -12px;
        border-left: 1px solid var(--bs-primary);
    }

    .category_item {
        border-right: 1px solid var(--bs-primary);
        border-bottom: 1px solid var(--bs-primary);
    }

    .category_item .stretched-link {
        width: 100%;
    }

    .main-content .product-content {
        max-width: 98%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 991px) {
    .main-content .product-content {
        max-width: 97%;
    }
}

@media (max-width: 575px) {
    .main-content .product-content {
        max-width: 96%;
    }
}

/* Hp Auction Section */
.hp_auction {
    color: #fff;
    background: linear-gradient(135deg, #001d3d 0%, #003566 50%, #005f99 100%);
    position: relative;
    overflow: hidden;
}

.hp_auction::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 114, 186, 0.15);
    pointer-events: none;
}

.hp_auction h3 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #fff;
}

.hp_auction p {
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hp_auction .btn {
    font-size: 16px;
    color: #ffffff;
    border-radius: 8px;
    padding: 12px 28px;
    background-color: var(--bs-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.hp_auction .btn:hover {
    background-color: var(--bs-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 186, 0.4);
}

/* Testimonial Section */
.testimonial {
    color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    position: relative;
}

.testimonial .overlay {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,20,40,0.9) 100%);
}

.testimonial h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.testimonial h3 {
    color: #ffffff;
}

.testimonial .test-user-profile,
.testimonial .test-user-video,
.testimonial .test-user-iframce {
    height: 250px;
    width: 250px !important;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    border: 3px solid rgba(255,255,255,0.5);
}

.testimonial .video-container {
    position: relative;
    overflow: hidden;
}

.testimonial .video-container::after {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #00000010;
}

.testimonial .btn {
    width: 75px;
    height: 75px;
    z-index: 9;
    transform: translate(-50%, -50%) scale(0.7);
}

.testimonial p {
    font-size: 18px;
}

.testimonial .star-review i {
    font-size: 18px;
    color: #ffa500;
}

.testimonial .review-details {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.3px;
    line-height: 1.7;

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

.modal-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

.modal-video-container video,
.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container {
    position: relative;
    display: inline-block;
}

.video-container .play-button {
    z-index: 10;
}

@media (max-width: 767px) {
    .testimonial .overlay {
        text-align: center;
    }

    .testimonial .star-review {
        margin-top: 25px;
        justify-content: center;
        display: flex !important;
    }

    .testimonial p {
        margin-bottom: 2px !important;
    }

    .testimonial .testimonial-item .flex-shrink-0 {
        display: flex;
        justify-content: center;
    }
}

/* Product Ads */
.stock-badge {
    color: #fff;
    position: relative;
    display: inline-block;
    background-color: var(--bs-primary);
}

.stock-badge::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0px;
    border-top: 13px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid var(--bs-primary);
}

.grid-cols {
    gap: 8px;
    display: grid;
    font-weight: 500;
    grid-template-columns: repeat(3, 1fr);
}

.shop_wrapper .ref {
    font-weight: 500;
    text-align: center;
    color: var(--bs-primary);
    margin-bottom: 8px;
    font-size: 18px;
}

.shop_wrapper .for-price {
    font-size: 18px;
    font-weight: 500;
    background-color: #c9c9c9;
}

.shop_wrapper .product-item {
    padding-bottom: 20px;
    border-radius: 0;
    border-bottom: 1px solid #d4d1d1;
}

.shop_wrapper .product-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.item-fav-btn {
    display: flex;
    align-items: center;
    white-space: nowrap;
    justify-content: center;

    position: relative;
    transition: 0.3s all ease-in-out;
    background-color: #e9e9e9 !important;
}

.item-fav-btn:hover {
    background-color: #cccccc !important;
}

.item-fav-btn i {
    color: #222222;
    transition: 0.3s all ease-in-out;
}

.item-fav-btn:hover i {
    color: var(--bs-primary);
    transition: 0.3s all ease-in-out;
}

.item-fav-btn.active {
    color: #222222 !important;
    background-color: #e9e9e9 !important;
    transition: 0.3s all ease-in-out;
}

.item-fav-btn.active i {
    color: var(--bs-primary);
    transition: 0.3s all ease-in-out;
}

.product-item .item-img {
    border-radius: 8px;
}

.h-filter {
    border-radius: 4px;
    background-color: #ffffff;
}

@media (max-width: 1400px) {
    .shop_wrapper .btn {
        font-size: 16px;
        padding: 5px 10px;
    }
}

@media (max-width: 1200px) {
    .shop_wrapper .btn {
        padding: 5px 0;
    }
}

@media (max-width: 991px) {
    .shop_wrapper .btn {
        font-size: 18px;
        padding: 6px 15px;
    }
}

@media (max-width: 450px) {
    .d-none-450 {
        display: none;
    }

    .stock-title {
        margin-bottom: 0 !important;
    }

    .shop_wrapper .ref {
        text-align: start;
    }

    .grid-cols {
        margin-bottom: 10px;
    }
}

@media (min-width: 451px) {
    .d-none-451 {
        display: none;
    }
}

/* Ads Details */
.text-primary {
    color: var(--bs-primary) !important;
}

.car-detail-container {
    margin-top: 20px;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 400px;
}

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

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

.swiper-thumbs {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.swiper-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
}

.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--bs-primary);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--bs-primary) !important;
}

.swiper-pagination-bullet-active {
    background: var(--bs-primary);
}

.download-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 4px;
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    padding: 10px;
}

.download-all:hover {
    background: #ddd;
}

.actions i,
.shares i {
    margin-right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #666;
}

.actions i:hover,
.shares i:hover {
    color: var(--bs-primary);
}

.share-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-left: 10px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.email {
    background-color: #dd4b39;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
}

.feature-item i {
    color: #28a745;
    margin-right: 8px;
}

.landing-tags {
    margin: 20px 0;
}

.tag-icon {
    font-size: 22px;
    margin-top: -12px;
    margin-right: 10px;
    color: var(--bs-primary);
}

.landing-tags a {
    background-color: #f5f5f5;
    padding: 8px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
}

.info-car span {
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 16px;
}

.inquiry-area {
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #989898;
}

.country-port-delivery {
    background-color: #f5f5f5;
    padding: 10px;
    border-radius: 4px;
}

.big-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--bs-primary);
}

.cfj-button {
    padding: 12px;
    border-radius: 4px;
    border: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.mirror-light-btn {
    background-color: #bd2026;
    border: 1px solid #be2127;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.mirror-light-btn:hover {
    background-color: var(--bs-primary);
    color: white;
}

.btn-buy-now {
    position: relative;
    background: linear-gradient(to right, #1a73e8, #6c8ef5);
    color: white;
    overflow: hidden;
}

.btn-buy-now:hover {
    opacity: 0.9;
}

.btn-buy-now::after,
.mirror-light-btn:after {
    content: "";
    position: absolute;
    width: 25px;
    top: -7px;
    height: 72px;
    background: linear-gradient(268.66deg, #ffffff -5.88%, rgba(255, 255, 255, .24) 51.18%, rgba(255, 255, 255, 0) 102.58%);
    transform: matrix(.91, .24, -.48, .96, 0, 0);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -15px
    }

    to {
        left: calc(100%)
    }
}

.icon-left {
    margin-right: 10px;
}

.payment-icons i {
    font-size: 30px;
    color: #666;
}

.sticky-outer-wrapper {
    position: sticky;
    top: 100px;
}

.promotion-code {
    margin-top: 10px;
    padding: 8px;
    background-color: #f5f5f5;
    border-radius: 4px;
    font-size: 16px;
}

.inspection,
.insurance {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form-group.clickable {
    cursor: pointer;
}

.form-group.clickable i {
    margin-right: 8px;
}

.icon-tooltip {
    margin-left: 10px;
    color: #666;
}

.input-group-addon {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.input-group-addon i {
    color: #666;
}

.icon-phone {
    padding: 0 10px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    height: 38px;
}

.charged {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.powered-by {
    color: #666;
    margin-right: 10px;
}

.spec-icon {
    width: 24px;
    text-align: center;
    margin-right: 10px;
    color: var(--bs-primary);
}

.badge {
    padding: 5px 8px;
    display: inline-block;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    height: auto;
    background-color: #f1eeee !important;
}

.modal {
    z-index: 9999;
}

.swiper-pagination {
    display: none;
}

.spec-box {
    background: #fff;
    border: 1px solid #d6e9f9;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.spec-header {
    background: #e9f3fc;
    color: #333;
    font-weight: 600;
    text-align: center;
    padding: 12px;
    font-size: 18px;
    /* font-size: 20px; */
    border-bottom: 1px solid #d6e9f9;
}

.spec-table td {
    vertical-align: middle;
    padding: 10px;
    font-size: 16px;
    /* font-size: 18px; */
    border-color: #cfcfcf;
}

/* Even row background */

.spec-table tr:nth-child(even) {
    background-color: #f9fbfd;
}

/* 1st & 3rd column background */
.spec-table td:nth-child(1),
.spec-table td:nth-child(3) {
    background-color: #f1f6fb;
    font-weight: 400;
    width: 25%;
}

.spec-table td:nth-child(2),
.spec-table td:nth-child(4) {
    width: 25%;
}

.spec-table tbody tr:last-child td:first-child {
    background-color: transparent !important;
}

.spec-table tbody tr:last-child td:nth-child(2) {
    background-color: #f1f6fb !important;
}

.spec-table tbody tr:last-child td:last-child {
    background-color: transparent !important;
}

.spec-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.details-box {
    background: #fff;
    border: 1px solid #d6e9f9;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accessories-header {
    background: #e9f3fc;
    color: #333;
    font-weight: 600;
    text-align: center;
    padding: 12px;
    font-size: 20px;
    border-bottom: 1px solid #d6e9f9;
}

.accessory-category {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.accessory-category:last-child {
    border-bottom: none;
}

.accessory-category h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.accessory-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.accessory-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #333;
}

.accessory-item i {
    color: #28a745;
    font-size: 18px;
    margin-right: 5px;
}

.car-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.car-card:hover {
    transform: translateY(-3px);
}

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

.car-info {
    padding: 0 15px 10px 15px;
}

.car-info h6 {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    /* font-size: 18px; */
}

.car-info p {
    margin: 2px 0;
    font-size: 16px;
    /* font-size: 18px; */
    color: #555;
}

.car-price {
    color: #007bff;
    font-weight: bold;
    font-size: 16px;
    margin-top: 5px;
}

.form-select:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .car-detail-container>div {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .sticky-outer-wrapper {
        position: static;
    }

    .swiper {
        height: 300px;
    }

    .swiper-thumbs {
        height: 80px;
    }
}

@media (max-width: 575px) {
    /* .spec-table td {
        display: block;
        width: 100%;
        text-align: left;
    }

    .spec-table tr {
        display: block;
        margin-bottom: 10px;
        border: 1px solid #eaeaea;
        border-radius: 5px;
        background: #fff;
    }

    .spec-table td:nth-child(1),
    .spec-table td:nth-child(3) {
        background-color: #f1f6fb;
    } */

    .spec-table tr {
        margin-bottom: 10px;
        border: 1px solid #eaeaea;
        border-radius: 5px;
        background: #fff;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-table tr td {
        width: 100% !important;
        display: block;
        padding: 8px;
        text-align: left;
        border-bottom: 1px solid #c6c6c6 !important;
    }

    .spec-table tr td:last-child,
    .spec-table tr td:nth-last-child(2) {
        border-bottom: 0 !important;
    }

    .spec-table td:nth-child(1),
    .spec-table td:nth-child(3) {
        background-color: #f1f6fb;
    }

    .spec-table td[colspan="2"] {
        width: 100%;
        background-color: #f1f6fb;
        font-weight: 600;
    }

    .spec-table tr:last-child {
        display: flex;
        flex-wrap: wrap;
    }

    .spec-table tr:last-child td:nth-child(1) {
        width: 100% !important;
    }

    .spec-table tr:last-child td:nth-child(2),
    .spec-table tr:last-child td:nth-child(3) {
        width: 50% !important;
    }
}

/* @media(max-width: 350px){
    .owl-stage-outer {
        padding: 50px 0 !important;
    }
} */

@media (max-width: 991px) and (min-width: 768px) {
    .country-code {
        width: 65px;
    }

    .country-code .country-code-select {
        width: 110px;
        border-top-left-radius: 6px !important;
        border-bottom-left-radius: 6px !important;
    }

    .custom-input {
        width: 160px;
    }
}

/* === Modern User Dashboard === */
.dashboard_section {
    background: #f7f9fc;
    padding: 24px 0 48px;
    min-height: 60vh;
}

.dashboard_section .dashboard_wrapper {
    background: #ffffff;
    border: 1px solid #eef1f5;
    border-radius: 14px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 28px !important;
}

.dashboard-welcome {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eef1f5;
}

.dashboard-welcome h3 {
    font-size: 22px;
    font-weight: 700;
    color: #001d3d;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}

.dashboard-welcome p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

/* Modern stat cards */
.stat-cards { margin-bottom: 28px; }

.stat-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #eef1f5;
    transition: all 0.25s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 110px;
    gap: 16px;
}

.stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--bs-primary);
    transition: width 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 114, 186, 0.12);
    border-color: var(--bs-primary);
    text-decoration: none;
}

.stat-card:hover::before { width: 6px; }

.stat-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: #ffffff;
    background: var(--bs-primary);
}

.stat-card-primary::before,
.stat-card-primary .stat-card-icon { background: #0072BA; }

.stat-card-success::before,
.stat-card-success .stat-card-icon { background: #28a745; }

.stat-card-warning::before,
.stat-card-warning .stat-card-icon { background: #f59e0b; }

.stat-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.stat-card .stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.stat-card .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #001d3d;
    line-height: 1.1;
}

.stat-card-action {
    font-size: 12px;
    font-weight: 600;
    color: var(--bs-primary);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease;
}

.stat-card:hover .stat-card-action { gap: 10px; }

/* FAQ section */
.dashboard_section .faq-section {
    margin-top: 32px;
}

.faq-heading {
    font-size: 18px;
    font-weight: 700;
    color: #001d3d;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
}

.dashboard_section .accordion-item {
    border: 1px solid #e8ecf0 !important;
    border-radius: 10px !important;
    margin-bottom: 8px;
    overflow: hidden;
}

.dashboard_section .accordion-button {
    background-color: #ffffff;
    color: #001d3d;
    font-weight: 500;
    padding: 14px 18px;
    border-radius: 10px !important;
    margin-bottom: 0;
    transition: background 0.2s ease;
}

.dashboard_section .accordion-button:not(.collapsed) {
    background-color: #f1f5fa;
    color: var(--bs-primary);
    box-shadow: none;
}

.dashboard_section .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(0, 114, 186, 0.12);
}

.dashboard_section .accordion-body {
    padding: 14px 18px;
    color: #495057;
    background: #fafbfc;
    font-size: 14px;
}

/* Tab nav (My Inquiry / My Orders / Favourite / etc.) */
.dashboard_profile {
    background: #ffffff;
    border: 1px solid #eef1f5;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    margin-bottom: 18px;
}

.user-dash-btns {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.user-dash-btns li { display: flex; }

.user-dash-btns li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px !important;
    border-radius: 8px;
    font-size: 14px !important;
    font-weight: 500;
    color: #495057 !important;
    background: transparent !important;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.user-dash-btns li a i {
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.user-dash-btns li a:hover {
    background: #f1f5fa !important;
    color: var(--bs-primary) !important;
}

.user-dash-btns li a.active {
    background: var(--bs-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 114, 186, 0.25);
}

.user-dash-btns > span {
    display: none !important;
}

@media (max-width: 991px) {
    .stat-card { padding: 16px; }
    .stat-card-icon { width: 48px; height: 48px; font-size: 18px; }
    .stat-card .stat-value { font-size: 22px; }
    .user-dash-btns { flex-direction: column; }
    .user-dash-btns li { width: 100%; }
}

.dashboard_section .show-more {
    margin-top: 12px;
    cursor: pointer;
    color: var(--bs-primary);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f1f5fa;
    border-radius: 8px;
    border: 1px solid #e3e7ec;
    transition: all 0.2s ease;
}

.dashboard_section .show-more:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border-color: var(--bs-primary);
}

.dashboard_section .show-more::after {
    content: "↓";
    font-size: 14px;
}

.dashboard_section .dashboard-car-card {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    background: #fff;
    margin-bottom: 16px;
}

.dashboard_section .car-img {
    width: 200px;
    border-radius: 8px;
    object-fit: cover;
    height: 100%;
}

.dashboard_section .car-info h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.dashboard_section .car-info p {
    margin-bottom: 5px;
    font-size: 18px;
    color: #555;
}

.dashboard_section .car-price {
    font-weight: 700;
    color: #000;
}

.dashboard_section .btn-inquire {
    background: var(--bs-primary);
    color: #fff;
    border: none;
    width: 100%;
    margin-bottom: 8px;
    height: max-content;
    padding: 6px 30px;
    max-width: max-content;
    transition: 0.3s all ease-in-out;
}

.dashboard_section .btn-inquire:hover {
    color: #fff;
    background: #a81c23;
}

.dashboard_section .btn-buy {
    background: #0d6efd;
    color: #fff;
    border: none;
    width: 100%;
    height: max-content;
    padding: 6px 30px;
    max-width: max-content;
    transition: 0.3s all ease-in-out;
}

.dashboard_section .btn-buy:hover {
    color: #fff;
    background: #0b5acf;
}


.dashboard_section .total-price {
    font-size: 18px;
    font-weight: 500;
    color: #0056b3;
}

.dashboard_section .total-price span {
    color: #222222;
}

.dashboard_section .car-info .title h5 {
    color: #222222;
    transition: 0.3s all ease-in-out;
}

.dashboard_section .car-info .title:hover h5 {
    color: var(--bs-primary);
}

/* Compare Offcanvas */
:root {
    --compareColumn: 120px;
}

.compare-offcanvas {
    height: auto !important;
    box-shadow: rgba(0, 0, 0, 0.45) 0px -25px 20px -20px;
}

.compare-offcanvas .remove-btn {
    top: 5px;
    border: 0;
    padding: 0;
    right: 5px;
    z-index: 99;
    font-size: 20px;
    position: absolute;
    background: transparent;
    color: var(--bs-primary);
}

.compare-offcanvas .compare-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.compare-offcanvas .compare-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-offcanvas .compare-container {
    overflow-x: auto;
    height: 100%;
}

.compare-offcanvas .compare-table-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.compare-offcanvas .offcanvas-body {
    padding: 0;
    overflow: hidden;
}

.compare-offcanvas .compare-header-row {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    min-width: max-content;
}

.compare-offcanvas .compare-header-cell {
    padding: 10px;
    display: flex;
    font-weight: bold;
    position: relative;
    align-items: center;
    justify-content: center;
    min-width: var(--compareColumn);
    border-right: 1px solid #dee2e6;
}

.compare-offcanvas .compare-header-cell:first-child {
    min-width: var(--compareColumn);
    justify-content: center;
    background-color: #e9ecef;
}

.compare-offcanvas .compare-data-row {
    display: flex;
    border-bottom: 1px solid #dee2e6;
    min-width: max-content;
}

.compare-offcanvas .compare-data-cell {
    padding: 5px;
    min-width: var(--compareColumn);
    border-right: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-offcanvas .compare-data-cell:first-child {
    min-width: var(--compareColumn);
    justify-content: center;
    background-color: #f8f9fa;
    font-weight: 600;
}

.compare-offcanvas .compare-data-cell img {
    max-width: 100%;
    height: 80px;
    object-fit: cover;
}

.compare-offcanvas .attribute-header {
    background-color: #e9ecef;
    font-weight: bold;
}

.compare-offcanvas .compire-inquire-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 5px;
}

.compare-offcanvas .compire-inquire-btn:hover {
    background-color: #218838;
}

.compare-offcanvas .offcanvas-bottom {
    height: 70vh;
}

.compare-offcanvas .add-to-compare {
    display: none;
}

.compare-offcanvas .check-label {
    cursor: pointer;
    margin: 0;
}

.compare-offcanvas .offcanvas-header {
    color: #ffffff;
    background-color: var(--bs-primary);
}

.add-to-compare {
    position: absolute;
    right: -22px;
    top: 6px;
}

/* Offcanvas Responsive */
.compare-offcanvas {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

/* Small devices (≥576px) */
@media (min-width: 576px) {
  .compare-offcanvas {
    max-width: 540px;
  }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
    .compare-offcanvas {
        max-width: 720px;
    }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
    .compare-offcanvas {
        max-width: 960px;
    }

    :root {
        --compareColumn: 156px;
    }
}

/* Extra large devices (≥1200px) */
@media (min-width: 1200px) {
    .compare-offcanvas {
        max-width: 1140px;
    }

    :root {
        --compareColumn: 186px;
    }
}

/* Extra extra large devices (≥1400px) */
@media (min-width: 1400px) {
    .compare-offcanvas {
        max-width: 1320px;
    }

    :root {
        --compareColumn: 216px;
    }
}

@media (max-width: 991px) {
    .compare-offcanvas .compare-header-cell,
    .compare-offcanvas .compare-header-cell:first-child,
    .compare-offcanvas .compare-data-cell,
    .compare-offcanvas .compare-data-cell:first-child {
        width: var(--compareColumn);
        max-width: var(--compareColumn);
    }

    .compare-offcanvas .compare-container {
        overflow: auto;
        height: 40vh;
    }
}

/* Inquire Section */
.inquiry-details-section .progress-container {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 10px;
}

.inquiry-details-section .back-link {
    display: block;
    font-weight: 500;
    white-space: nowrap;
    color: #0d6efd;
}

.inquiry-details-section .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 20%;
    cursor: pointer;
}

.inquiry-details-section .step-title {
    font-size: 16px;
    font-weight: 500;
    padding: 6px 20px;
    text-align: center;
    border-radius: 20px;
    color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.inquiry-details-section .step.active .step-title {
    color: #ffffff;
    border-color: #0d6efd;
    background-color: #0d6efd;
}

.inquiry-details-section .step.completed .step-title {
    color: #ffffff;
    background-color: var(--bs-primary);
    ;
}

/* Main Content Layout */
.inquiry-details-section .sidebar {
    flex: 0 0 30%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    height: 100%;
}

.inquiry-details-section .chat-panel {
    flex: 1;
    top: 102px;
    height: 87vh;
    display: flex;
    min-width: 300px;
    position: sticky;
    border-radius: 10px;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Car Details Styles */
.inquiry-details-section .car-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.inquiry-details-section .car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquiry-details-section .car-feature {
    margin-bottom: 20px;
}

.inquiry-details-section .car-feature strong {
    font-size: 18px;
    color: #333;
}

.inquiry-details-section .info-box {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.inquiry-details-section .info-header {
    background-color: #f8f9fa;
    padding: 12px 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.inquiry-details-section .info-body {
    padding: 15px;
}

.inquiry-details-section .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.inquiry-details-section .total-price {
    font-weight: 600;
    font-size: 18px;
    color: #0d6efd;
}

.inquiry-details-section .btn-action {
    width: 100%;
    padding: 12px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-weight: 500;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.inquiry-details-section .btn-action:hover {
    background-color: #e9ecef;
}

.inquiry-details-section .btn-buy-now {
    width: 100%;
    padding: 15px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    margin: 15px 0;
    transition: all 0.2s;
}

.inquiry-details-section .btn-buy-now:hover {
    background-color: #0b5ed7;
}

.inquiry-details-section .payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.inquiry-details-section .payment-icons i {
    font-size: 24px;
    color: #6c757d;
}

/* Step Content Styles */
.inquiry-details-section .step-content {
    display: none;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
}

.inquiry-details-section .step-content.active {
    display: block;
}

.inquiry-details-section .step-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0d6efd;
}

.inquiry-details-section .document-list {
    list-style-type: none;
    padding-left: 0;
}

.inquiry-details-section .document-list li {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inquiry-details-section .document-list li:last-child {
    border-bottom: none;
}

.inquiry-details-section .btn-upload {
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 12px;
}

.inquiry-details-section .upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.inquiry-details-section .upload-area:hover {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.inquiry-details-section .upload-area i {
    font-size: 40px;
    color: #6c757d;
    margin-bottom: 10px;
}

/* Chat Panel Styles */
.inquiry-details-section .chat-header {
    padding: 15px 20px;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
}

.inquiry-details-section .chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.inquiry-details-section .message {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.inquiry-details-section .message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.inquiry-details-section .message-content {
    flex: 1;
}

.inquiry-details-section .message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.inquiry-details-section .message-user {
    font-weight: 600;
}

.inquiry-details-section .message-time {
    font-size: 12px;
    color: #6c757d;
}

.inquiry-details-section .message-body {
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    line-height: 1.5;
}

.inquiry-details-section .message.user .message-body {
    display: flex;
    flex-direction: column;
    background-color: #e3f2fd;
}

.inquiry-details-section .message img {
    width: 250px;
    margin: 5px 0;
    max-width: 100%;
    border-radius: 6px;
    object-fit: contain;
}

.inquiry-details-section .file-attachment {
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.inquiry-details-section .file-attachment i {
    margin-right: 8px;
    color: #0d6efd;
}

.inquiry-details-section .chat-input {
    padding: 15px 20px;
    border-top: 1px solid #dee2e6;
    display: flex;
    gap: 10px;
}

.inquiry-details-section .chat-input textarea {
    flex: 1;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 10px 15px;
    resize: none;
    height: 100% !important;
}

.inquiry-details-section .chat-input button {
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0 20px;
    font-weight: 500;
}

.inquiry-details-section .chat-input .attach-btn {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 18px;
    padding: 0 10px;
    position: relative;
    overflow: hidden;
}

.inquiry-details-section .chat-input .attach-btn input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.inquiry-details-section .file-preview {
    margin-top: 10px;
    /* padding: 10px; */
    background-color: #f8f9fa;
    border-radius: 6px;
    display: none;
    width: 100%;
}

.inquiry-details-section .file-preview .file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.inquiry-details-section .file-preview .file-item i {
    color: #0d6efd;
    margin-right: 8px;
}

.inquiry-details-section .file-preview .remove-file {
    color: #dc3545;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .inquiry-details-section .sidebar,
    .inquiry-details-section .chat-panel {
        flex: 1;
    }

    .inquiry-details-section .step-progress {
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .inquiry-details-section .step-progress .step {
        width: 100%;
        display: block;
    }
}

@media (min-width: 992px) {
    .inquiry-details-section .step-progress {
        margin: 0;
        display: flex;
        position: relative;
        align-items: center;
        justify-content: space-between;
    }
}

/* =====================================================================
   MODERN POLISH LAYER — buttons, cards, inputs, micro-interactions
   ===================================================================== */

/* Smooth easing for everything interactive */
:root {
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm: 0 1px 2px rgba(0, 29, 61, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 29, 61, 0.08);
    --shadow-lg: 0 12px 28px rgba(0, 29, 61, 0.12);
    --shadow-blue: 0 8px 24px rgba(0, 114, 186, 0.25);
    --shadow-blue-lg: 0 14px 36px rgba(0, 114, 186, 0.35);
}

/* === BUTTONS — refined === */
.btn {
    border-radius: 10px !important;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: transform 0.25s var(--ease-out-quart),
                box-shadow 0.25s var(--ease-out-quart),
                background-color 0.25s ease,
                color 0.25s ease,
                border-color 0.25s ease !important;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: translateY(0) scale(0.98) !important;
    transition-duration: 0.08s !important;
}

/* Ripple-like glow on primary buttons */
.btn-primary,
.banner_section .btn-primary,
.shop_price .btn-primary,
.bid_form .btn-primary,
.signin_form .btn-primary {
    background: linear-gradient(135deg, #0072BA 0%, #0086d8 100%) !important;
    border: none !important;
    box-shadow: var(--shadow-blue);
    padding: 11px 22px;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-lg);
    background: linear-gradient(135deg, #005a94 0%, #0072BA 100%) !important;
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Outline buttons */
.btn-outline-primary,
.btn-outline-danger {
    border-width: 1.5px !important;
    background: transparent;
    transition: all 0.25s var(--ease-out-quart);
}

.btn-outline-primary {
    color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

.btn-outline-primary:hover {
    background: var(--bs-primary) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.btn-outline-danger {
    color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}

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

/* Light button — used as secondary CTA */
.btn-light {
    background: #ffffff !important;
    border: 1px solid #e3e7ec !important;
    color: var(--bs-primary) !important;
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background: #f1f5fa !important;
    border-color: var(--bs-primary) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Small button refinement */
.btn-sm {
    border-radius: 8px !important;
    padding: 6px 14px !important;
    font-size: 13px !important;
}

/* === CARDS — softer, layered shadows === */
.pro-card {
    border: 1px solid #eef1f5 !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    transition: transform 0.3s var(--ease-out-quart),
                box-shadow 0.3s var(--ease-out-quart),
                border-color 0.3s ease !important;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.pro-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, transparent 70%, rgba(0,114,186,0.04) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pro-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(0, 114, 186, 0.18) !important;
    border-color: rgba(0, 114, 186, 0.2) !important;
}

.pro-card:hover::after { opacity: 1; }

.pro-card img {
    transition: transform 0.5s var(--ease-out-quart) !important;
}

.pro-card:hover img {
    transform: scale(1.06) !important;
}

/* === FORM INPUTS — modern focus rings === */
.form-control,
.form-select {
    border-radius: 10px !important;
    border: 1.5px solid #e3e7ec !important;
    padding: 11px 14px !important;
    font-size: 14px !important;
    transition: border-color 0.25s ease,
                box-shadow 0.25s ease,
                background-color 0.25s ease !important;
    background: #ffffff !important;
}

.form-control:hover:not(:focus),
.form-select:hover:not(:focus) {
    border-color: #c5cdd6 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary) !important;
    box-shadow: 0 0 0 4px rgba(0, 114, 186, 0.12) !important;
    outline: none !important;
}

.form-control::placeholder {
    color: #9aa3ad !important;
    font-weight: 400;
}

/* === LINKS — smooth color transitions === */
a {
    transition: color 0.2s ease !important;
}

a:hover {
    color: var(--bs-primary-hover);
}

/* === SECTION HEADINGS — accent line === */
.section_heading h4,
.section_heading h2 {
    position: relative;
    font-weight: 700;
    color: #001d3d;
    letter-spacing: -0.3px;
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.section_heading h4::after,
.section_heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary) 0%, #00a3e0 100%);
    border-radius: 2px;
}

/* === BADGES & CHIPS — softer === */
.badge {
    border-radius: 6px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    padding: 5px 10px !important;
}

/* === DROPDOWN MENU === */
.dropdown-menu {
    border: 1px solid #eef1f5 !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 28px rgba(0, 29, 61, 0.12) !important;
    padding: 8px !important;
    margin-top: 6px !important;
}

.dropdown-item {
    border-radius: 6px !important;
    padding: 8px 14px !important;
    font-size: 14px !important;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease !important;
}

.dropdown-item:hover {
    background: #f1f5fa !important;
    color: var(--bs-primary) !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--bs-primary) !important;
    color: #fff !important;
}

/* === BREADCRUMB — refined === */
.breadcrumb_sec {
    background: #1a1a2e;
    padding: 14px 0 !important;
}

.breadcrumb {
    margin: 0 !important;
    background: transparent !important;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #ffffff !important;
}

.breadcrumb-item.active {
    color: var(--bs-primary) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4) !important;
}

/* === ACCORDION — rounded modern === */
.accordion-item {
    border: 1px solid #eef1f5 !important;
    border-radius: 10px !important;
    margin-bottom: 8px;
    overflow: hidden;
    background: #fff;
}

.accordion-button {
    border-radius: 10px !important;
    font-weight: 500;
    transition: background 0.2s ease;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(0,114,186,0.12) !important;
}

.accordion-button:not(.collapsed) {
    background: #f1f5fa !important;
    color: var(--bs-primary) !important;
}

/* === TABLES — modernize === */
.table thead th {
    background: #f7f9fc !important;
    color: #001d3d;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #eef1f5 !important;
    padding: 14px 12px !important;
}

.table tbody tr {
    transition: background 0.15s ease;
}

.table tbody tr:hover {
    background: #f7f9fc !important;
}

.table td {
    vertical-align: middle;
    padding: 14px 12px !important;
}

/* === PAGINATION === */
.page-link {
    border-radius: 8px !important;
    margin: 0 3px;
    border: 1px solid #eef1f5 !important;
    color: var(--bs-primary) !important;
    font-weight: 500;
    padding: 8px 14px !important;
    transition: all 0.2s ease !important;
}

.page-link:hover {
    background: #f1f5fa !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-primary) !important;
    transform: translateY(-1px);
}

.page-item.active .page-link {
    background: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: #fff !important;
    box-shadow: var(--shadow-blue);
}

/* === SCROLLBAR — modern thin === */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f1f5fa; }
::-webkit-scrollbar-thumb {
    background: #c5cdd6;
    border-radius: 5px;
    border: 2px solid #f1f5fa;
}
::-webkit-scrollbar-thumb:hover { background: var(--bs-primary); }

/* === SELECTION === */
::selection {
    background: rgba(0, 114, 186, 0.18);
    color: #001d3d;
}

/* === SOCIAL ICONS in top bar — hover lift === */
.top-bar a {
    transition: transform 0.2s var(--ease-out-back), color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.top-bar a:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

/* === ICON-CIRCLE buttons (favourite hearts) === */
.pro-card .favourite-toggle,
.pro-card [class*="wishlist"] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--ease-out-back);
    box-shadow: var(--shadow-sm);
}

.pro-card .favourite-toggle:hover,
.pro-card [class*="wishlist"]:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* === GLOBAL FOCUS-VISIBLE for keyboard nav === */
*:focus-visible {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

a:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: none;
}

/* === SECTION DIVIDERS — subtle gradient lines === */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c5cdd6, transparent);
    opacity: 1;
}

/* === HEADING TYPOGRAPHY refinement === */
h1, h2, h3, h4, h5, h6 {
    color: #001d3d;
    letter-spacing: -0.3px;
}

/* === SMOOTH FADE-IN for images === */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

/* === PRICE TAG STYLING (used everywhere) === */
.listing_price,
.price-display {
    font-weight: 700;
    color: var(--bs-primary);
    letter-spacing: -0.3px;
}

/* === MOTION-REDUCED USERS === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
