/* ============================================================
   PARENT WRAPPER — LOCAL VARIABLES
   ============================================================ */
#style-rent24 {
    --primary-text: #111;
    --secondary-text: #666;
    --bg-color: #fff;
    --footer-bg: #f5f5f7;
    --border-color: #e5e5e5;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-card: 12px;
    --primary-bg: #fff;
    --hover-bg: #f8f9fa;
    --active-bg: #eff6ff;
    --active-text: #0d6efd;
    --text-main: #111;
    --text-sub: #666;
    --radius-pill: 50px;
    --top-radius-card: 24px;
}

/* ============================================================
   RESET
   ============================================================ */
#style-rent24 *,
#style-rent24 *::before,
#style-rent24 *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#style-rent24 body {
    font-family: var(--font-main);
    color: var(--primary-text);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

#style-rent24 a {
    text-decoration: none;
    color: inherit;
}

#style-rent24 ul {
    list-style: none;
}

/* ============================================================
   HEADER
   ============================================================ */
#style-rent24 header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 110;
}

#style-rent24 .logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
    font-style: italic;
}

#style-rent24 nav ul {
    display: flex;
    gap: 20px;
}

#style-rent24 nav a {
    font-size: 0.9rem;
    font-weight: 500;
}

#style-rent24 .header-actions {
    display: flex;
    gap: 15px;
}

#style-rent24 .icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

/* ============================================================
   CATEGORY FILTER BAR
   ============================================================ */
#style-rent24 .fleet-type-options-container {
    background-color: #fff;
    border-bottom: 1px solid #eeeff2;
    height: 77px;
    width: 100%;
    position: sticky;
    top: 83px;
    z-index: 9;
}

#style-rent24 .filters {
    margin: 0 auto;
    max-width: 1616px;
    padding: 0 30px;
    align-items: center;
    display: flex;
    gap: 2%;
    height: 77px;
    overflow-x: auto;
    scrollbar-width: none;
}

#style-rent24 .filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-width: 60px;
    opacity: 0.6;
    transition: 0.2s;
}

#style-rent24 .filter-item:hover,
#style-rent24 .filter-item.active {
    opacity: 1;
}

#style-rent24 .filter-icon {
    font-size: 1.2rem;
}

#style-rent24 .filter-text {
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============================================================
   MAIN GRID / LAYOUT
   ============================================================ */
#style-rent24 .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 40px;
}

#style-rent24 .car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* ============================================================
   CARD BASE
   ============================================================ */
#style-rent24 .card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

#style-rent24 .card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

#style-rent24 .card-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

#style-rent24 .card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

#style-rent24 .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, .9);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: .7rem;
    font-weight: 700;
    z-index: 2;
}

#style-rent24 .card-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

#style-rent24 .card-info p {
    font-size: 0.85rem;
    color: var(--secondary-text);
    margin-bottom: 12px;
}

#style-rent24 .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

#style-rent24 .price {
    font-size: 0.9rem;
    font-weight: 600;
}

#style-rent24 .price span {
    font-weight: 400;
    color: var(--secondary-text);
    font-size: 0.8rem;
}

/* ============================================================
   DOTS BASE
   ============================================================ */
#style-rent24 .dots {
    display: flex;
    gap: 3px;
}

#style-rent24 .dot {
    width: 4px;
    height: 4px;
    background: #ddd;
    border-radius: 50%;
}

#style-rent24 .dot.active {
    background: #333;
}

/* ============================================================
   SLIDER SECTION
   ============================================================ */
#style-rent24 .slider-wrapper {
    min-height: 280px;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-card);
    overflow: hidden;
}

@media (min-width: 320px) and (max-width: 767px) {
    #style-rent24 .slider-wrapper {
        min-height: 328px;
    }
}

#style-rent24 .slides {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

#style-rent24 .slides::-webkit-scrollbar {
    display: none;
}

#style-rent24 .slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
}

#style-rent24 .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px !important;
    aspect-ratio: 1 / 1;
}

@media (max-width: 575px) {
    #style-rent24 .slide img {
        height: 327px !important;
        width: 345px !important;
    }
}

@media (min-width: 1200px) {
    #style-rent24 .slide img {
        height: 280px !important;
    }
}

/* ============================================================
   BADGE — ELECTRIC
   ============================================================ */
#style-rent24 .badge-group {
    position: absolute;
    top: 0px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
}
#style-rent24 .badge-electric {
    /*position: absolute;*/
    /*top: 15px;*/
    /*left: 15px;*/
    background: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    height: 22px;
    justify-content: center;
    align-items: center;
    display: flex;
}

/* ============================================================
   DOTS CONTROL
   ============================================================ */
#style-rent24 .dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

#style-rent24 .dot {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

#style-rent24 .dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* ============================================================
   SLIDER ARROWS
   ============================================================ */
#style-rent24 .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20000;
}

#style-rent24 .slider-arrow svg {
    width: 20px;
    height: 20px;
}

#style-rent24 .slider-arrow.prev {
    left: 10px;
}

#style-rent24 .slider-arrow.next {
    right: 10px;
}

