/* ==================================================
   VIIN9 LIGHT DESIGN IMPROVEMENT
   Loaded after style.css and custom.css
================================================== */

:root {
    --viin9-green: #69e600;
    --viin9-green-dark: #54c900;
    --viin9-dark: #151a23;
    --viin9-text: #344054;
    --viin9-muted: #667085;
    --viin9-border: #e4e7ec;
    --viin9-background: #f6f7f9;
    --viin9-white: #ffffff;
}

/* -------------------------
   General
------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--viin9-background);
    color: var(--viin9-text);
    font-family: "Figtree", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.product-title {
    font-family: "Figtree", Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 1240px;
    padding-right: 20px;
    padding-left: 20px;
}

/* -------------------------
   Header
------------------------- */

.header.header-22 {
    background: var(--viin9-white);
    border-bottom: 1px solid var(--viin9-border);
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
}

.header-middle {
    min-height: 88px;
    padding: 10px 0;
}

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

.header-left {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.header-center {
    flex: 1;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.logo {
    display: block;
    width: 170px;
    max-width: 170px;
    margin: 0;
}

.logo svg {
    display: block;
    width: 100%;
    height: auto;
}

.login-dropdown > a,
.login-dropdown .header-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 17px;
    color: var(--viin9-dark);
    background: var(--viin9-white);
    border: 1px solid var(--viin9-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.login-dropdown > a:hover,
.login-dropdown .header-dropdown > a:hover {
    color: var(--viin9-dark);
    border-color: var(--viin9-green);
    background: #f5ffef;
}

.login-dropdown a i.icon-user {
    margin: 0;
    font-size: 18px;
}

/* -------------------------
   Product grid
------------------------- */

.products {
    margin-top: 30px;
}

.products .row {
    align-items: stretch;
    margin-right: -12px;
    margin-left: -12px;
}

.products .product-item {
    display: flex;
    padding-right: 12px;
    padding-left: 12px;
    margin-bottom: 26px;
}

/* -------------------------
   Lot card
------------------------- */

.product.product-7 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    overflow: hidden;
    background: var(--viin9-white);
    border: 1px solid var(--viin9-border);
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(16, 24, 40, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.product.product-7:hover {
    transform: translateY(-3px);
    border-color: #d0d5dd;
    box-shadow: 0 10px 26px rgba(16, 24, 40, 0.10);
}

/* -------------------------
   Product image
------------------------- */

.product.product-7 .product-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 225px;
    margin: 0;
    overflow: hidden;
    background: #fafafa;
    border-bottom: 1px solid #f0f1f3;
}

.product.product-7 .product-media > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product.product-7 .product-media img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product.product-7:hover .product-media img {
    transform: scale(1.025);
}

/* Order Booking card */

/* .products .product-item:first-child .product-media > div[style] {
    width: 100% !important;
    height: 225px !important;
    background: linear-gradient(135deg, #111827, #242b38) !important;
} 

.products .product-item:first-child .product-media p {
    margin: 0;
    font-family: "Figtree", Arial, sans-serif;
    font-size: 23px !important;
    font-weight: 600 !important;
    letter-spacing: -0.2px;
} */

/* -------------------------
   Timer
------------------------- */

.product-label.label-timer {
    top: 12px;
    left: 12px;
    width: auto;
    max-width: calc(100% - 24px);
    min-height: 30px;
    padding: 6px 11px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.92);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.1px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(16, 24, 40, 0.16);
    z-index: 2;
}

.product-label.label-timer:empty {
    display: none;
}

/* -------------------------
   Card body
------------------------- */

.product.product-7 .product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 17px 17px 16px;
    background: var(--viin9-white);
    border: 0;
}

.product-title {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 13px;
    overflow: hidden;
    color: var(--viin9-dark);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-title a {
    color: inherit;
}

.product-title a:hover {
    color: #3fae00;
}

.home-product-details {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
}

.home-product-details .details-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 34px;
    margin: 0;
    padding: 7px 0;
    border-top: 1px solid #f0f1f3;
}

.home-product-details .details-filter-row:first-child {
    border-top: 0;
}

.home-product-details .details-filter-row label {
    flex: 0 0 72px;
    width: 72px;
    margin: 0;
    color: var(--viin9-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.home-product-details .details-filter-row > div {
    min-width: 0;
    color: var(--viin9-dark);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.home_product_location {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

span.rs_money {
    margin-right: 2px;
    color: inherit;
    font-weight: 600;
}

/* -------------------------
   Login / selling price row
------------------------- */

.sell_price_row {
    margin-top: auto !important;
    padding: 12px 0 0 !important;
    background: transparent;
    border-top: 1px solid var(--viin9-border) !important;
}

.sell_price_row > .home_product_selling_price {
    flex: 1;
}

.home_product_selling_price a.login_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 9px 14px;
    color: #101828;
    background: var(--viin9-green);
    border: 1px solid var(--viin9-green);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.home_product_selling_price a.login_btn:hover {
    color: #101828;
    background: var(--viin9-green-dark);
    border-color: var(--viin9-green-dark);
}

/* Logged-in selling price */

.sell_price_row label + .home_product_selling_price {
    color: #2f8f00;
    font-size: 15px;
    font-weight: 700;
}

/* Order booking body */
/*
.order_booking_product {
    color: var(--viin9-dark);
    background: var(--viin9-white);
}

.order_booking_product .sell_price_row {
    background: transparent;
}
*/
/* -------------------------
   Pagination
------------------------- */

.pagination {
    display: flex;
    justify-content: center;
    margin: 15px 0 40px;
}

.pagination > [role="navigation"] div > span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 5px;
    box-shadow: none !important;
}

.pagination > [role="navigation"] div > span a,
.pagination > [role="navigation"] div > span > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px !important;
    color: var(--viin9-text);
    background: var(--viin9-white);
    border: 1px solid var(--viin9-border);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination > [role="navigation"] div > span a:hover {
    color: var(--viin9-dark);
    background: #f5ffef;
    border-color: var(--viin9-green);
}

.pagination span[aria-current="page"] span {
    color: #101828;
    background: var(--viin9-green);
    border-color: var(--viin9-green);
    font-weight: 700;
}

.pagination svg {
    width: 18px;
    height: 18px;
}

/* -------------------------
   Footer
------------------------- */

.footer {
    margin-top: 35px;
    background: var(--viin9-white);
    border-top: 1px solid var(--viin9-border);
}

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    margin: 0;
    color: var(--viin9-muted);
    font-size: 13px;
    text-align: center;
}

/* -------------------------
   Scroll to top
------------------------- */

#scroll-top {
    color: var(--viin9-dark);
    background: var(--viin9-green);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(16, 24, 40, 0.15);
}

#scroll-top:hover {
    background: var(--viin9-green-dark);
}

/* -------------------------
   Tablet
------------------------- */

@media only screen and (max-width: 991.98px) {
    .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .header-middle {
        min-height: 78px;
    }

    .logo {
        width: 150px;
        max-width: 150px;
    }

    .product.product-7 .product-media {
        height: 215px;
    }

   /* .products .product-item:first-child .product-media > div[style] {
        height: 215px !important;
    } */
}

/* -------------------------
   Mobile
------------------------- */

@media only screen and (max-width: 767.98px) {
    body {
        font-size: 14px;
    }

    .header-middle {
        min-height: 70px;
        padding: 8px 0;
    }

    .header-middle .container {
        flex-wrap: nowrap;
    }

    .header-center {
        display: none;
    }

    .logo {
        width: 130px;
        max-width: 130px;
    }

    .login-dropdown > a,
    .login-dropdown .header-dropdown > a {
        min-height: 38px;
        padding: 7px 11px;
        font-size: 13px;
    }

    .products {
        margin-top: 20px;
    }

    .products .row {
        margin-right: -7px;
        margin-left: -7px;
    }

    .products .product-item {
        padding-right: 7px;
        padding-left: 7px;
        margin-bottom: 16px;
    }

    .product.product-7 {
        border-radius: 9px;
    }

    .product.product-7 .product-media {
        height: 180px;
    }

   /* .products .product-item:first-child .product-media > div[style] {
        height: 180px !important;
    } */

    .product.product-7 .product-body {
        padding: 13px;
    }

    .product-title {
        min-height: 39px;
        margin-bottom: 9px;
        font-size: 14px;
    }

    .home-product-details .details-filter-row {
        min-height: 31px;
        padding: 6px 0;
    }

    .home-product-details .details-filter-row label {
        flex-basis: 48px;
        width: 48px;
        font-size: 10px;
    }

    .home-product-details .details-filter-row > div {
        font-size: 12px;
    }

    .product-label.label-timer {
        top: 8px;
        left: 8px;
        max-width: calc(100% - 16px);
        padding: 4px 7px;
        font-size: 9px;
    }

    .home_product_selling_price a.login_btn {
        min-height: 37px;
        padding: 8px;
        font-size: 11px;
    }
}

/* One card per row on very small screens */

@media only screen and (max-width: 479.98px) {
    .products .product-item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product.product-7 .product-media {
        height: 220px;
    }

  /*  .products .product-item:first-child .product-media > div[style] {
        height: 220px !important;
    }
*/
    .product-title {
        min-height: auto;
        font-size: 16px;
    }

    .home-product-details .details-filter-row label {
        flex-basis: 70px;
        width: 70px;
        font-size: 11px;
    }

    .home-product-details .details-filter-row > div {
        font-size: 14px;
    }

    .home_product_selling_price a.login_btn {
        font-size: 13px;
    }
}

/* ====================================
   MOBILE: TWO NORMAL LOTS IN ONE ROW
==================================== */

@media only screen and (max-width: 767.98px) {

    .products .row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -5px;
        margin-right: -5px;
    }

    /* Keep Order Booking full width */
   /* .products .product-item:first-child {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 5px;
        padding-right: 5px;
    }*/

    /* Show all normal lots two per row */
    .products .product-item:not(:first-child) {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 10px;
    }

    .products .product-item:not(:first-child) .product {
        width: 100%;
        border-radius: 8px;
    }

    /* Compact image */
    .products .product-item:not(:first-child) .product-media {
        height: 145px !important;
    }

    .products .product-item:not(:first-child) .product-media img {
        width: 100%;
        height: 100%;
        padding: 7px;
        object-fit: contain;
    }

    /* Compact card body */
    .products .product-item:not(:first-child) .product-body {
        padding: 9px;
    }

    .products .product-item:not(:first-child) .product-title {
        min-height: 34px;
        margin-bottom: 5px;
        font-size: 12px;
        line-height: 1.35;
    }

    .products .product-item:not(:first-child) .details-filter-row {
        min-height: 25px;
        padding: 4px 0;
    }

    .products .product-item:not(:first-child) .details-filter-row label {
        flex: 0 0 30px;
        width: 30px;
        font-size: 8px;
    }

    .products .product-item:not(:first-child) .details-filter-row > div {
        font-size: 9px;
        line-height: 1.25;
    }

    /* Small timer */
    .products .product-item:not(:first-child) .product-label.label-timer {
        top: 6px;
        left: 6px;
        min-height: 20px;
        padding: 2px 6px;
        font-size: 7px;
        line-height: 14px;
    }

    /* Compact login button */
    .products .product-item:not(:first-child) .login_btn {
        min-height: 31px;
        padding: 6px 3px;
        font-size: 8px;
        line-height: 1.2;
    }

    .products .product-item:not(:first-child) .sell_price_row {
        padding-top: 7px;
    }
}

