.slick-slide {
    margin: 0 10px;
}

a {
    text-decoration: none;
}

.promotions-section {
    max-width: 1280px;
    margin: auto;
    padding: 60px 20px;
}

#promotionsCarousel button.carousel-control-next,
#promotionsCarousel button.carousel-control-prev {
    background: rgba(255, 255, 255, 0.10);
    width: 8%;
    opacity: 1;
}


/* Featured Vehicles Banner */
.featured-vehicles-banner {
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    margin: 20px 0;
}

.featured-vehicles-text {
    padding: 30px 40px;
    transform: rotate(-2deg);
    transform-origin: top left;
    outline: 7px #FC0606 solid;
    outline-offset: -3.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FC0606;
    font-size: 44px;
    font-family: 'Stardos Stencil', serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 52px;
    letter-spacing: 0.5px;
    word-wrap: break-word;
}

.carousel-inner {
    width: 84%;
    margin: auto;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .featured-vehicles-banner {
        padding: 20px;
    }

    .featured-vehicles-text {
        font-size: 36px;
        line-height: 44px;
        padding: 20px 30px;
    }
}

@media (max-width: 480px) {
    .featured-vehicles-banner {
        padding: 15px;
    }

    .featured-vehicles-text {
        font-size: 28px;
        line-height: 36px;
        padding: 15px 20px;
    }
}