#style-rent24 .slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Show arrows when hovering */
#style-rent24 .slider-wrapper:hover .slider-arrow {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   CARD HEADER / TITLE / SUBTITLE
   ============================================================ */
#style-rent24 .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

#style-rent24 .card-title-rent {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#style-rent24 .card-title {
    font-size: 0.95rem;
    font-weight: 500;
    /*margin-bottom: 4px;*/
}

#style-rent24 .color-swatch-block {
    display: flex;
    align-items: center;
    gap: 6px;
}
#style-rent24 .color-swatch-block .color-swatch {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, #444, #000);
    border-radius: 50%;
    border: 1px solid #ddd;
}

#style-rent24 .card-subtitle {
    color: grey;
    font-size: 13px;
    font-weight: 500;
    line-height: 17px;
}

/* ============================================================
   SPECS TAGS (icons in cards)
   ============================================================ */
#style-rent24 .specs-tag {
    align-items: center;
    background-color: #f4f4f4;
    border-radius: 5px;
    color: #545454;
    display: flex;
    font-size: 11px;
    font-weight: 400;
    gap: 5px;
    height: 21px;
    justify-content: center;
    margin-top: 5px;
    padding: 0 5px;
    width: fit-content;
}

#style-rent24 .specs-tag img {
    height: 17px;
    width: 17px;
}

/* ============================================================
   PRICE ROW
   ============================================================ */
#style-rent24 .price-row {
    color: #6a6a6a;
    font-size: 12px;
    font-weight: 400;
}

#style-rent24 .price-bold {
    color: #222;
    font-size: 14px;
    font-weight: 500;
}

#style-rent24 .link-text {
    color: var(--text-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 14px;
}

/* ============================================================
   CLICK OVERLAY FIX (Important)
   ============================================================ */
#style-rent24 .card-link-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: auto !important;
}

#style-rent24 .slider-wrapper {
    position: relative !important;
    z-index: 3 !important;
    pointer-events: auto !important;
}

#style-rent24 .slider-wrapper * {
    pointer-events: auto !important;
}

/* ============================================================
   RESERVATION SUMMARY BAR (Top Sticky)
   ============================================================ */
#style-rent24 .reservation-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 90;
    background: #fff;
    height: 85px;
}

#style-rent24 .details p {
    margin: 0;
    font-size: 14px;
}

#style-rent24 .details strong {
    font-weight: 700;
}

/* ============================================================
   CAR DETAILS — MAIN LAYOUT
   ============================================================ */
#style-rent24 .car-details-section {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

#style-rent24 .car-info-display {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#style-rent24 .car-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ============================================================
   IMAGE GALLERY
   ============================================================ */
#style-rent24 .car-gallery {
    display: flex;
    gap: 10px;
}

#style-rent24 .main-image {
    flex: 2;
}

#style-rent24 .side-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#style-rent24 .car-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

#style-rent24 .side-image-top,
#style-rent24 .side-image-bottom {
    height: 220px;
}

/* ============================================================
   SUBSCRIPTION CONFIG SIDEBAR
   ============================================================ */
#style-rent24 .subscription-config {
    width: 380px;
    flex-shrink: 0;
    padding-bottom: 20px;
}

#style-rent24 .subscription-config h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

#style-rent24 .vat-notice {
    text-align: right;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

#style-rent24 .config-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

#style-rent24 .config-group h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* ============================================================
   COLOR SELECTOR
   ============================================================ */
#style-rent24 .color-selector {
    padding-bottom: 20px;
    display: flex;
    gap: 10px;
}

#style-rent24 .selected-swatch {
    border-color: #007bff;
    outline: 2px solid #007bff;
    outline-offset: 1px;
}

/* ============================================================
   OPTION SELECTORS (Mileage / Duration)
   ============================================================ */
#style-rent24 .selector-group {
    margin-bottom: 20px;
}

#style-rent24 .label {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin-bottom: 10px;
}

#style-rent24 .per-month {
    font-size: 12px;
    color: #777;
}

#style-rent24 .options-container {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

#style-rent24 .option {
    padding: 8px 15px;
    border: 1px solid #e9eaec;
    background-color: #fff;
    color: #555;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color .2s, border-color .2s;
    height: 59px;
}

#style-rent24 .option:hover {
    background-color: #f5f5f5;
}

#style-rent24 .option.selected {
    border-color: #000;
    color: #000;
}

/* ============================================================
   FLOATING ACTION BAR (TOP RIGHT PRICE)
   ============================================================ */
#style-rent24 .floating-action-bar {
    position: static;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

#style-rent24 .free-delivery {
    font-size: 14px;
    color: #777;
    margin-right: 15px;
    padding: 6px 12px;
    border-right: 1px solid #eee;
    background-color: #f2f2f2;
    border-radius: 999px;
}

#style-rent24 .price-details {
    text-align: right;
    line-height: 1.2;
}

#style-rent24 .price-value {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    display: block;
}

#style-rent24 .price-term {
    font-size: 12px;
    color: #777;
}

#style-rent24 .action-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color .2s;
}