/* Fix mobile page width and extra right space */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media only screen and (max-width: 767.98px) {

    .header-middle .container,
    .page-content .container,
    main .container {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    /* Fix an outer 9-column content wrapper */
    .page-content > .container > .row > .col-lg-9,
    .page-content > .container > .row > .col-md-9,
    .page-content > .container > .row > .col-xl-9 {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .products {
        width: 100% !important;
        max-width: 100% !important;
    }

    .products > .row {
        width: auto !important;
        margin-right: -5px !important;
        margin-left: -5px !important;
    }

    /* Order Booking full width */
    .products .product-item:first-child {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

    /* Normal lots: two per row */
    .products .product-item:not(:first-child) {
        flex: 0 0 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        padding-right: 5px !important;
        padding-left: 5px !important;
    }
}

/* Mobile pagination fix */
@media only screen and (max-width: 767.98px) {

    .pagination {
        width: 100%;
        margin: 20px 0 30px;
        padding: 0 10px;
        overflow: hidden;
    }

    .pagination nav {
        width: 100%;
    }

    .pagination nav > div:last-child {
        width: 100%;
    }

    .pagination nav > div:last-child > div:last-child {
        width: 100%;
    }

    .pagination nav > div:last-child > div:last-child > span {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px !important;
        width: 100%;
    }

    .pagination a,
    .pagination span[aria-current="page"] span {
        min-width: 34px !important;
        width: 34px !important;
        height: 34px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        font-size: 12px;
    }

    .pagination svg {
        width: 15px;
        height: 15px;
    }
}

/* ====================================
   CLEAN VIIN9 PAGINATION
==================================== */

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 25px 0 35px;
    padding: 0;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    color: #344054;
    background: #ffffff;
    border: 1px solid #dfe3e8;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    box-shadow: none;
}

.pagination .page-link:hover {
    color: #101828;
    background: #f2ffe9;
    border-color: #63e600;
}

.pagination .page-item.active .page-link {
    color: #101828;
    background: #63e600;
    border-color: #63e600;
    font-weight: 700;
}

.pagination .page-item.disabled .page-link {
    color: #98a2b3;
    background: #f8f9fa;
    border-color: #e4e7ec;
    cursor: not-allowed;
}

/* Mobile */

@media (max-width: 767.98px) {
    .pagination {
        gap: 5px;
        margin: 20px 0 28px;
        padding: 0 8px;
    }

    .pagination .page-link {
        min-width: 34px;
        height: 34px;
        padding: 0 8px;
        border-radius: 6px;
        font-size: 12px;
    }
}

/* ==========================================
   ORDER BOOKING CARD – SAME AS REFERENCE
========================================== */

.order-booking-item .product {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

/* Top hero area */
.order-booking-hero {
    position: relative;
    height: 340px;
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
    background:
        radial-gradient(circle at 15% 55%, rgba(106, 255, 0, 0.8) 0, rgba(106,255,0,0) 10px),
        radial-gradient(circle at 82% 24%, rgba(106, 255, 0, 0.7) 0, rgba(106,255,0,0) 7px),
        radial-gradient(circle at 90% 42%, rgba(106, 255, 0, 0.45) 0, rgba(106,255,0,0) 12px),
        linear-gradient(135deg, #0f1f63 0%, #02206f 45%, #003b9a 100%);
}

.order-booking-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05), transparent 28%);
}

/* Timer */
.order-booking-item .product-label.label-timer {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    width: auto;
    max-width: calc(100% - 32px);
    padding: 10px 18px;
    color: #fff;
    background: linear-gradient(90deg, #2f6ef2 0%, #2563eb 100%);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}

/* Center content */
.order-booking-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px 22px 30px;
}

.order-booking-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: #72ef14;
}

.order-booking-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.order-booking-title-main {
    margin: 0;
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.4px;
}

.order-booking-title-main span {
    display: block;
    color: #72ef14;
}

.order-booking-line {
    width: 58px;
    height: 4px;
    margin: 18px auto 18px;
    border-radius: 999px;
    background: #72ef14;
}

.order-booking-subtext {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}

/* Bottom white area */
.order-booking-body-card {
    padding: 24px 20px 22px;
    border: 0;
    background: #fff;
}

.order-booking-price-wrap {
    padding: 0 0 20px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e8edf3;
}

.order-booking-price-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #7b8794;
    font-size: 16px;
    font-weight: 600;
}

