@font-face {
    font-family: 'Uxum';
    src: url('../font/oxum/Uxum-Bold.woff2') format('woff2'),
        url('../font/oxum/Uxum-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uxum';
    src: url('../font/oxum/Uxum-Light.woff2') format('woff2'),
        url('../font/oxum/Uxum-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uxum';
    src: url('../font/oxum/Uxum-Regular.woff2') format('woff2'),
        url('../font/oxum/Uxum-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/outfit/Outfit-Bold.woff2') format('woff2'),
        url('../font/outfit/Outfit-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/outfit/Outfit-Black.woff2') format('woff2'),
        url('../font/outfit/Outfit-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/outfit/Outfit-Thin.woff2') format('woff2'),
        url('../font/outfit/Outfit-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/outfit/Outfit-Light.woff2') format('woff2'),
        url('../font/outfit/Outfit-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/outfit/Outfit-Medium.woff2') format('woff2'),
        url('../font/outfit/Outfit-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/outfit/Outfit-Regular.woff2') format('woff2'),
        url('../font/outfit/Outfit-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/outfit/Outfit-ExtraLight.woff2') format('woff2'),
        url('../font/outfit/Outfit-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/outfit/Outfit-Thin.woff2') format('woff2'),
        url('../font/outfit/Outfit-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/outfit/Outfit-SemiBold.woff2') format('woff2'),
        url('../font/outfit/Outfit-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../font/outfit/Outfit-ExtraBold.woff2') format('woff2'),
        url('../font/outfit/Outfit-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --light-another: #7c747071;
    --light-gray: #D9D9D9;
    --dark: #1C3440;
    --light: #808080;
    --border: #D1D5DB;
    --primary-light: #F881771A;
    --blue: #4971FF;
    --footer-color: #1C3440;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'Outfit';
}

body,
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* login design  */
.login-main-wrapper {
    width: 100%;
    height: 100vh;
    background-color: var(--light-another);
}

.login-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid var(--bs-primary);
    background-color: var(--bs-white);
    position: relative;
}

.login-wrapper::after {
    position: absolute;
    content: "";
    width: 143.0037384033203px;
    height: 20.17844009399414px;
    top: 0px;
    left: 50%;
    z-index: 2;
    /* border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px; */
    transform: translateX(-50%);
    /* background-color: var(--bs-primary); */
    background-image: url('../img/icon/notch.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* login design */
.login-leftside {
    width: 50%;
    flex: 0 0 auto;
    height: calc(100vh - 19.5px);
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

.login-rightside {
    width: 50%;
    height: calc(100vh - 19.5px);
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.login-rightside-content {
    overflow-y: auto;
    padding: 50px;
    height: auto;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
}

.login-rightside-content::-webkit-scrollbar {
    width: 6px;
}

.login-rightside-content::-webkit-scrollbar-track {
    background-color: var(--another);
}

.login-rightside-content::-webkit-scrollbar-thumb {
    background-color: var(--border);
    border-radius: 6px;
}

.login-leftside .background-image {
    width: 100%;
    height: 100%;
}

.login-content {
    position: absolute;
    width: 80%;
    bottom: 0;
    left: 0;
    padding: 50px 50px;
}

.login-content h1 {
    font-family: 'Outfit';
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--bs-white);
}

.login-content p {
    font-family: 'Outfit';
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--bs-white);
}

.dot-wrapper {
    position: relative;
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.dot-wrapper .dot-item {
    width: 19px;
    height: 9px;
    border-radius: 4.95px;
    background-color: var(--light-gray);
}

.dot-wrapper .dot-item.active {
    width: 41px;
    background-color: var(--bs-primary);
}

.heading {
    font-family: 'Uxum';
    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--bs-black);
}

.text {
    font-family: 'Outfit';
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
}

.form-label {
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--dark);
}

.form-control,
.form-select {
    font-family: 'Outfit';
    font-weight: 400;
    color: var(--light);
    border-radius: 10px;
    height: 46px;
    border-color: var(--border);
}

.comman-btn,
.comman-white-btn {
    width: 100%;
    height: 46px;
    padding: 0 15px;
    font-family: Outfit;
    font-weight: 600;
    font-size: 16px;
    line-height: 104%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--bs-white);
    border: 0;
    cursor: pointer;
    background-color: var(--bs-primary);
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.comman-white-btn {
    color: var(--bs-dark);
    background-color: var(--bs-white);
    border: 1px solid var(--bs-dark);
}

.form-checkbox {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--bs-primary);
    border-radius: 5px;
    cursor: pointer;
    accent-color: var(--bs-primary);
    background-color: var(--bs-white);
}

.link {
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--bs-primary);
}

.or-text {
    position: relative;
    text-align: center;
}

.or-text span {
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--dark);
    padding: 5px 10px;
    background-color: var(--bs-white);
}

.or-text::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    height: 2px;
    background-color: var(--border);
    width: 50%;
}

.custom-middle-gap {
    row-gap: 20px;
}

.select-card {
    width: 100%;
    border-radius: 8px;
    padding: 12px 15px;
    background-color: var(--bs-white);
    border: 1px solid var(--border);
}

.select-card p:first-child {
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--dark);
    margin: 0;
}

.select-card p:last-child {
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--light-another);
    margin: 0
}

.select-card.selected {
    border: 1px solid var(--bs-primary);
}

.select-card.selected p:first-child {
    color: var(--bs-primary);
}