#style-rent24 .action-button:hover {
    background-color: #0056b3;
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {

    #style-rent24 nav {
        display: none; /* Hide nav on mobile */
    }

    #style-rent24 .filters {
        padding: 15px 20px;
    }

    #style-rent24 .container {
        padding: 20px;
    }

    #style-rent24 .car-grid {
        grid-template-columns: 1fr;
    }

    #style-rent24 .footer-links {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   MOBILE — CAR DETAILS PAGE
   ============================================================ */
@media (max-width: 768px) {

    #style-rent24 .car-details-section {
        flex-direction: column;
    }

    #style-rent24 .main-image img {
        height: 260px !important;
    }

    #style-rent24 .side-images {
        display: none;
    }

    #style-rent24 .subscription-config {
        width: 100%;
    }

    #style-rent24 .car-title {
        font-size: 22px;
        margin-top: 10px;
    }

    #style-rent24 .reservation-summary {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        padding: 12px 16px;
        background: #fff;
        border-top: 1px solid #ddd;
        border-bottom: none;
        z-index: 2000;
        justify-content: space-between;
    }

    #style-rent24 .price-value {
        font-size: 22px !important;
    }

    #style-rent24 .action-button {
        padding: 10px 16px !important;
        font-size: 14px !important;
    }
}
/* ============================================================
   VEHICLE DETAILS — SPEC BOX
   ============================================================ */

#style-rent24 .spec-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    margin-top: 20px;
}

#style-rent24 .spec-box h4 {
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 700;
}

/* List style: stacked rows */
#style-rent24 .spec-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#style-rent24 .spec-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
}

/* Icon left */
#style-rent24 .spec-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#style-rent24 .spec-icon svg {
    width: 22px;
    height: 22px;
}

/* Spec text */
#style-rent24 .spec-text {
    display: flex;
    flex-direction: column;
}

#style-rent24 .spec-value {
    font-weight: 500;
    color: #111827;
}

#style-rent24 .spec-label {
    font-size: 12px;
    color: #6b7280;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    #style-rent24 .spec-box {
        border-radius: 12px;
        padding: 16px 18px;
    }
    #style-rent24 .spec-row {
        font-size: 13px;
    }
}

#style-rent24 .spec-strip-icon svg {
    width: 32px;
    height: 32px;
}

/* ============================================================
   HEADER FILTER NAV (Search Filters)
   ============================================================ */

#style-rent24 .filter-nav {
    background-color: var(--primary-bg);
    border: 1px solid #eee;
    border-radius: var(--radius-pill);
    display: inline-flex;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    position: relative;
    z-index: 100;
}

#style-rent24 .nav-pill-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

#style-rent24 .filter-item-wrapper {
    position: relative;
}

#style-rent24 .filter-item-wrapper:hover .nav-pill-btn,
#style-rent24 .filter-item-wrapper.active .nav-pill-btn {
    background-color: var(--active-bg);
    color: var(--active-text);
    font-weight: 600;
}

/* ============================================================
   DROPDOWN MENU WRAPPER
   ============================================================ */
#style-rent24 .filter-dropdown {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translate(-50%, -10px);
    width: 500px;
    background: #fff;
    border-radius: var(--top-radius-card);
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Fix hover gap — invisible bridge */
#style-rent24 .filter-dropdown::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

/* Show on hover */
#style-rent24 .filter-item-wrapper:hover .filter-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

/* ============================================================
   DROPDOWN INTERNAL CONTENT
   ============================================================ */
#style-rent24 .dropdown-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

#style-rent24 .dropdown-subtitle {
    font-size: 14px;
    color: var(--secondary-text);
    margin-bottom: 24px;
}

/* Option buttons */
#style-rent24 .option-btn {
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #111;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
    cursor: pointer;
}

#style-rent24 .option-btn:hover {
    background-color: #f9f9f9;
    border-color: #ccc;
}

#style-rent24 .option-btn.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ============================================================
   PRICE SLIDER — NOUISLIDER BASE (inside filter)
   ============================================================ */
#style-rent24 .slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

#style-rent24 .slider-arrow-filter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

#style-rent24 .slider-arrow-filter:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

/* Slider track */
#style-rent24 #price-slider {
    flex-grow: 1;
    height: 4px;
    background: #eee;
    border: none;
    box-shadow: none;
}

#style-rent24 .noUi-connect {
    background: #000;
}

/* Slider handle */
#style-rent24 .noUi-handle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
    top: -7px;
    right: -9px;
    cursor: grab;
}

#style-rent24 .noUi-handle:before,
#style-rent24 .noUi-handle:after {
    display: none;
}

/* Price input grid */
#style-rent24 .price-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#style-rent24 .price-input-box {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
}

#style-rent24 .price-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
    font-weight: 500;
}

#style-rent24 .price-field-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#style-rent24 .price-input {
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
}

/* ============================================================
   DROPDOWN FOOTER (Reset + Show buttons)
   ============================================================ */
#style-rent24 .card-footer-custom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#style-rent24 .btn-reset {
    border: none;
    background: none;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