/* Featured Products Section */
.featured-products-section {
    width: 100%;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-products-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.section-title {
    color: black;
    font-size: 44px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    line-height: 52px;
    word-wrap: break-word;
    margin: 0;
}

.section-subtitle {
    color: #B32120;
    font-size: 24px;
    font-family: 'REM', sans-serif;
    font-weight: 500;
    line-height: 32px;
    word-wrap: break-word;
    margin: 0;
}

/* Products Slider */
.products-slider-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.products-slider {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

/* Product Card */
.product-card {
    background: white;
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.10);
    border: 1px solid #D5DBE2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 325px;
    flex-shrink: 0;
}

/* Product Image */
.product-image-container {
    width: 100%;
    height: 243.75px;
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.action-button {
    width: 40px;
    height: 40px;
    padding: 10px;
    background: white;
    border: none;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-button:hover {
    background: #f8f9fa;
}

.action-button i {
    color: #B32120;
    font-size: 24px;
}

.action-menu {
    position: absolute;
    top: 50px;
    right: 0;
    width: 139px;
    background: white;
    box-shadow: 0px 4px 8px rgba(16, 24, 40, 0.30);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.product-actions:hover .action-menu {
    opacity: 1;
    visibility: visible;
}

.action-item {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.90);
    border-bottom: 1px solid #D5DBE2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.action-item:last-child {
    border-bottom: none;
}

.action-item:hover {
    background: rgba(179, 33, 32, 0.05);
}

.action-item span {
    color: black;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 24px;
}

.action-item i {
    color: #B32120;
    font-size: 16px;
}

/* Product Info */
.product-info {
    width: 100%;
    padding: 20px;
    background: #242932;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}

.product-title {
    color: white;
    font-size: 24px;
    font-family: 'REM', sans-serif;
    font-weight: 500;
    line-height: 32px;
    word-wrap: break-word;
    margin: 0;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-stock span {
    color: white;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 24px;
}

/* Product Pricing */
.product-pricing {
    width: 100%;
    padding: 20px;
    background: #F6F7F9;
    border-top: 1px solid #D5DBE2;
    border-bottom: 1px solid #D5DBE2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pricing-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

.price-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.our-price-label {
    text-align: center;
    color: black;
    font-size: 24px;
    font-family: 'REM', sans-serif;
    font-style: italic;
    font-weight: 700;
    line-height: 32px;
}

.our-price {
    text-align: center;
    color: #A60302;
    font-size: 38px;
    font-family: 'REM', sans-serif;
    font-weight: 800;
    line-height: 40px;
}

.monthly-payment {
    padding: 6px 16px;
    background: rgba(32, 168, 255, 0.20);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.payment-text {
    text-align: center;
    color: black;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-style: italic;
    font-weight: 700;
    line-height: 24px;
}

.payment-text .amount {
    color: #003366;
}

.monthly-payment i {
    color: #006EDF;
    font-size: 16px;
}

.pricing-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.price-row .label {
    color: #516278;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    line-height: 20px;
}

.price-row .value {
    color: #516278;
    font-size: 18px;
    font-family: 'REM', sans-serif;
    font-weight: 500;
    line-height: 24px;
}

.price-row .value.strikethrough {
    text-decoration: line-through;
    font-style: italic;
    font-weight: 400;
}

.price-row .value.discount {
    color: #01A427;
}

.divider {
    width: 100%;
    height: 1px;
    background: #D5DBE2;
}

/* Key Features */
.key-features {
    width: 100%;
    padding: 16px;
    background: white;
    border: 2px solid #ECEFF2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.features-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.features-title {
    color: black;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.56px;
}

.features-header i {
    color: #657992;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.features-content {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: max-height 0.3s ease;
}

.key-features.expanded .features-content {
    max-height: 200px;
    /* Enough height for 3 feature rows */
}

.key-features.expanded .features-header i {
    transform: rotate(180deg);
}

.feature-row {
    height: 35px;
    border-bottom: 1px solid #ECEFF2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-info i {
    color: #657992;
    font-size: 16px;
}

.feature-info span {
    color: black;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 700;
    line-height: 20px;
}

.feature-value {
    color: #B32120;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    line-height: 24px;
}

/* Product Buttons */
.product-buttons {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.btn-primary-card {
    width: 100%;
    padding: 18px 32px;
    position: relative;
    background: #B32120;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.btn-primary-card:hover {
    background: #961F1E;
}

.btn-primary-card .button-shadow {
    position: absolute;
    top: 24.51px;
    left: 0;
    width: 100%;
    height: 21.49px;
    background: #961F1E;
}

.btn-secondary-card {
    width: 100%;
    padding: 18px 32px;
    position: relative;
    background: #333B47;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.btn-secondary-card:hover {
    background: #242932;
}

.btn-secondary-card .button-shadow {
    position: absolute;
    top: 24.51px;
    left: 0;
    width: 100%;
    height: 21.49px;
    background: #242932;
}

.btn-outline-card {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: 2px solid #D5DBE2;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-outline-card:hover {
    border-color: #B32120;
    background: rgba(179, 33, 32, 0.05);
}

.btn-primary-card .button-text,
.btn-secondary-card .button-text {
    color: white;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.56px;
    position: relative;
    z-index: 1;
}

.btn-outline-card .button-text {
    color: black;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.56px;
}

.financing-note {
    width: 100%;
    text-align: center;
    color: #657992;
    font-size: 11px;
    font-family: 'REM', sans-serif;
    font-weight: 400;
    line-height: 16px;
    margin-top: 6px;
}

/* Slider Controls */
.slider-controls {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.slider-nav {
    width: 58px;
    height: 58px;
    padding: 16.57px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 4px 8px rgba(16, 24, 40, 0.30);
    border-radius: 33.14px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.80);
}

.slider-nav i {
    color: black;
    font-size: 26.51px;
}

.view-inventory-btn {
    padding: 22px 32px;
    position: relative;
    background: #FC0606;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    min-width: 290px;
}

.view-inventory-btn:hover {
    background: #961F1E;
}

.view-inventory-btn .button-shadow {
    position: absolute;
    top: 30.37px;
    left: 0;
    width: 100%;
    height: 26.63px;
    background: #961F1E;
}

.view-inventory-btn .button-text {
    color: white;
    font-size: 18px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.36px;
    position: relative;
    z-index: 1;
}

/* Tablet Styles for Featured Products (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .featured-products-section {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 38px;
        line-height: 46px;
    }

    .section-subtitle {
        font-size: 22px;
        line-height: 28px;
    }

    .products-slider {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .slider-controls {
        gap: 30px;
    }
}

/* Mobile Styles for Featured Products (max-width: 767px) */
@media (max-width: 767px) {
    .featured-products-section {
        padding: 40px 20px;
    }

    .featured-products-container {
        gap: 20px;
    }

    .section-title {
        font-size: 38px;
        line-height: 46px;
    }

    .section-subtitle {
        font-size: 24px;
        line-height: 32px;
    }

    .products-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 20px;
    }

    .product-card {
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .slider-controls {
        position: relative;
        width: 100%;
        flex-direction: column;
        gap: 40px;
    }



    .slider-nav.prev {
        left: 0;
    }

    .slider-nav.next {
        right: 0;
    }

    .view-inventory-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Extra Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .featured-products-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 32px;
        line-height: 38px;
    }

    .section-subtitle {
        font-size: 20px;
        line-height: 26px;
    }

    .products-slider {
        padding: 0 10px;
    }
}


/* body.modal-open {
    overflow: hidden;
}
*/

.modal {
    z-index: 999999999;
    height: 100%;
    width: 100%;
    background: #000000a6;
}

.modal-body {
    background: #fff;
    max-width: 80vw;
    padding: 3%;
    margin: auto;
    align-self: center;
    position: relative;
    margin-top: 3%;
    max-height: 825px;
    overflow: hidden;
}

.staff-popup .modal-body {
    background: #fff;
    max-width: 80vw;
    padding: 3%;
    margin: auto;
    align-self: center;
    position: relative;
    margin-top: 3%;
    max-height: 825px;
    overflow-y: scroll;
    width: 100%;
}

.staff-popup .modal-content {
    max-height: 90vh;
}

.modal-body h2 {
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    line-height: 56px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.modal-close-btn {
    position: absolute;
    top: 65px;
    right: 50px;
    cursor: pointer;
}

.pre-approve-iframe {
    width: 100%;
    min-height: 600px;
    max-height: 625px;
    overflow-y: auto;
}

.pre-approve-iframe iframe {
    width: 100%;
    height: 100vh;
}

.promotions-modal {
    display: flex !important
}

.promotions-modal .modal-back-btn-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
}

.modal-body .modal-back-btn-container h2 {
    margin-bottom: 0px;
}

.modal-back-btn {
    cursor: pointer;
}

.promotions-modal .modal-body {
    margin-top: auto;
}

.promotions-modal .quote-step {
    display: none;
}

.modal .form-control,
.modal .form-select {
    border-radius: 0 !important;
    box-shadow: none !important;
    border-color: #ccc !important;
    padding: 10px;
}

.modal .submit-btn {
    background: #000;
    color: #fff;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    border-radius: 0;
    padding: 10px 50px;
    display: block;
    max-width: 250px;
    margin: auto;
}

.swal2-modal input,
.swal2-modal select,
.swal2-modal textarea {
    box-shadow: none !important;
}

.modal-body .use-tow-guide-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.shop-now-popup-step-zero-wrapper {
    max-width: 1080px;
    padding: 20px;
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 80px;
    box-sizing: border-box;
    margin: 0 auto;
    align-items: center;
}

.shop-now-popup-step-zero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.shop-now-popup-step-zero-title {
    font-size: 52px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: black;
    line-height: 56px;
    text-align: center;
}

.shop-now-popup-step-zero-close {
    width: 46px;
    height: 46px;
    background: #080808;
    border-radius: 50%;
}

.shop-now-popup-step-zero-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
}

.shop-now-popup-step-zero-card {
    flex: 1 1 250px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(16, 24, 40, 0.06);
    border: 1px solid #D1D1D1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
    cursor: pointer;
}

/* .shop-now-popup-step-zero-icon {
    width: 35px;
    height: 35px;
    background: #A51336;
} */

/* Customize each icon */
.shop-now-popup-step-zero-icon.icon-quote {
    width: 26.25px;
    height: 26.25px;
}

.shop-now-popup-step-zero-icon.icon-approval {
    width: 25.65px;
    height: 19.56px;
}

.shop-now-popup-step-zero-icon.icon-appointment {
    width: 29.17px;
    height: 32.08px;
}

.shop-now-popup-step-zero-label {
    font-size: 28px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-align: center;
    color: black;
    line-height: 36px;
}

.use-tow-guide-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: #080808;
    color: white;
    font-family: Open Sans, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    z-index: 999;
    position: relative;
}

.use-tow-guide-button:hover {
    color: white;
}

.active-step h2 {
    text-align: center;
}

.modal-body .use-tow-guide-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}