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

a {
    text-decoration: none;
}

/* Hero Section Styles */
.hero-section {
    width: 100%;
    min-height: 410px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    overflow: hidden;
    position: relative;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 1360px;
    /* 1440px - 80px padding */
    position: relative;
    z-index: 1;
}

/* Hero Text Styles */
.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.hero-subtitle {
    color: white;
    font-size: 30.89px;
    font-family: 'REM', sans-serif;
    font-weight: 400;
    line-height: 30.89px;
    word-wrap: break-word;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    color: white;
    font-size: 100px;
    font-family: 'REM', sans-serif;
    font-style: italic;
    font-weight: 900;
    line-height: 100px;
    letter-spacing: 2px;
    word-wrap: break-word;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Search Form Styles */
.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.search-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-dropdown {
    width: 201px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    justify-content: flex-start;
}

.filter-dropdown:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.filter-text {
    color: black;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    line-height: 20px;
    word-wrap: break-word;
}

.filter-select {
    appearance: none;
    background: transparent;
    border: none;
    color: black;
    font-family: 'REM', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    width: 100%;
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 0;
    padding-right: 30px;
    /* Add space for the chevron icon */
    text-align: left;
    min-width: 200px;
}

.filter-dropdown i {
    color: black;
    font-size: 16px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.search-input {
    width: 236px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.search-input:hover {
    background: rgba(255, 255, 255, 1);
}

.keyword-input {
    border: none;
    outline: none;
    background: transparent;
    color: black;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 20px;
    width: 100%;
}

.keyword-input::placeholder {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 20px;
}

/* Search Button Styles */
.search-button {
    width: 177px;
    padding: 17px 32px;
    position: relative;
    background: #B32120;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #961F1E;
    transform: translateY(-2px);
}

.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;
    word-wrap: break-word;
    position: relative;
    z-index: 1;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .hero-section {
        padding: 60px 30px;
    }

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

    .hero-title {
        font-size: 80px;
        line-height: 80px;
        letter-spacing: 1.6px;
    }

    .search-filters {
        flex-direction: column;
        width: 100%;
        max-width: 500px;
    }

    .filter-dropdown,
    .search-input {
        width: 100%;
    }

    .search-button {
        width: 100%;
        max-width: 500px;
    }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
    .hero-section {
        padding: 60px 40px;
        min-height: 100vh;
    }

    .hero-content {
        gap: 32px;
    }

    .hero-text {
        gap: 10.75px;
    }

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

    .hero-title {
        font-size: 67.17px;
        line-height: 67.17px;
        letter-spacing: 1.34px;
    }

    .search-form {
        width: 100%;
    }

    .search-filters {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .filter-dropdown,
    .search-input {
        width: 100%;
    }

    .search-button {
        width: 100%;
    }
}

/* Extra Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 40px 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 18px;
    }

    .hero-title {
        font-size: 50px;
        line-height: 50px;
        letter-spacing: 1px;
    }

    .filter-dropdown,
    .search-input {
        padding: 14px 16px;
    }

    .search-button {
        padding: 18px 24px;
    }
}

/* Font Awesome Icons */
.fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* RV Categories Section */
.rv-categories-section {
    width: 100%;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.rv-categories-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1360px;
    width: 100%;
}

.rv-categories-container .rv-category-card {
    width: 385px;
    height: 420px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.category-image {
    width: 221.64px;
    height: 147.76px;
    object-fit: cover;
}

.category-title {
    width: 100%;
    text-align: center;
    color: black;
    font-size: 24px;
    font-family: 'REM', sans-serif;
    font-weight: 500;
    line-height: 32px;
    word-wrap: break-word;
}

/* Tablet Styles for RV Categories (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .rv-categories-section {
        padding: 40px 30px;
    }

    .rv-categories-container {
        gap: 40px;
        justify-content: center;
    }



    .category-image {
        width: 200px;
        height: 133px;
    }

    .category-title {
        font-size: 22px;
        line-height: 28px;
    }
}

/* Mobile Styles for RV Categories (max-width: 767px) */
@media (max-width: 767px) {
    .rv-categories-section {
        padding: 40px 40px;
    }

    .rv-categories-container {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        width: 100%;
    }



    .category-image {
        width: 221.64px;
        height: 147.76px;
    }

    .category-title {
        font-size: 24px;
        line-height: 32px;
    }
}

/* Extra Small Mobile Styles for RV Categories (max-width: 480px) */
@media (max-width: 480px) {
    .rv-categories-section {
        padding: 30px 20px;
    }

    .rv-categories-container {
        align-items: center;
        gap: 25px;
    }



    .category-image {
        width: 180px;
        height: 120px;
    }

    .category-title {
        font-size: 20px;
        line-height: 28px;
    }
}

/* About Section */
.about-section {
    width: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 578px;
}

.about-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: stretch;
}

.about-image {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 578px;
}

.about-content {
    flex: 1;
    padding: 80px 100px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.about-header {
    width: 100%;
    max-width: 488px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-subtitle {
    color: #B32120;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.32px;
    word-wrap: break-word;
    margin-bottom: 8px;
}

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

.about-description {
    width: 100%;
    color: #394453;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 24px;
    word-wrap: break-word;
}

.about-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-button {
    padding: 22px 32px;
    position: relative;
    background: #B32120;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    min-width: 177px;
}

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

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

.primary-button .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;
    word-wrap: break-word;
    position: relative;
    z-index: 1;
}

.secondary-button {
    padding: 22px 32px;
    background: transparent;
    border: 2px solid #D5DBE2;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

.secondary-button .button-text {
    color: black;
    font-size: 18px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.36px;
    word-wrap: break-word;
}

/* Tablet Styles for About Section (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        height: 400px;
    }

    .about-img {
        min-height: 400px;
    }

    .about-content {
        padding: 60px 40px;
        align-items: center;
        text-align: center;
    }

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

    .about-buttons {
        justify-content: center;
        width: 100%;
    }
}

/* Mobile Styles for About Section (max-width: 767px) */
@media (max-width: 767px) {
    .about-section {
        min-height: auto;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image {
        display: none;
        /* Hide image on mobile as per your mobile design */
    }

    .about-content {
        padding: 20px;
        gap: 20px;
        align-items: flex-start;
        text-align: left;
    }

    .about-header {
        gap: 10px;
        max-width: none;
    }

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

    .about-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        min-width: auto;
    }

    .primary-button .button-shadow {
        width: 100%;
    }
}

/* Extra Small Mobile Styles for About Section (max-width: 480px) */
@media (max-width: 480px) {
    .about-content {
        padding: 15px;
    }

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

    .primary-button,
    .secondary-button {
        padding: 18px 24px;
    }
}

/* Featured Products Section */
.featured-products-section {
    width: 100%;
    padding: 60px 40px;
    background: white;
    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: #B32120;
    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 {
        position: absolute;
        top: -200px;
        /* Position over the slider */
    }

    .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;
    }
}

/* Services Section */
.services-section {
    padding: 80px 40px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%),
        url('/imgs/parts section bg.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.services-container {
    width: 100%;
    max-width: 986px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    width: 100%;
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.10);
    overflow: hidden;
    border-radius: 8px;
    backdrop-filter: blur(4.50px);
    display: flex;
    align-items: stretch;
}

.service-icon-section {
    width: 185px;
    padding: 40px;
    background: #F6F7F9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.service-image {
    width: 100%;
    height: 103.87px;
    object-fit: contain;
}

.service-content-section {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.80);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

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

.service-description {
    color: #424F62;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 24px;
    word-wrap: break-word;
    margin: 0;
}

.service-button {
    padding: 16px 20px;
    background: #B32120;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.56px;
    transition: all 0.3s ease;
}

.service-button:hover {
    background: #9a1d1c;
    transform: translateY(-2px);
}

.service-hours-section {
    padding: 40px;
    background: rgba(0, 0, 0, 0.80);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
    min-width: 200px;
}

.hours-block {
    line-height: 24px;
}

.hours-title {
    color: #ECEFF2;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 700;
    line-height: 24px;
    word-wrap: break-word;
}

.hours-label {
    color: #ECEFF2;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 300;
    line-height: 24px;
    word-wrap: break-word;
}

.hours-value {
    color: white;
    font-size: 16px;
    font-family: 'REM', sans-serif;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
}

.hours-divider {
    width: 176.88px;
    height: 0px;
    border: 1px solid #D5DBE2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 20px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%),
            url('https://placehold.co/393x2205') center/cover no-repeat;
        gap: 30px;
    }

    .services-container {
        max-width: 100%;
        gap: 30px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-icon-section {
        width: 100%;
        padding: 40px;
    }

    .service-image {
        width: 86.71px;
        height: 85.78px;
    }

    .service-content-section {
        padding: 20px;
        text-align: center;
        align-items: center;
    }

    .service-info {
        align-items: center;
    }

    .service-title {
        text-align: center;
    }

    .service-description {
        text-align: center;
    }

    .service-hours-section {
        padding: 20px;
        align-items: center;
        text-align: center;
        min-width: auto;
        width: 100%;
    }

    .hours-block {
        text-align: center;
        width: 100%;
    }

    .hours-divider {
        width: 100%;
        align-self: stretch;
    }
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background-color: white;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.brand-slider {
    flex: 1;
    height: 131.55px;
    overflow: hidden;
}

.left-slider .brand-logos {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.right-slider .brand-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.brand-logo {
    width: 224.30px;
    height: 108.36px;
    object-fit: contain;
    /* opacity: 0.7; */
    transition: opacity 0.3s ease;
}

/* .brand-logo:hover {
    opacity: 1;
} */

.brands-content {
    width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

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

.brands-description {
    text-align: center;
    color: #516278;
    font-size: 20px;
    font-family: 'REM', sans-serif;
    font-weight: 500;
    line-height: 28px;
    word-wrap: break-word;
    margin: 0;
}

.brands-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.brands-primary-button {
    padding: 22px 32px;
    background: #B32120;
    border: none;
    border-radius: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brands-primary-button .button-shadow {
    width: 177px;
    height: 26.63px;
    position: absolute;
    left: 0;
    top: 30.37px;
    background: #961F1E;
}

.brands-primary-button .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;
    word-wrap: break-word;
    position: relative;
    z-index: 1;
}

.brands-secondary-button {
    padding: 22px 32px;
    background: transparent;
    border: 2px solid #D5DBE2;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.brands-secondary-button .button-text {
    color: black;
    font-size: 18px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 24px;
    letter-spacing: 0.36px;
    word-wrap: break-word;
}

.brands-primary-button:hover {
    background: #9a1d1c;
    transform: translateY(-2px);
}

.brands-secondary-button:hover {
    border-color: #B32120;
    background: rgba(179, 33, 32, 0.1);
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .brands-container {
        flex-direction: column;
        gap: 20px;
    }

    .brand-slider {
        width: 100%;
        flex: none;
    }

    .left-slider .brand-logos,
    .right-slider .brand-logos {
        justify-content: center;
    }

    .brands-content {
        width: 100%;
        order: 2;
    }

    .left-slider {
        order: 1;
    }

    .right-slider {
        order: 3;
    }

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

    .brands-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .brands-primary-button,
    .brands-secondary-button {
        width: 100%;
    }

    .brands-primary-button .button-shadow {
        width: 313px;
    }
}


/* ===== PROMOTIONS SECTION ===== */
.promotions-section {
    padding: 60px 40px;
    /* background: #f8f9fa; */
    position: relative;
}

#promotionsCarousel {
    max-width: 1160px;
    margin: 0 auto;
    background: #242932;
    box-shadow: 0px 4px 8px rgba(16, 24, 40, 0.30);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.carousel-control-prev,
.carousel-control-next {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.50);
    box-shadow: 0px 4px 8px rgba(16, 24, 40, 0.30);
    border-radius: 20px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control-prev {
    left: 40px;
}

.carousel-control-next {
    right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.70);
    transform: translateY(-50%) scale(1.05);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: black;
    font-size: 16px;
    font-weight: 900;
}

.carousel-inner {
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators li.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .promotions-section {
        padding: 40px 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .carousel-control-prev {
        left: 20px;
    }

    .carousel-control-next {
        right: 20px;
    }

    .carousel-control-prev i,
    .carousel-control-next i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .promotions-section {
        padding: 30px 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 28px;
        height: 28px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .carousel-control-prev i,
    .carousel-control-next i {
        font-size: 12px;
    }

    .carousel-indicators {
        bottom: 15px;
    }

    .carousel-indicators li {
        width: 10px;
        height: 10px;
    }
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-display {
    color: black;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
    padding-right: 30px;
}

.select-options {
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    background: white;
    border: 2px solid black;
    box-shadow: 0 4px 8px rgb(0 0 0);
    z-index: 1000;
    display: none;
    max-height: 94px;
    overflow-y: auto;
}

.select-options.open {
    display: block;
}

.option {
    padding: 12px 20px;
    color: black;
    font-size: 14px;
    font-family: 'REM', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

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

.option.selected {
    background-color: #B32120;
    color: white;
}

.one,
.two {
    padding: 17px 15px;
    text-decoration: none;
}

.one .button-text,
.two .button-text {
    font-size: 14px;
}

.srp-list-monthly {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(32, 168, 255, 0.20);
    border-radius: 100px;
    margin: 0 auto;
}

.srp-list-monthly-text {
    color: black;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
}

.srp-list-monthly-text.grid {
    font-size: 14px;
}

.srp-list-monthly-amount {
    color: #003366;
    font-size: 16px;
    font-style: italic;
    font-weight: 700;
}

/* Tooltip styling for monthly payment section */
.srp-list-monthly {
    position: relative;
    cursor: pointer;
}

.srp-list-monthly:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: pre-line;
    font-size: 10px;
    font-weight: normal;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
    max-width: 282px;
    overflow-wrap: break-word;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.srp-list-monthly:hover::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    margin-bottom: -5px;
    z-index: 1000;
}

/* Optional: Style the info icon to indicate it's part of the hoverable area */
.srp-list-monthly .fas.fa-info-circle {
    margin-left: 5px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.srp-list-monthly:hover .fas.fa-info-circle {
    opacity: 1;
}

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