#style-rent24 .btn-show {
    background: #000;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

#style-rent24 .btn-show:hover {
    background: #333;
}

/* ============================================================
   MOBILE FILTER BASE WRAPPER
   ============================================================ */

#style-rent24 .mobile-filter {
    max-width: 100%;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

#style-rent24 .hidden {
    display: none !important;
}

/* ============================================================
   STATE 1 — COLLAPSED WIDGET (DEFAULT MOBILE STATE)
   ============================================================ */

#style-rent24 .collapsed-widget .widget-icon {
    position: absolute;
    left: 20px;
}

@media (max-width: 767px) {

    /* Blue top overlay container */
    #style-rent24 .menu-overlay {
        width: 100%;
        max-width: 400px;
        height: 500px;
        background-color: rgba(146, 188, 223, 0.95);
        backdrop-filter: blur(5px);
        position: relative;
        padding: 20px;
        display: flex;
        flex-direction: column;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    #style-rent24 .collapsed-widget {
        background-color: white;
        width: 100%;
        height: 57px;
        border-radius: 35px;
        display: flex;
        align-items: center;
        padding: 0 24px;
        box-shadow: 0 0 13.9px 0 #0000001a;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        animation: fadeIn 0.3s ease-in-out;
        justify-content: center;
        flex-direction: column;
        position: relative;
        margin: 0 auto;
    }

    #style-rent24 .collapsed-widget:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    }

    #style-rent24 .collapsed-widget:active {
        transform: scale(0.98);
    }

    #style-rent24 .widget-icon {
        color: #1a1a1a;
        display: flex;
        align-items: center;
    }

    #style-rent24 .widget-text {
        flex-grow: 1;
        padding-left: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #style-rent24 .widget-title {
        font-size: 16px;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.2;
    }

    #style-rent24 .widget-subtitle {
        font-size: 13px;
        color: #7d7d7d;
        font-weight: 400;
        margin-top: 2px;
    }

    #style-rent24 .widget-menu-icon {
        color: #1a1a1a;
        margin-left: auto;
    }

    /* ============================================================
       STATE 2 — FULLSCREEN EXPANDED FILTER MODAL
       ============================================================ */

    #style-rent24 .mobile-container {
        width: 100%;
        background-color: #f0f1f3;
        height: 100vh;
        padding: 24px;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        overflow: hidden;
        z-index: 110;
        animation: slideUp .3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Header of expanded modal */
    #style-rent24 .header {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20px;
    }

    #style-rent24 .close-btn {
        width: 32px;
        height: 32px;
        background: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        cursor: pointer;
        color: #333;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: background .2s;
    }

    #style-rent24 .close-btn:hover {
        background: #f5f5f5;
    }

    /* Search bar inside mobile modal */
    #style-rent24 .search-container {
        margin-bottom: 24px;
    }

    #style-rent24 .search-input-wrapper {
        position: relative;
        width: 100%;
    }

    #style-rent24 .search-icon {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        stroke: #333;
        stroke-width: 2;
    }

    #style-rent24 .search-input {
        width: 100%;
        padding: 16px 16px 16px 48px;
        border-radius: 12px;
        border: 1px solid #d1d1d6;
        background: transparent;
        font-size: 15px;
        color: #333;
        outline: none;
    }

    /* Modal scroll area */
    #style-rent24 .content {
        flex-grow: 1;
        overflow-y: auto;
        scrollbar-width: none;
    }
    #style-rent24 .content::-webkit-scrollbar {
        display: none;
    }

    /* Cards inside modal */
    #style-rent24 .card-title {
        font-size: 16px;
        font-weight: 600;
        color: #1a1a1a;
    }

    /* Tags (brands) */
    #style-rent24 .tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    #style-rent24 .tag {
        padding: 10px 20px;
        border-radius: 25px;
        border: 1px solid #e0e0e0;
        background: white;
        font-size: 14px;
        font-weight: 500;
        color: #1a1a1a;
        cursor: pointer;
        transition: 0.2s;
    }

    #style-rent24 .tag:hover {
        border-color: #bbb;
        background-color: #fafafa;
    }

    #style-rent24 .tags-container .tag.selected {
        background: #000;
        color: #fff;
    }

    /* Row cards (Price range, Sort, etc.) */
    #style-rent24 .row-card {
        background: white;
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 12px;
        font-size: 15px;
        font-weight: 600;
        color: #1a1a1a;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #style-rent24 .row-card .arrow {
        transition: transform .25s ease;
    }

    #style-rent24 .row-card.active .arrow {
        transform: rotate(180deg);
    }

    /* Expanded collapsible content */
    #style-rent24 .mobile-collapse {
        background: white;
        border-radius: 14px;
        padding: 16px;
        margin-bottom: 12px;
    }

    #style-rent24 .mobile-collapse .dropdown-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    /* Footer of mobile modal */
    #style-rent24 .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        margin-top: 10px;
    }

    #style-rent24 .reset-btn {
        display: flex;
        align-items: center;
        background: none;
        border: none;
        font-size: 15px;
        font-weight: 600;
        color: #1a1a1a;
        cursor: pointer;
        gap: 8px;
    }

    #style-rent24 .research-btn {
        background-color: #007aff;
        color: white;
        border: none;
        border-radius: 12px;
        padding: 14px 24px;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,122,255,0.2);
    }

    /* ============================================================
       MOBILE CONTACT PANEL (additional mobile UI)
       ============================================================ */

    #style-rent24 .mobile-container-contact {
        width: 100%;
        background-color: #f0f1f3;
        padding: 24px;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        animation: slideUp .3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 110;
    }

    #style-rent24 .header-contact {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 20px;
        position: relative;
    }

    #style-rent24 .back-btn {
        background: none;
        border: none;
        cursor: pointer;
        color: #5a6e80;
        display: flex;
        align-items: center;
        padding: 5px;
    }

    #style-rent24 .page-title {
        position: absolute;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        color: #4a5f70;
        pointer-events: none;
    }

    /* Separator inside modal */
    #style-rent24 .separator {
        height: 1px;
        background: rgba(0,0,0,0.05);
        width: 100%;
        margin-bottom: 40px;
    }

    /* ============================================================
       OVERLAY BACKDROP (when modal is open)
       ============================================================ */

    #style-rent24 .mobile-menu-backdrop {
        animation: fadeInMobileBackdrop .3s ease-out;
        -webkit-backdrop-filter: blur(102px);
        backdrop-filter: blur(102px);
        background-color: #ffffff9f;
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2000;
    }

    @keyframes fadeInMobileBackdrop {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideUp {
        from { transform: translateY(20px); opacity: 0; }
        to   { transform: translateY(0); opacity: 1; }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }
}
/* ============================================================
   UNIVERSAL UTILITIES
   ============================================================ */