.gender-box {
    border-radius: 10px;
    padding: 10px;
    background-color: var(--bs-white);
    border: 1px solid var(--border);
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gender-box img {
    filter: brightness(0);
}

.gender-box.check {
    background-color: var(--primary-light);
    color: var(--bs-primary);
    border-color: transparent;
}

.gender-box.check img {
    filter: brightness(1);
}

.form-password {
    padding-right: 40px;
}


.icon-input {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.icon-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Header Design */
.main-header {
    background-color: var(--bs-white);
    padding: 10px 0;
    box-shadow: 0px 4px 20px 0px #0000000D;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo-wrapper img {
    height: 60px;
    object-fit: contain;
}

.header-search-wrapper {
    max-width: 391px;
    background-color: var(--primary-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 38px;
    width: 100%;
}

.search-icon {
    width: 20px;
    height: 20px;
    filter: invert(50%);
    /* Make it grayish */
}

.header-search-input {
    background: transparent;
    border: none !important;
    height: 100%;
    padding: 0;
    font-size: 14px;
    font-family: 'Outfit';
    color: var(--dark);
}

.header-search-input:focus {
    box-shadow: none;
    background: transparent;
}

.header-search-input::placeholder {
    color: var(--light);
}

.action-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--bs-primary);
    border-radius: 6.45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background-color: var(--bs-white);
}

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

.action-btn:hover {
    background-color: var(--primary-light);
}

.comman-btn.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: auto;
    font-size: 14px;
    padding: 10px 15px;
    height: 38px;
}

.container-fluid {
    width: 100%;
    padding: 0 30px;
}

/* Banner Design */
.banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 86px);
    /* Adjust based on header height */
    overflow: hidden;
    margin-top: 20px;
    border-radius: 20px;
}

.banner .container-fluid {
    padding: 0 30px;
    background-color: var(--bs-white);
}

.banner-wrapper {
    height: calc(100vh - 126px);
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.banner-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    z-index: 2;
    color: var(--bs-white);
}

.banner-content h1 {
    font-family: 'Outfit';
    font-weight: 700;
    font-size: 60px;
    line-height: 110%;
    margin-bottom: 15px;
    text-shadow: 0px 4px 40px rgba(0, 0, 0, 0.25);
}

.banner-content p {
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-shadow: 0px 4px 40px rgba(0, 0, 0, 0.25);
}

.filter-bar-wrapper {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    z-index: 3;
}