.order-booking-price-label svg {
    width: 20px;
    height: 20px;
    color: #111827;
    flex: 0 0 20px;
}

.order-booking-price-value {
    color: #68e500;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.order-booking-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: 100%;
    padding: 12px 18px;
    color: #101828;
    background: linear-gradient(180deg, #78f100 0%, #66df00 100%);
    border: 1px solid #66df00;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.order-booking-btn-main:hover {
    color: #101828;
    background: linear-gradient(180deg, #68e500 0%, #58c600 100%);
    border-color: #58c600;
    box-shadow: 0 10px 18px rgba(102, 223, 0, 0.2);
}

/* Mobile */
@media (max-width: 767.98px) {
    .order-booking-hero {
        height: 250px;
    }

    .order-booking-item .product-label.label-timer {
        top: 12px;
        left: 12px;
        padding: 8px 14px;
        font-size: 11px;
    }

    .order-booking-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }

    .order-booking-title-main {
        font-size: 28px;
    }

    .order-booking-line {
        width: 46px;
        margin: 14px auto;
    }

    .order-booking-subtext {
        font-size: 14px;
    }

    .order-booking-body-card {
        padding: 18px 16px 16px;
    }

    .order-booking-price-label {
        font-size: 14px;
    }

    .order-booking-price-value {
        font-size: 24px;
    }

    .order-booking-btn-main {
        min-height: 44px;
        font-size: 14px;
    }
}

/* Fix old product CSS overriding Order Booking design */

.order-booking-item .product.product-7 {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.order-booking-item .product.product-7 .order-booking-hero {
    position: relative;
    display: block;
    width: 100%;
    /* height: 340px !important; */
    margin: 0;
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 55%,
            rgba(105, 240, 0, 0.7) 0,
            transparent 12px
        ),
        radial-gradient(
            circle at 88% 38%,
            rgba(105, 240, 0, 0.6) 0,
            transparent 14px
        ),
        linear-gradient(
            135deg,
            #0b1a4d 0%,
            #06276e 48%,
            #003d98 100%
        ) !important;
    border: 0;
}

.order-booking-item .order-booking-hero-content {
    position: relative;
    z-index: 2;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 55px 20px 25px;
    text-align: center;
}

.order-booking-item .order-booking-icon {
    display: block;
    width: 58px;
    height: 58px;
    margin: 0 0 18px;
    color: #6eef00;
}

.order-booking-item .order-booking-title-main {
    margin: 0;
    color: #ffffff !important;
    font-family: "Figtree", Arial, sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
}

.order-booking-item .order-booking-title-main span {
    display: block;
    color: #6eef00 !important;
}

.order-booking-item .order-booking-subtext {
    margin: 0;
    color: #ffffff !important;
    font-size: 15px;
    line-height: 1.45;
}

.order-booking-item .order-booking-line {
    width: 56px;
    height: 3px;
    margin: 17px auto;
    background: #6eef00;
    border-radius: 20px;
}

.order-booking-item .order-booking-body-card {
    min-height: auto;
    padding: 22px 20px 20px;
    background: #ffffff !important;
    border: 0 !important;
}

/* Mobile */

@media (max-width: 767.98px) {
    .order-booking-item .product.product-7 .order-booking-hero {
        height: 255px !important;
    }

    .order-booking-item .order-booking-title-main {
        font-size: 28px;
    }

    .order-booking-item .order-booking-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .order-booking-item .order-booking-subtext {
        font-size: 13px;
    }
}

/* =====================================
   MOBILE HEADER FIX
===================================== */

@media only screen and (max-width: 767.98px) {

    .header.header-22 .header-middle {
        min-height: 64px;
        padding: 6px 0;
    }

    .header.header-22 .header-middle .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .header.header-22 .header-left {
        flex: 0 0 auto;
        min-width: 0;
    }

    .header.header-22 .header-left .logo {
        display: block;
        width: 120px !important;
        max-width: 120px !important;
        margin: 0;
    }

    .header.header-22 .header-left .logo svg {
        display: block;
        width: 100% !important;
        height: auto;
    }

    .header.header-22 .header-center {
        display: none !important;
    }

    .header.header-22 .header-right {
        flex: 0 0 auto;
        min-width: 0;
        margin-left: 10px;
    }

    .header.header-22 .login-dropdown .header-dropdown > a,
    .header.header-22 .login-dropdown > a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        max-width: 150px;
        min-height: 38px;
        padding: 7px 10px;
        overflow: hidden;
        border-radius: 7px;
        font-size: 12px;
        white-space: nowrap;
    }

    .header.header-22 .login-dropdown a i.icon-user {
        flex: 0 0 auto;
        margin: 0;
        font-size: 17px;
    }

    .header.header-22 .user-name {
        display: block;
        min-width: 0;
        max-width: 95px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* Desktop: remove unnecessary empty space inside normal lot cards */
@media (min-width: 768px) {

    .products > .row {
        align-items: flex-start;
    }

    .simple-product-item {
        align-self: flex-start;
    }

    .simple-product-item .product.product-7 {
        height: auto;
    }

    .simple-product-item .product-body {
        flex: none;
    }

    .simple-product-item .home-product-details {
        flex: none;
    }

    .simple-product-item .sell_price_row {
        margin-top: 10px;
    }

    .simple-product-item .product-title {
        min-height: auto;
        margin-bottom: 10px;
    }

    /* order booking card */
    .products > .row {
        align-items: stretch;
    }

    .order-booking-item {
        display: flex;
        align-self: stretch;
    }

    .order-booking-item .product.product-7 {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100% !important;
        min-height: 0 !important;
    }

    /* Same height as normal product image section */
   /* .order-booking-item .product.product-7 .order-booking-hero {
        flex: 0 0 330px !important;
        height: 330px !important;
        min-height: 330px !important;
    } */

    .order-booking-item .order-booking-hero-content {
        height: 100%;
        padding: 45px 18px 22px !important;
    }

    /* Fill only the small remaining difference */
    .order-booking-item .order-booking-body-card {
        display: flex !important;
        flex: 1 1 auto !important;
        flex-direction: column;
        min-height: 0 !important;
        padding: 18px 16px 16px !important;
    }

    .order-booking-item .order-booking-price-wrap {
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    /* Align button with other cards */
    .order-booking-item .order-booking-btn-main {
        min-height: 43px;
        margin-top: auto !important;
        padding: 9px 12px;
        font-size: 13px;
    }
}

/* =====================================
   COMPACT VIIN9 FOOTER
===================================== */

.footer {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin-top: 30px !important;
    padding: 0 !important;
    background: #ffffff;
    border-top: 1px solid #e4e7ec;
}

.footer-bottom {
    height: auto !important;
    min-height: 0 !important;
    padding: 18px 0 !important;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.footer-copyright {
    margin: 0 !important;
    padding: 0 !important;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

/* Mobile */
@media (max-width: 767.98px) {
    .footer {
        margin-top: 20px !important;
    }

    .footer-bottom {
        padding: 14px 10px !important;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* Remove line above footer copyright */
.footer-bottom {
    border-top: 0 !important;
}

.footer-bottom .container {
    border-top: 0 !important;
}

.footer-bottom .container::before,
.footer-bottom .container:before,
.footer-bottom::before {
    display: none !important;
    content: none !important;
    border: 0 !important;
}

/* =========================================
   ORDER BOOKING — COMPACT MOBILE DESIGN
========================================= */

@media only screen and (max-width: 767.98px) {

    .order-booking-item .product.product-7 {
        height: auto !important;
        min-height: 0 !important;
    }

    /* Reduce large empty blue section */
    .order-booking-item .product.product-7 .order-booking-hero {
        width: 100%;
        height: 185px !important;
        min-height: 185px !important;
        aspect-ratio: auto !important;
        flex: 0 0 185px !important;
    }

    .order-booking-item .order-booking-hero-content {
        display: flex !important;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 42px 15px 15px !important;
    }

    /* Hide unnecessary mobile content */
    .order-booking-item .order-booking-icon,
    .order-booking-item .order-booking-line,
    .order-booking-item .order-booking-subtext {
        display: none !important;
    }

    /* Keep only Order Booking title */
    .order-booking-item .order-booking-title-main {
        margin: 0;
        color: #ffffff !important;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.08;
        text-align: center;
    }

    .order-booking-item .order-booking-title-main span {
        display: block;
        color: #65e600 !important;
    }

    /* Smaller timer */
    .order-booking-item .product-label.label-timer {
        top: 12px;
        left: 12px;
        min-height: 34px;
        padding: 7px 13px;
        font-size: 11px;
        line-height: 18px;
    }

    /* Compact white price section */
    .order-booking-item .order-booking-body-card {
        display: block !important;
        min-height: 0 !important;
        padding: 16px !important;
    }

    .order-booking-item .order-booking-price-wrap {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .order-booking-item .order-booking-price-label {
        margin-bottom: 5px;
        font-size: 13px;
    }

    .order-booking-item .order-booking-price-value {
        font-size: 24px;
        line-height: 1.2;
    }

    .order-booking-item .order-booking-btn-main {
        min-height: 44px;
        margin-top: 0 !important;
        padding: 9px 12px;
        font-size: 13px;
    }
}