#style-rent24 .separator-05 {
    border-top: .5px solid #ddd;
    margin: 1rem;
    opacity: 1;
}

#style-rent24 .separator-dark-05 {
    border: 0;
    border-top: 0.5px solid rgba(0,0,0,0.2);
}

#style-rent24 .shadow {
    border-radius: .375rem !important;
    box-shadow: 0 4px 16px 0 #0000001a !important;
}

#style-rent24 .hidden {
    display: none !important;
}

/* ============================================================
   ACCORDION (BOOTSTRAP OVERRIDES)
   ============================================================ */

#style-rent24 .accordion-button:not(.collapsed) {
    background-color: #ffffff;
}

#style-rent24 .accordion-button:focus {
    border: none;
    box-shadow: none !important;
}

/* ============================================================
   BUTTON STYLES / OVERRIDES
   ============================================================ */

#style-rent24 .btn-primary {
    height: 50px;
    width: 198px;
}

/* ============================================================
   FOOTER FIX — Custom Hyphen List Style
   ============================================================ */

#style-rent24 .footer-col ul li:before {
    content: "-";
    padding-right: 5px;
}

#style-rent24 .footer-col ul,
#style-rent24 .footer-col ol {
    padding-left: 0 !important;
}

/* ============================================================
   MOBILE SEARCH FILTER — COLLAPSIBLE CARDS
   ============================================================ */

#style-rent24 .row-card.collapsible {
    padding: 16px;
    background: white;
    border-radius: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
}

#style-rent24 .row-card .arrow {
    transition: transform 0.25s ease;
}

#style-rent24 .row-card.active .arrow {
    transform: rotate(180deg);
}

#style-rent24 .mobile-collapse {
    background: white;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
}

#style-rent24 .mobile-collapse .dropdown-title {
    font-size: 16px;
    font-weight: 600;
}

#style-rent24 .tags-container .tag.selected {
    background: #000;
    color: #fff;
}

/* ============================================================
   HEADER FILTER NAV (duplicate cleanup block)
   ============================================================ */
/* These are included again to ensure override order is correct. */

#style-rent24 .filter-nav {
    background-color: var(--primary-bg);
    border: 1px solid #eee;
    border-radius: var(--radius-pill);
    display: inline-flex;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    position: relative;
    z-index: 100;
}

#style-rent24 .nav-pill-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: #111;
    transition: 0.2s;
    cursor: pointer;
}

#style-rent24 .filter-item-wrapper {
    position: relative;
}

#style-rent24 .filter-item-wrapper:hover .nav-pill-btn,
#style-rent24 .filter-item-wrapper.active .nav-pill-btn {
    background-color: var(--active-bg);
    color: var(--active-text);
    font-weight: 600;
}

/* ============================================================
   FILTER DROPDOWN (repeated intentionally for cascade correctness)
   ============================================================ */

#style-rent24 .filter-dropdown {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translate(-50%, -10px);
    width: 500px;
    background: #fff;
    border-radius: var(--top-radius-card);
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Invisible hover bridge */
#style-rent24 .filter-dropdown::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
}

#style-rent24 .filter-item-wrapper:hover .filter-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

/* ============================================================
   DROPDOWN BUTTONS (BRAND & SORT OPTIONS)
   ============================================================ */

#style-rent24 .option-btn {
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #111;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
}