.filter-bar {
    background: #00000094;
    /* Dark semi-transparent background */
    backdrop-filter: blur(10px);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-label {
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 14px;
    color: var(--bs-white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-label img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    /* Make icons white */
}

.filter-input {
    height: 46px;
    border-radius: 10px;
    border: none;
    font-family: 'Outfit';
    font-size: 12px;
    color: var(--dark);
    background-color: var(--bs-white);
}

.filter-input:focus {
    box-shadow: none;
}

.filter-btn {
    height: 46px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.search-btn-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.comman-white-btn img {
    width: 16px;
    height: 16px;
}

.comman-section-padding {
    padding: 40px 0;
}

.comman-heading {
    text-align: center;
}

.comman-heading h2 {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    margin-bottom: 15px;
}

.comman-heading h2 span {
    color: var(--bs-primary);
}

.comman-heading p {
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 15px;
    max-width: 600px;
    margin: auto;
}

.card-text {
    width: 100%;
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.card-text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-color: #0000008A;
    transition: opacity 0.4s ease, background-color 0.4s ease;
}

.card-text:hover::after {
    opacity: 0.5;
    background-color: #000000CC;
}

.card-text p {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--bs-white);
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-text:hover p {
    transform: translateY(-8px);
}

.card-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card-text:hover img {
    transform: scale(1.1);
}

.card-text img::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: radial-gradient(120px circle at var(--x) var(--y),
            rgba(255, 255, 255, 0.4),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.row-spacing {
    margin-top: 50px;
}

.light-heading {
    font-family: 'Uxum';
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #737373;
}

.light-text {
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 0%;
    color: var(--light);
}

.brand-banner-wrapper {
    width: 100%;
    height: calc(100vh - 100px);
    background-image: url('../img/bg/bg-car.svg');
    background-size: cover;
    background-position: center;
}

.category-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.learn-btn {
    width: 128px;
    height: 36px;
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--bs-white);
    border: 0;
    background-color: var(--blue);
}

.brand-banner-content {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.brand-banner-content h1 {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 45px;
    line-height: 49.5px;
    letter-spacing: 0%;
    color: var(--bs-white);
    margin-bottom: 30px;
    max-width: 400px;
}

.brand-banner-content h5 {
    font-family: 'Uxum';
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    line-height: 35.04px;
    letter-spacing: 1px;
    color: var(--bs-primary);
    margin-bottom: 40px;
}

.custom-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Accordion Design */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: transparent;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.accordion-button {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: var(--dark);
    background-color: var(--bs-white);
    box-shadow: none;
    padding: 20px 24px;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-white);
    background-color: var(--bs-primary);
    box-shadow: none;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3e%3c/svg%3e");
    background-size: 20px;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8Z'/%3e%3c/svg%3e");
    transform: rotate(0deg);
    /* Bootstrap rotates it 180deg, we want minus so no rotation needed relative to our icon choice or we reset it */
}

/* Override Bootstrap rotation if using a custom minus icon that doesn't need rotation */
.accordion-button:not(.collapsed)::after {
    transform: none;
}

.accordion-body {
    padding: 24px;
    background-color: var(--bs-white);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-body p {
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: var(--light);
    margin: 0;
}


/* Footer Design */
.footer {
    background-color: var(--footer-color);
    padding: 80px 0 30px;
    color: var(--bs-white);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-text {
    font-family: 'Outfit';
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #B0B0B0;
    /* Lighter grey for text on dark bg */
    max-width: 350px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--bs-primary);
    transform: translateY(-3px);
}

.social-btn img {
    width: 18px;
    height: 18px;
    /* Make icons white */
}

.social-btn img {
    filter: invert(1);
}

.footer-heading {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--bs-white);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-family: 'Outfit';
    font-size: 16px;
    color: #B0B0B0;
    text-decoration: none;
    transition: all 0.3sease;
}

.footer-links a:hover {
    color: var(--bs-primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-family: 'Outfit';
    font-size: 16px;
    color: #B0B0B0;
    align-items: flex-start;
}

.footer-contact li img {
    width: 20px;
    height: 20px;
}


.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bs-white);
    font-family: 'Outfit';
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.language-selector img {
    filter: invert(1);
    width: 20px;
}

.language-selector svg {
    width: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-family: 'Outfit';
    font-size: 14px;
    color: #808080;
}


/* Category Page Design */
.breadcrumb-item+.breadcrumb-item {
    position: relative;
    padding-left: 20px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "";
    background-image: url("../img/icon/angle-right.svg");
    background-size: 12px 10px;
    background-repeat: no-repeat;
    width: 16px;
    height: 10px;
    position: absolute;
    top: 54%;
    left: 3px;
    transform: translateY(-50%);
}

.breadcrumb-item a {
    color: var(--light);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Outfit';
    display: inline-block;
    cursor: pointer;
}

.breadcrumb-item.active {
    color: var(--bs-primary);
    font-size: 14px;
    font-family: 'Outfit';
    margin-top: 3px;
    cursor: pointer;
}

.category-title {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 36px;
    color: #1C3440;
}

.category-subtitle {
    font-family: 'Outfit';
    font-size: 16px;
    color: var(--light);
}

.category-pill {
    background-color: #F8F9FA;
    color: #1C3440;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Outfit';
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-pill:hover,
.category-pill.active {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.filter-sidebar {
    background-color: var(--bs-white);
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.filter-heading {
    font-family: 'Outfit';
    font-weight: 600;
    font-size: 16px;
    color: #1C3440;
}

.search-icon-small {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    cursor: pointer;
}

.form-check-label {
    font-family: 'Outfit';
    font-size: 14px;
    color: #1C3440;
    cursor: pointer;
}

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

.btn-clear-filter {
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
    background: transparent;
    padding: 10px;
    border-radius: 5px;
    font-family: 'Outfit';
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.result-count {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 20px;
    color: #1C3440;
}

.car-card {
    background-color: var(--bs-white);
    border: 1px solid var(--bs-primary);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.car-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.car-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background-color: #F8F9FA;
}

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

.badge-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(28, 52, 64, 0.4);
    backdrop-filter: blur(4px);
    color: var(--bs-white);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-family: 'Outfit';
    box-shadow: 0px 2px 4px 0px #FFFFFF66 inset;
    box-shadow: 0px -2px 4px 0px #FFFFFF66 inset;
    backdrop-filter: blur(8px);
    border: 0.5px solid #FFFFFF66;
}

.badge-status.sold {
    color: var(--bs-primary);
    border: 0.5px solid;
    box-shadow: 0px 2px 4px 0px var(--bs-primary) inset;
    box-shadow: 0px -2px 4px 0px var(--bs-primary) inset;
    backdrop-filter: blur(8px);
}

.badge-status.out-of-stock {
    color: var(--bs-white);
    border: 0.5px solid var(--bs-white);
    box-shadow: 0px 2px 4px 0px var(--bs-white) inset;
    box-shadow: 0px -2px 4px 0px var(--bs-white) inset;
    backdrop-filter: blur(8px);
}

.btn-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(28, 52, 64, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid var(--bs-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 2px 4px 0px var(--bs-white) inset;
    box-shadow: 0px -2px 4px 0px #FFFFFF66 inset;
    backdrop-filter: blur(4px)
}

.btn-wishlist img {
    width: 14px;
    height: 14px;
    filter: invert(1);
}

.btn-wishlist.wishlist-added img {
    filter: none;
}

.car-details {
    padding: 20px;
}

.car-year-brand {
    display: inline-block;
    background-color: #FFF9F8;
    color: var(--bs-primary);
    font-family: 'Outfit';
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
    border: 1px solid var(--bs-primary);
}

.cart-icon-small {
    width: 26px;
    height: 26px;
    border: 2px solid var(--bs-primary);
    padding: 3px 4px;
    border-radius: 4px;
    cursor: pointer;
}

.car-title {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 18px;
    color: #1C3440;
    margin-bottom: 0;
}

.car-price {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 18px;
    color: var(--bs-primary);
    margin: 0;
}

.btn-view-details {
    background-color: transparent;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
    font-family: 'Outfit';
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0px 10px 15px 0px #F8CDCD66 inset;
    box-shadow: 0px 4px 6px 0px #F8CDCD66 inset;
    text-decoration: none;
}

.btn-view-details:hover {
    background-color: #FFE7E5;
}

.badge-run {
    display: inline-block;
    background-color: #FFF9F8;
    color: var(--bs-primary);
    font-family: 'Outfit';
    font-size: 10px;
    padding: 0px 5px;
    border-radius: 15px;
    font-weight: 500;
    border: 1px solid var(--bs-primary);
}

.badge-run ul {
    padding-left: 10px;
    padding-bottom: 0;
    margin: 0;
    padding-bottom: 1px;
}

/* Product Details Page Styles */

.badge-hot-sales {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    display: inline-block;
    font-family: 'Outfit';
    font-weight: 500;
}

.product-title,
.product-price {
    font-family: 'Uxum';
    font-weight: 400;
    color: #1C3440;
    font-size: 42px;
}

.product-price {
    font-weight: 600;
    color: var(--bs-primary);
}

.product-subtitle {
    font-family: 'Outfit';
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: var(--light);
}

.product-subtitle.small {
    font-size: 14px;
}

.main-gallery-image {
    width: 85%;
    flex: 0 0 auto;
    height: 580px;
}

.main-gallery-image-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.thumbnail-gallery {
    width: 15%;
    height: 600px;
    overflow-y: auto;
    flex: 0 0 auto;
}

.thumbnail-gallery-items {
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
}

.thumbnail-gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-gallery-image .btn-wishlist-large {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.main-gallery-image .btn-wishlist-large img {
    width: 20px;
    height: 20px;
}

.spec-list li {
    font-family: 'Outfit';
    font-size: 14px;
}

.feature-item {
    background: #F8F9FA;
    padding: 10px;
    border-radius: 10px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 18px;
    height: 18px;
}

.bg-light-pink {
    background-color: #FFF5F4;
}

.section-heading {
    font-family: 'Uxum';
    font-weight: 700;
    color: #1C3440;
}

.score-badge {
    font-family: 'Uxum';
    font-size: 18px;
}

.progress {
    background-color: #E9ECEF;
    border-radius: 10px;
}

.progress-bar {
    border-radius: 10px;
}

.download-report-card {
    background: #FFF0EF;
}

/* Dashboard Design */
.dashboard-wrapper {
    background-color: #F9F9F9;
}

.dashboard-sidebar {
    background-color: var(--bs-white);
    border-radius: 10px;
    padding: 30px 20px;
    border: 1px solid var(--border);
    height: 100%;
}

.user-profile-snippet .profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.btn-edit-profile {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background-color: var(--bs-primary);
    border: 2px solid var(--bs-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.btn-edit-profile img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

.user-name {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 18px;
    color: var(--bs-black);
    margin-bottom: 0px;
}

.user-email {
    font-family: 'Outfit';
    font-size: 14px;
    color: var(--light);
    margin: 0;
}

/* .dashboard-menu {
    margin-top: 30px;
} */

.dashboard-menu li {
    margin-bottom: 5px;
}

.dashboard-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 16px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dashboard-menu li a img {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.dashboard-menu li a span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 8px;
    display: inline-block;
    background-color: var(--primary-light);
}

.dashboard-menu li a:hover {
    background-color: var(--primary-light);
}

.dashboard-menu li a.active {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.dashboard-menu li a.active span {
    background-color: var(--bs-white);
}

.dashboard-content {
    background-color: var(--bs-white);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border);
    /* height: 100%; */
}

.dashboard-title {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 24px;
    color: var(--bs-black);
}


.bg-light-primary-box {
    padding: 12px 15px;
    border-radius: 8px;
    background-color: var(--primary-light);
}

.address-box {
    padding: 12px 15px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.address-box.active {
    border-color: var(--bs-primary);
}

.address-box p {
    font-size: 12px;
    font-family: "Uxum";
    font-weight: 400;
    color: var(--bs-dark);
    margin-bottom: 10px;
}

.radio {
    position: absolute;
    top: 10px;
    right: 10px;
    accent-color: var(--bs-primary);
}

.text-blue {
    color: var(--bs-blue) !important;
}

/* Checkout Page Design */

.checkout-wrapper {
    background-color: #F9F9F9;
}

.checkout-card {
    background-color: var(--bs-white);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border);
    height: auto;
}

.checkout-title {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 20px;
    color: var(--bs-black);
}

/* Address Box */
.address-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.address-item.active {
    border-color: var(--bs-primary);
}

.user-name {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 16px;
    color: var(--bs-black);
    margin-bottom: 5px;
}

.user-address,
.user-phone,
.user-city {
    font-family: 'Outfit';
    font-size: 14px;
    color: var(--light);
    margin-bottom: 3px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
    margin-top: 10px;
    margin-right: 20px;
}

.check-icon img {
    width: 18px;
    height: 18px;
}

.check-ring {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    border-radius: 50%;
}

.address-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
}

.address-actions a {
    font-family: 'Outfit';
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.address-actions .edit-btn {
    color: #007BFF;
}

.address-actions .delete-btn {
    color: #DC3545;
}

.add-address-btn {
    background: transparent;
    border: 1px dashed #E0E0E0;
    border-radius: 10px;
    padding: 15px;
    color: var(--bs-black);
    font-family: 'Outfit';
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-address-btn:hover {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

.plus-icon {
    font-size: 18px;
    margin-right: 5px;
    color: var(--bs-primary);
}

/* Order Summary */
.order-item {
    margin-bottom: 20px;
}

.order-item .img-fluid {
    width: 150px;
    height: 150px;
}

.order-car-name {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 16px;
    color: var(--bs-black);
    margin-bottom: 5px;
}

.order-car-details {
    font-family: 'Outfit';
    font-size: 13px;
    color: var(--light);
    margin-bottom: 5px;
}

.order-delivery-time {
    font-family: 'Outfit';
    font-size: 12px;
    color: #28A745;
    margin-bottom: 5px;
}

.order-price {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 18px;
    color: var(--bs-black);
    margin: 0;
}

/* Payment Methods */
.payment-method-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.payment-method-item.active {
    border-color: var(--bs-primary);
    background-color: var(--primary-light);
}

.payment-icon-box {
    width: 40px;
    height: 40px;
    background-color: #F8F8F8;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-icon-box img {
    width: 20px;
}

.bg-light-danger {
    background-color: #FFF0EF !important;
}

.payment-name {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 14px;
    color: var(--bs-black);
}

.payment-desc {
    font-family: 'Outfit';
    font-size: 12px;
    color: var(--light);
}

.check-icon-sm {
    width: 20px;
    height: 20px;
    background-color: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 10px;
}

/* .card-form {
    padding-left: 55px;
} */

.card-form .form-control {
    background-color: #fff;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--dark);
}

.card-form .form-label {
    font-size: 13px;
    color: var(--bs-black);
    font-weight: 500;
}

.secure-payment-note {
    background-color: #FFF5F4;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit';
    font-size: 12px;
    color: var(--bs-black);
    font-weight: 500;
}

/* Price Summary */
.price-label {
    font-family: 'Outfit';
    font-size: 15px;
    color: var(--light);
    margin: 0;
}

.price-value {
    font-family: 'Outfit';
    font-size: 15px;
    color: var(--bs-black);
    margin: 0;
}

.grand-total-box {
    background-color: #FFF0EF;
    border: 1px solid #FFE0DE;
}

.total-label {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 16px;
    color: var(--bs-black);
}

.total-value {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 20px;
    color: var(--bs-primary);
}

.payment-header.active {
    background-color: var(--primary-light);
}

/* Modal Styles */
.modal-content {
    border-radius: 16px;
    border: none;
}

.modal-title {
    color: var(--bs-black);
    font-size: 20px;
}

.form-label {
    font-family: 'Outfit';
    color: var(--bs-black);
}

.form-control::placeholder {
    color: #999;
    font-family: 'Outfit';
    font-size: 14px;
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

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

.smaller {
    font-size: 12px;
}

.comman-white-btn {
    background-color: #fff;
    color: #000;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Outfit';
    font-weight: 500;
    transition: all 0.3s ease;
}

.comman-white-btn:hover {
    background-color: #f9f9f9;
    border-color: #ccc;
}

/* Order Confirmed Modal Styles */
.success-icon {
    width: 80px;
}

.modal-title-font {
    font-family: 'Uxum';
}

.font-outfit {
    font-family: 'Outfit';
}

.font-uxum {
    font-family: 'Uxum';
}

.order-id-box {
    background-color: #fff;
    border: 1px solid #FFE0DE;
    border-radius: 8px;
    padding: 12px;
    max-width: 100%;
    width: 100%;
    background-color: var(--primary-light);
}

.modal-small {
    max-width: 400px;
}

.form-icon {
    padding-left: 40px;
}

.upload-img-area {
    width: 60px;
    height: 60px;
    position: relative;
}

.user-60 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--bs-primary);
}

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

.upload-img-btn {
    width: auto;
    height: auto;
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--bs-primary);
}

.badge-success-light {
    width: auto;
    border-radius: 50px;
    padding: 6px 10px;
    color: #22C55E;
    font-size: 12px;
    background-color: #22C55E1A;
}

.icon-circle-box-light {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--primary-light);
}

.icon-circle-box-light img {
    width: 18px;
    height: 18px;
}

/* Terms & Conditions Redesign */
.terms-layout-wrapper {
    background-color: var(--bs-white);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.terms-sidebar {
    background-color: #FFF0EF;
    /* Light pink background from image */
    padding: 40px 20px;
    height: 100%;
}

.terms-sidebar .nav-pills .nav-link {
    background: transparent;
    color: #7C7C7C;
    font-family: 'Outfit';
    font-weight: 500;
    font-size: 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.terms-sidebar .nav-pills .nav-link .step-number {
    width: 40px;
    height: 40px;
    background-color: #F8817733;
    /* Slightly darker than sidebar bg */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #7C7C7C;
    flex-shrink: 0;
}

.terms-sidebar .nav-pills .nav-link.active {
    background: transparent;
    color: #F88177;
    /* Primary color */
}

.terms-sidebar .nav-pills .nav-link.active .step-number {
    background-color: #F88177;
    color: var(--bs-white);
}

.terms-content-area {
    padding: 40px;
    min-height: 500px;
}

.terms-inner-title {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 25px;
}

.terms-content-area p {
    font-family: 'Outfit';
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 15px;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.terms-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-family: 'Outfit';
    font-size: 14px;
    color: var(--dark);
}

.terms-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dark);
}

.agree-btn {
    background-color: #F88177 !important;
    border: none;
    border-radius: 8px;
    padding: 12px 40px;
    height: auto;
    width: auto;
    font-size: 16px;
    font-weight: 600;
}

.agree-btn:hover {
    background-color: #e06c62 !important;
}

@media (max-width: 991px) {
    .terms-sidebar {
        padding: 20px;
    }

    .terms-sidebar .nav-pills .nav-link {
        font-size: 14px;
    }
}

/* My Orders Redesign */
.filter-pill {
    background: transparent;
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 30px;
    font-family: 'Outfit';
    font-size: 14px;
    font-weight: 500;
    color: #4D4D4D;
    transition: all 0.3s ease;
}

.filter-pill.active {
    background-color: #F88177;
    border-color: #F88177;
    color: var(--bs-white);
}

.filter-pill:hover:not(.active) {
    border-color: #F88177;
    color: #F88177;
}

.new-order-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.new-order-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-img-container {
    height: 100%;
    max-height: 220px;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.order-img-container img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.order-id-txt {
    font-family: 'Outfit';
    font-size: 12px;
    color: #999999;
}

.order-car-title {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 20px;
    color: #1A1A1A;
}

.order-car-meta {
    font-family: 'Outfit';
    font-size: 14px;
    color: #666666;
}

.order-status-badge {
    padding: 6px 15px;
    border-radius: 30px;
    font-family: 'Outfit';
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-status-badge.delivered {
    background-color: #E6F9F0;
    color: #00B65E;
}

.order-status-badge.in-process {
    background-color: #E6F0FF;
    color: #006AFF;
}

.order-status-badge.canceled {
    background-color: #FFF0F0;
    color: #FF4D4D;
}

.order-status-badge.on-the-way {
    background-color: #F2EEFF;
    color: #6C5DD3;
}

.status-icon {
    width: 14px;
    height: 14px;
}

.order-info-label {
    font-family: 'Outfit';
    font-size: 12px;
    color: #999999;
    margin-bottom: 2px;
}

.order-info-value {
    font-family: 'Outfit';
    font-size: 20px;
    font-weight: 600;
    color: #0056B3;
    margin-bottom: 0;
}

.order-action-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-family: 'Outfit';
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.order-action-btn.cancel {
    color: var(--bs-white);
    background-color: #FFB4AE;
    border: 1px solid var(--bs-primary);
}

.order-action-btn.btn-outline {
    background: transparent;
    border: 1px solid #F88177;
    color: #F88177;
}

.order-action-btn.btn-outline:hover {
    background: #F88177;
    color: white;
}

.order-action-btn.btn-filled {
    background: #F88177;
    border: 1px solid #F88177;
    color: white;
}

.order-action-btn.btn-filled:hover {
    background: #e6756c;
}

.order-action-btn.btn-outline-danger {
    background: transparent;
    border: 1px solid #FF4D4D;
    color: #FF4D4D;
}

.order-action-btn.btn-outline-danger:hover {
    background: #FF4D4D;
    color: white;
}

@media (max-width: 767px) {
    .order-img-container {
        min-height: 200px;
    }

    .order-card-body {
        padding: 20px !important;
    }

    .order-action-btn {
        flex: 1;
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* Product Details UI Redesign */

.gallery-outer-wrapper {
    height: 600px;
}

.main-gallery-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.main-gallery-image-content {
    width: 100%;
    height: 100%;
}

.main-gallery-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery-sidebar {
    width: 140px;
    flex-shrink: 0;
}

.thumb-item {
    height: 105px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumb-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.white-card-details {
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.02);
}

.card-inner-title {
    font-family: 'Uxum';
    font-weight: 700;
    font-size: 24px;
    color: #1C3440;
}

.info-row {
    transition: background-color 0.2s;
}

.info-label {
    font-family: 'Outfit';
    font-size: 15px;
    color: #8C8C8C !important;
}

.info-value {
    font-family: 'Outfit';
    font-size: 15px;
    color: #1C3440;
}

.icon-coral-bg {
    width: 44px;
    height: 44px;
    background: #F9FAFB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-coral-bg img {
    width: 20px;
    height: 20px;
}

.location-inner-map-card {
    background: #FFFFFF;
}

.map-view-box {
    border: 1px solid #eee;
}

.key-spec-box {
    padding: 10px 0;
}

.key-icon-circle {
    width: 48px;
    height: 48px;
    background: #F2F4F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.key-icon-circle img {
    width: 20px;
    height: 20px;
}

.btn-filled-primary {
    background-color: #F88177;
    border: none;
    color: #FFFFFF;
    font-family: 'Outfit';
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-filled-primary:hover {
    background-color: #e6756c;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(248, 129, 119, 0.3);
}

.btn-outline-dark-custom {
    background: transparent;
    border: 1px solid #1C3440;
    color: #1C3440;
    font-family: 'Outfit';
    font-weight: 600;
}

.btn-outline-dark-custom:hover {
    background: #1C3440;
    color: #FFFFFF;
}

.inspection-main-card {
    border-radius: 10px;
    background: linear-gradient(135deg, #ECFDF5 0%, #FFFFFF 70.71%);
    border: 2px solid #A7F3D0
}

.action-circle-btn {
    width: 100%;
    height: 56px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.action-circle-btn img {
    width: 24px;
    height: 24px;
}

.action-circle-btn.whatsapp {
    background-color: #25D366;
}

.action-circle-btn.phone {
    background-color: #3B82F6;
}

.action-circle-btn.mail {
    background-color: #A855F7;
}

.action-circle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


.photo-gallery .col-md-4 {
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.photo-gallery .col-md-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 10px 15px 0px #0000001A;
    box-shadow: 0px 4px 6px 0px #0000001A;
    transition: all .3s ease-in-out;
}

.photo-gallery .col-md-4:hover img {
    transform: scale(1.02);
}

.tab-btn {
    width: fit-content;
    padding: 12px 18px;
    border-radius: 8px;
    color: var(--bs-dark);
    border: 2px solid var(--border);
    background-color: var(--bs-white);
}

.tab-btn.active {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    border-color: var(--bs-primary);
}

/* Internal Inspection Report Styles */
.score-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-green-progress .progress-bar {
    background-color: #10B981 !important;
}

.check-icon-green {
    width: 22px;
    height: 22px;
    background-color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.results-main-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.result-category-title {
    font-weight: 700;
    color: #4D4D4D;
    font-size: 14px;
}

.result-check-list li {
    position: relative;
    padding-left: 5px;
}

.inspection-report .section-heading {
    font-family: 'Outfit';
    font-weight: 700;
    color: #1A1A1A;
}

@media (max-width: 991.98px) {
    .inspection-report .col-lg-5 {
        margin-bottom: 2rem;
    }
}

.map-view-box {
    width: 100%;
    height: 190px;
}

.xs-small {
    font-size: 14px;
}

.icon-pdf {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 6px;
    text-align: center;
    background-color: var(--bs-primary);
}

.download-section {
    background: linear-gradient(135deg, rgba(253, 211, 208, 0.66) 0%, #FFFFFF 49.37%);
    border: 2px solid #F58279
}

.custom-width {
    width: 343px;
}

.comman-btn img {
    width: 20px;
    filter: brightness(0) invert(1);
}

select,
::picker(select) {
    appearance: base-select;
    width: 200px;
    overflow: hidden;
}

::picker(select) {
    border: 0;
    margin: .4rem 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

option {
    font-size: 14px;
    padding: 12px;
}

.icon-choose img {
    transition: all .3s ease-in-out;
    animation: imgRotate 3s ease-in-out infinite;
}

@keyframes imgRotate {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* Employee Section */
.employee-login-body {
    background-image: url('../img/bg/employee-bg.svg');
    /* Using a high-quality car image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.employee-login-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.employee-login-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.employee-login-card {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.employee-login-logo {
    height: 60px;
    margin-bottom: 20px;
}

.employee-login-heading {
    font-family: 'Uxum', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #1C3440;
    margin-bottom: 10px;
}

.employee-login-subtext {
    font-size: 14px;
    color: #808080;
    margin-bottom: 35px;
}

.employee-form-label {
    font-weight: 600;
    font-size: 14px;
    color: #1C3440;
    margin-bottom: 8px;
}

.employee-form-control {
    height: 50px;
    border-radius: 10px;
    border: 1px solid #D1D5DB;
    font-size: 14px;
    color: #1C3440;
}

.employee-form-control:focus {
    border-color: #F88177;
    box-shadow: 0 0 0 0.2rem rgba(248, 129, 119, 0.25);
}

.employee-form-control::placeholder {
    color: #D1D5DB;
}

.employee-input-icon-left {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    opacity: 0.6;
}

.employee-input-icon-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    cursor: pointer;
    opacity: 0.6;
}

.icon-padding-left {
    padding-left: 45px !important;
}

.icon-padding-right {
    padding-right: 45px !important;
}

.employee-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #F88177;
    cursor: pointer;
    accent-color: #F88177;
}

.employee-checkbox-label {
    font-size: 14px;
    color: #4B5563;
    cursor: pointer;
}

.employee-forgot-link {
    font-size: 13px;
    color: #F88177;
    text-decoration: none;
    font-weight: 500;
}

.employee-forgot-link:hover {
    color: #e06d63;
}

/* Dashboard Layout */
.dashboard-body {
    background-color: #F9FAFB;
    overflow-x: hidden;
}

.dashboard-sidebar-wrapper {
    width: 280px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #ffffff;
    border-right: 1px solid #E5E7EB;
    z-index: 1000;
    padding: 30px 20px;
}

.dashboard-main {
    margin-left: 280px;
    min-height: 100vh;
    padding-bottom: 50px;
}

/* Sidebar Styling */
.sidebar-logo {
    margin-bottom: 50px;
}

.sidebar-logo img {
    max-height: 50px;
}

.sidebar-nav ul li {
    margin-bottom: 10px;
}

.sidebar-nav ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    color: #4B5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.sidebar-nav ul li a .nav-icon {
    width: 20px;
    height: 20px;
}

.sidebar-nav ul li a:hover {
    background: rgba(248, 129, 119, 0.1);
    color: #F88177;
}

.sidebar-nav ul li a.active {
    background: #F88177;
    color: #ffffff;
}

.sidebar-nav ul li a span {
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
}

.sidebar-nav ul li a.active span {
    background-color: var(--bs-white);
}

.sidebar-nav ul li a.active .nav-icon {
    opacity: 1;
}

/* Header Styling */
.dashboard-top-header {
    background: #ffffff;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 999;
}

.breadcrumb-area .breadcrumb {
    margin: 0;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #6B7280;
    font-size: 14px;
}

.breadcrumb-item.active {
    color: #111827;
    font-weight: 600;
    font-size: 14px;
}

.notif-btn {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.notif-btn img {
    width: 20px;
}

.notif-btn .badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #F88177;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.user-profile-pill {
    padding-left: 15px;
    border-left: 1px solid #E5E7EB;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    overflow: hidden;
    border: 1px solid var(--bs-primary);
}

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

/* .user-info {
    display: flex;
    flex-direction: column;
} */

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.user-id {
    font-size: 12px;
    color: #6B7280;
}

/* Page Content */
.dashboard-content-area {
    padding: 40px;
}

.content-title h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 5px;
}

.content-title p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.add-vehicle-btn {
    padding: 10px 20px !important;
    font-size: 14px;
    font-weight: 600;
}

/* Filter Section */
.search-filter-section {
    background: #ffffff;
    padding: 15px;
    border-radius: 15px;
    /* border: 1px solid #E5E7EB; */
}

.filter-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-input-group img {
    position: absolute;
    left: 15px;
    width: 18px;
    opacity: 0.5;
}

.filter-input-group .form-control {
    padding-left: 45px;
    height: 46px;
    border-radius: 10px;
    font-size: 14px;
    background: #F9FAFB;
}

.employee-select {
    height: 46px;
    border-radius: 10px;
    font-size: 14px;
    background-color: var(--bs-white);
    border-color: #E5E7EB;
}

/* Inventory Summary */
.inventory-summary h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0px;
}

.inventory-summary p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* Car Grid Card */
.car-inventory-grid .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.car-card {
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid #F8817733;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(248, 129, 119, 0.1);
    border-color: #F8817766;
}

.card-image-box {
    position: relative;
    height: 180px;
    background: #F3F4F6;
    padding: 10px;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.card-details {
    padding: 15px;
}

.car-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.car-brand {
    font-size: 14px;
    color: #808080;
}

.car-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.card-divider {
    margin: 12px 0;
    border-top: 1px solid #E5E7EB;
}

.car-card .form-check-input {
    width: 40px;
    height: 20px;
    background-color: #D1D5DB;
    border: none;
    cursor: pointer;
}

.car-card .form-check-input:checked {
    background-color: #F88177;
}

.btn-edit,
.btn-delete {
    background: #F88177;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-edit:hover,
.btn-delete:hover {
    background: #e06d63;
    color: #ffffff;
}

.btn-edit img,
.btn-delete img {
    width: 18px;
    filter: brightness(0) invert(1);
}

/* Add New Vehicle Page Styles */
.add-vehicle-tabs .nav-tabs {
    gap: 40px;
    border-bottom: 1px solid #E5E7EB;
}

.add-vehicle-tabs .nav-link {
    border: none !important;
    color: #808080;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    background: transparent !important;
    transition: color 0.3s ease;
}

.add-vehicle-tabs .nav-link.active {
    color: #1C3440 !important;
}

.add-vehicle-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #F88177;
    border-radius: 10px;
    z-index: 1;
}


.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1C3440;
    font-family: 'Uxum', sans-serif;
}

.form-group .form-label {
    font-weight: 600;
    color: #4B5563;
    margin-bottom: 10px;
}

.form-group .form-control,
.form-group .form-select {
    height: 50px;
    border-color: #D1D5DB;
    border-radius: 12px;
    padding: 0 20px;
}

.upload-card {
    position: relative;
    border: 2px dashed #D1D5DB;
    border-radius: 16px;
    background-color: #ffffff;
    padding: 40px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-card:hover {
    border-color: #F88177;
    background-color: rgba(248, 129, 119, 0.02);
}

.upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    width: 48px;
    height: 48px;
    opacity: 0.6;
}

.upload-text {
    font-weight: 600;
    color: #111827;
    font-size: 16px;
}

.upload-hint {
    color: #6B7280;
    font-size: 14px;
}

.btn-outline-cancel {
    border: 1px solid #D1D5DB;
    color: #4B5563;
    font-weight: 600;
    height: 50px;
    border-radius: 10px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.btn-outline-cancel:hover {
    background: #F9FAFB;
    border-color: #9CA3AF;
}

.btn-save-vehicle {
    background-color: #F88177;
    color: #ffffff;
    font-weight: 600;
    height: 50px;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
}

.btn-save-vehicle:hover {
    background-color: #e06d63;
    box-shadow: 0 4px 12px rgba(248, 129, 119, 0.3);
}

@media (max-width: 768px) {
    .add-vehicle-tabs .nav-tabs {
        gap: 20px;
    }
}

/* Notification Center Styles */
.notification-tabs .nav-link {
    font-weight: 600;
    color: #808080 !important;
    font-size: 15px;
    padding-bottom: 12px !important;
    position: relative;
    transition: all 0.3s ease;
}

.notification-tabs .nav-link.active {
    color: #F88177 !important;
    background-color: transparent;
}

.notification-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #F88177;
    border-radius: 10px;
}

.notification-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 12px 15px;
    border: 1px solid #E5E7EB;
    border-left-width: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.notification-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.notification-card.unread {
    background-color: #ffffff;
}

.unread-dot {
    width: 10px;
    height: 10px;
    background-color: #F88177;
    border-radius: 50%;
}

.notif-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-icon-box img {
    width: 24px;
    height: 24px;
}

.notif-title {
    font-size: 14px;
    font-weight: 700;
    color: #1C3440;
    font-family: 'Uxum', sans-serif;
}

.notif-text {
    font-size: 12px;
    color: #4B5563;
    line-height: 1.5;
}

.notif-time {
    color: #808080;
    font-size: 10px;
}

/* Category Specific Colors */
.border-green {
    border-left-color: #22C55E !important;
}

.bg-green-light {
    background-color: #D1FAE5;
}

.bg-green-light img {
    filter: invert(48%) sepia(79%) saturate(451%) hue-rotate(101deg) brightness(98%) contrast(92%);
}

.border-purple {
    border-left-color: #8B5CF6 !important;
}

.bg-purple-light {
    background-color: #EDE9FE;
}

.bg-purple-light img {
    filter: invert(37%) sepia(93%) saturate(1633%) hue-rotate(240deg) brightness(95%) contrast(106%);
}

.border-yellow {
    border-left-color: #F59E0B !important;
}

.bg-yellow-light {
    background-color: #FEF3C7;
}

.bg-yellow-light img {
    filter: invert(65%) sepia(93%) saturate(1478%) hue-rotate(2deg) brightness(101%) contrast(95%);
}

.border-red {
    border-left-color: #F43F5E !important;
}

.bg-red-light {
    background-color: #FFE4E6;
}

.bg-red-light img {
    filter: invert(36%) sepia(50%) saturate(4681%) hue-rotate(331deg) brightness(101%) contrast(91%);
}

.border-blue {
    border-left-color: #3B82F6 !important;
}

.bg-blue-light {
    background-color: #DBEAFE;
}

.bg-blue-light img {
    filter: invert(47%) sepia(85%) saturate(1472%) hue-rotate(195deg) brightness(101%) contrast(94%);
}

.section-title-sm {
    font-size: 18px;
    font-weight: 700;
    color: #1C3440;
}

.parameter-check-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.parameter-check-card.active {
    border-color: #F88177;
}

.parameter-check-card label {
    font-size: 15px;
    font-weight: 500;
    color: #4D4D4D;
    cursor: pointer;
    margin: 0;
}

.custom-checkbox {
    width: 22px !important;
    height: 22px !important;
    border-radius: 6px !important;
    border: 1.5px solid #D1D5DB !important;
    margin-top: 0 !important;
}

.custom-checkbox:checked {
    background-color: #F88177 !important;
    border-color: #F88177 !important;
}

.form-group .form-control::placeholder {
    color: #8C8C8C;
}

.form-group textarea::placeholder {
    font-size: 15px;
}

.logo-header {
    height: 50px;
    width: fit-content;
    display: inline-block;
}

.logo-header img {
    width: 100%;
    height: 100%;
}