#style-rent24 .option-btn:hover {
    background-color: #f9f9f9;
    border-color: #ccc;
}

#style-rent24 .option-btn.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ============================================================
   PRICE & SLIDER INPUT GRID
   ============================================================ */

#style-rent24 .slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

#style-rent24 #price-slider {
    flex-grow: 1;
    height: 4px;
    background: #eee;
    border: none;
}

#style-rent24 .noUi-connect {
    background: #000;
}

#style-rent24 .noUi-handle {
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
    border: 2px solid #fff;
    top: -7px;
    cursor: grab;
}

#style-rent24 .price-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#style-rent24 .price-input-box {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 16px;
}

#style-rent24 .price-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

#style-rent24 .price-field-wrap {
    display: flex;
    justify-content: space-between;
}

#style-rent24 .price-input {
    border: none;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    outline: none;
}

/* ============================================================
   DROPDOWN FOOTER BUTTONS
   ============================================================ */

#style-rent24 .card-footer-custom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#style-rent24 .btn-reset {
    background: none;
    border: none;
    font-size: 14px;
    color: #111;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}

#style-rent24 .btn-show {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

#style-rent24 .btn-show:hover {
    background: #333;
}

/* ============================================================
   VEHICLE DETAILS — SPECIFICATION BOX (DETAIL PAGE)
   ============================================================ */

#style-rent24 .spec-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    margin-top: 20px;
}

#style-rent24 .spec-box h4 {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
}

#style-rent24 .spec-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#style-rent24 .spec-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
}

#style-rent24 .spec-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#style-rent24 .spec-icon svg {
    width: 22px;
    height: 22px;
}

#style-rent24 .spec-text {
    display: flex;
    flex-direction: column;
}

#style-rent24 .spec-value {
    font-weight: 500;
    color: #111827;
}

#style-rent24 .spec-label {
    font-size: 12px;
    color: #6b7280;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #style-rent24 .spec-box {
        border-radius: 12px;
        padding: 16px 18px;
    }
    #style-rent24 .spec-row {
        font-size: 13px;
    }
}

#style-rent24 .spec-strip-icon svg {
    width: 32px;
    height: 32px;
}

/* ============================================================
   ACTION BUTTONS (CIRCLE BUTTONS + LANGUAGE DROPDOWN)
   ============================================================ */

#style-rent24 .actions-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
}

#style-rent24 .circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255,255,255,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #4a5f70;
    transition: background .2s;
}

#style-rent24 .circle-btn:hover {
    background-color: rgba(255,255,255,0.3);
}

#style-rent24 .language-dropdown {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-100%);
    width: 140px;
    background-color: rgba(165,200,230,0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
}

#style-rent24 .language-dropdown.active {
    opacity: 1;
    visibility: visible;
}

#style-rent24 .dropdown-item {
    padding: 12px 16px;
    font-size: 14px;
    color: #5a6e80;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    transition: background .2s;
}

#style-rent24 .dropdown-item:hover {
    background-color: rgba(255,255,255,0.2);
}

#style-rent24 .dropdown-item.selected {
    font-weight: 600;
}

/* ============================================================
   FINAL MOBILE COLLAPSIBLE SEARCH FIXES
   ============================================================ */

#style-rent24 .mobile-collapse .dropdown-title {
    font-size: 16px;
    font-weight: 600;
}

#style-rent24 .mobile-menu-backdrop {
    animation: fadeInMobileBackdrop .3s ease-out;
    backdrop-filter: blur(102px);
    background-color: #ffffff9f;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
}

@keyframes fadeInMobileBackdrop {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================================
   RANDOM UI UTILITY CLEANUP
   ============================================================ */

#style-rent24 .specs-tag {
    background-color: #f4f4f4;
    border-radius: 5px;
    color: #545454;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 5px;
    height: 21px;
    font-size: 11px;
    margin-top: 5px;
}

#style-rent24 .specs-tag img {
    width: 17px;
    height: 17px;
}

#style-rent24 .link-text {
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================================
   FINAL FIX — CLICKABLE CARD OVERLAY PRIORITY
   ============================================================ */

#style-rent24 .card-link-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 2 !important;
    pointer-events: auto !important;
}

/* Ensure slider stays interactive above overlay */
#style-rent24 .slider-wrapper {
    position: relative !important;
    z-index: 3 !important;
    pointer-events: auto !important;
}

#style-rent24 .slider-wrapper * {
    pointer-events: auto !important;
}


/* ============================================================
   ICON BOX — FILTER CATEGORY ITEMS (SCOPED)
   ============================================================ */

#style-rent24 .icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 10px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.25s ease-in-out, transform 0.25s ease-in-out;
    cursor: pointer;
}

#style-rent24 .icon-box span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
    color: #969fac;
    white-space: nowrap;
    text-transform: uppercase;
}

/* ICON STYLING */
#style-rent24 .icon-box svg {
    width: 29px;
    height: 29px;
    stroke: #A7B0C0;
    transition: 0.3s ease-in-out;
    transform: scale(1) rotate(0deg);
}

/* HOVER STATE */
#style-rent24 .icon-box:hover svg {
    transform: scale(1.15) rotate(3deg);
    stroke: #000;
}

/* ACTIVE STATE */
#style-rent24 .icon-box.active {
    border-bottom: 3px solid #000;
}

#style-rent24 .icon-box.active svg {
    stroke: #000 !important;
    transform: scale(1.15);
}


/**************************
Background Overlay
*/
#style-rent24 .slide{
    background: linear-gradient( #e0e0e0, #ffffff, #e0e0e0); /* A nice backdrop */
    /*padding: 20px;*/
    display: flex;
    justify-content: center;
}
#style-rent24 .car-image {
    /*object-fit: cover;*/
    /* This makes the white background disappear */
    mix-blend-mode: multiply;
    /* Optional: helps with blending on some screens */
    filter: contrast(1.05);
    max-width: 100%;
    height: auto;
    object-fit: inherit !important; /* FIX: prevents cropping */
}

/* -----------------------------------------------------
   GLOBAL SLIDE CARD SIZE FIX — ALL CARDS SAME HEIGHT
------------------------------------------------------*/
/*#style-rent24 .slide {*/
/*    aspect-ratio: 16 / 10;      !* Same height for all slides *!*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/

/*    position: relative;*/
/*    overflow: hidden;*/
/*    border-radius: 20px;*/

/*    !* Premium winter cinematic gradient *!*/
/*    background: linear-gradient(*/
/*        to bottom,*/
/*        #eef4fa 0%,*/
/*        #e3e9f2 40%,*/
/*        #d6dde7 100%*/
/*    );*/

/*    !* Soft winter glow inside *!*/
/*    box-shadow: inset 0 0 40px rgba(255,255,255,0.4);*/
/*}*/

/*!* -----------------------------------------------------*/
/*   CAR IMAGE ENHANCEMENT*/
/*------------------------------------------------------*!*/
/*#style-rent24 .slide img {*/
/*    max-width: 100%;*/
/*    max-height: 100%;*/
/*    object-fit: contain;          !* Prevents stretching full-photo images *!*/
/*    position: relative;*/
/*    z-index: 5;*/

/*    !* Smooth blending against winter bg *!*/
/*    mix-blend-mode: multiply;*/
/*    filter: brightness(0.98) contrast(1.1);*/
/*}*/


/*!* -----------------------------------------------------*/
/*   WINTER CINEMATIC SNOW — PURE CSS (NO IMAGES)*/
/*------------------------------------------------------*!*/
/*#style-rent24 .slide::before,*/
/*#style-rent24 .slide::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: -20%;*/
/*    left: -20%;*/
/*    width: 160%;*/
/*    height: 160%;*/
/*    pointer-events: none;*/
/*    background-repeat: repeat;*/
/*    background-size: 220px 220px;*/
/*    z-index: 3;*/

/*    !* Procedural snowflake pattern *!*/
/*    background-image:*/
/*        radial-gradient(2px 2px at 30px 40px, rgba(255,255,255,0.9) 50%, transparent 51%),*/
/*        radial-gradient(3px 3px at 120px 80px, rgba(255,255,255,0.7) 50%, transparent 51%),*/
/*        radial-gradient(1.5px 1.5px at 160px 160px, rgba(255,255,255,0.6) 50%, transparent 51%),*/
/*        radial-gradient(2px 2px at 80px 150px, rgba(255,255,255,0.8) 50%, transparent 51%),*/
/*        radial-gradient(4px 4px at 200px 20px, rgba(255,255,255,0.5) 50%, transparent 51%);*/
/*}*/

/*!* BACK LAYER — soft drifting snow *!*/
/*#style-rent24 .slide::before {*/
/*    opacity: 0.35;*/
/*    animation: winterSnowBack 20s linear infinite;*/
/*}*/

/*!* FRONT LAYER — blizzard snow *!*/
/*#style-rent24 .slide::after {*/
/*    opacity: 0.75;*/
/*    animation: winterSnowFront 12s linear infinite;*/
/*}*/

/*!* -----------------------------*/
/*   SNOW KEYFRAMES*/
/*----------------------------- *!*/
/*@keyframes winterSnowBack {*/
/*    from { transform: translateY(-10%) translateX(0); }*/
/*    to   { transform: translateY(110%) translateX(-15%); }*/
/*}*/

/*@keyframes winterSnowFront {*/
/*    from { transform: translateY(-10%) translateX(0); }*/
/*    to   { transform: translateY(120%) translateX(20%); }*/
/*}*/


/*!* -----------------------------------------------------*/
/*   BLIZZARD WIND GUSTS (EXTRA DEPTH)*/
/*------------------------------------------------------*!*/
/*#style-rent24 .slide .wind {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    z-index: 4;*/
/*    pointer-events: none;*/

/*    background: linear-gradient(*/
/*        75deg,*/
/*        rgba(255,255,255,0.0) 0%,*/
/*        rgba(255,255,255,0.12) 40%,*/
/*        rgba(255,255,255,0.0) 80%*/
/*    );*/

/*    mix-blend-mode: screen;*/
/*    animation: windMotion 6s ease-in-out infinite;*/
/*}*/

/*@keyframes windMotion {*/
/*    0%   { opacity: 0.0; transform: translateX(-20px); }*/
/*    50%  { opacity: 0.25; transform: translateX(20px); }*/
/*    100% { opacity: 0.0; transform: translateX(-20px); }*/
/*}*/


/*!* -----------------------------------------------------*/
/*   CINEMATIC FOG LAYER (TOP HAZE)*/
/*------------------------------------------------------*!*/
/*#style-rent24 .slide .fog {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    z-index: 4;*/
/*    pointer-events: none;*/

/*    background: radial-gradient(circle at top,*/
/*    rgba(255,255,255,0.55) 0%,*/
/*    rgba(255,255,255,0.30) 35%,*/
/*    rgba(255,255,255,0.10) 60%,*/
/*    transparent 100%*/
/*    );*/

/*    animation: fogMotion 14s ease-in-out infinite;*/
/*}*/

/*@keyframes fogMotion {*/
/*    0%   { opacity: 0.4; transform: translateY(0); }*/
/*    50%  { opacity: 0.6; transform: translateY(-10px); }*/
/*    100% { opacity: 0.4; transform: translateY(0); }*/
/*}*/



/*!*#style-rent24 .slide {*!*/
/*!*    position: relative;*!*/
/*!*    overflow: hidden;*!*/
/*!*    border-radius: 20px;*!*/

/*!*    !* Winter cinematic gradient *!*!*/
/*!*    background: linear-gradient(*!*/
/*!*        to bottom,*!*/
/*!*        #e9eff6 0%,*!*/
/*!*        #dde5ee 40%,*!*/
/*!*        #d1dae5 100%*!*/
/*!*    );*!*/
/*!*}*!*/

/*!*#style-rent24 .slide img {*!*/
/*!*    width: 100%;*!*/
/*!*    height: 100%;*!*/
/*!*    object-fit: contain;*!*/
/*!*    display: block;*!*/

/*!*    !* Makes white backgrounds blend better *!*!*/
/*!*    mix-blend-mode: multiply;*!*/
/*!*    filter: brightness(0.95) contrast(1.1);*!*/
/*!*    z-index: 5;*!*/
/*!*    position: relative;*!*/
/*!*}*!*/

/*!*!* Base snow class applied to each slide *!*!*/
/*!*#style-rent24 .slide::before,*!*/
/*!*#style-rent24 .slide::after {*!*/
/*!*    content: "";*!*/
/*!*    position: absolute;*!*/
/*!*    top: -10%;*!*/
/*!*    left: -10%;*!*/
/*!*    width: 120%;*!*/
/*!*    height: 120%;*!*/
/*!*    pointer-events: none;*!*/
/*!*    z-index: 3;*!*/
/*!*    background-repeat: repeat;*!*/
/*!*    background-size: 200px 200px;*!*/

/*!*    !* Snowflake dots pattern (CSS only) *!*!*/
/*!*    background-image:*!*/
/*!*        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.9) 50%, transparent 51%),*!*/
/*!*        radial-gradient(3px 3px at 80px 120px, rgba(255,255,255,0.8) 50%, transparent 51%),*!*/
/*!*        radial-gradient(1.5px 1.5px at 150px 60px, rgba(255,255,255,0.6) 50%, transparent 51%),*!*/
/*!*        radial-gradient(2.5px 2.5px at 60px 170px, rgba(255,255,255,0.7) 50%, transparent 51%);*!*/
/*!*}*!*/

/*!*!* Back snow (slow) *!*!*/
/*!*#style-rent24 .slide::before {*!*/
/*!*    animation: winterSnowA 18s linear infinite;*!*/
/*!*    opacity: 0.35;*!*/
/*!*}*!*/

/*!*!* Front snow (faster & denser) *!*!*/
/*!*#style-rent24 .slide::after {*!*/
/*!*    animation: winterSnowB 10s linear infinite;*!*/
/*!*    opacity: 0.6;*!*/
/*!*}*!*/

/*!*@keyframes winterSnowA {*!*/
/*!*    from { transform: translateY(-10%) translateX(0); }*!*/
/*!*    to   { transform: translateY(100%) translateX(-10%); }*!*/
/*!*}*!*/

/*!*@keyframes winterSnowB {*!*/
/*!*    from { transform: translateY(-10%) translateX(0); }*!*/
/*!*    to   { transform: translateY(100%) translateX(10%); }*!*/
/*!*}*!*/

/*!*#style-rent24 .slide .fog {*!*/
/*!*    position: absolute;*!*/
/*!*    inset: 0;*!*/
/*!*    z-index: 4;*!*/
/*!*    background: radial-gradient(circle at top,*!*/
/*!*    rgba(255,255,255,0.5) 0%,*!*/
/*!*    rgba(255,255,255,0.2) 40%,*!*/
/*!*    transparent 100%*!*/
/*!*    );*!*/
/*!*    pointer-events: none;*!*/
/*!*}*!*/
