/* Global Scroll Fix */
html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ============================================
   HERO BANNER SLIDER — Premium Design
   ============================================ */

/* ---------- Section wrapper ---------- */
.hero-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: black;
}

/* ---------- Individual slide ---------- */
.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex !important;
    align-items: center;
}

/* Ken-Burns zoom effect on the active slide bg */
.heroSwiper .swiper-slide-active .hero-overlay {
    animation: kenBurns 8s ease-in-out forwards;
}

.swiper {
    padding: 0
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

/* ---------- Dark overlay ---------- */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.72) 50%,
            rgba(0, 0, 0, 0.35) 70%,
            rgba(0, 0, 0, 0.18) 100%);
    z-index: 1;
}

/* ---------- Content container ---------- */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 15px;
    text-align: left;
}

/* ---------- Animated entrance for text ---------- */
.heroSwiper .swiper-slide-active .hero-badge {
    animation: fadeSlideUp 0.6s 0.2s both;
}

.heroSwiper .swiper-slide-active .hero-title {
    animation: fadeSlideUp 0.7s 0.35s both;
}

.heroSwiper .swiper-slide-active .hero-desc {
    animation: fadeSlideUp 0.7s 0.5s both;
}

.heroSwiper .swiper-slide-active .hero-cta-group {
    animation: fadeSlideUp 0.7s 0.65s both;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Badge ---------- */
.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    background: #E30613;
    border-radius: 30px;
    margin-bottom: 20px;
    opacity: 0;
    /* hidden until animation fires */
}

/* ---------- Title ---------- */
.hero-title {
    font-family: 'Oxanium', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 22px;
    opacity: 0;
    max-width: 700px;
}

.hero-highlight {
    color: #fff;
    position: relative;
}

/* ---------- Description ---------- */
.hero-desc {
    font-family: 'Sarabun', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 34px;
    max-width: 560px;
    opacity: 0;
}

/* ---------- CTA Buttons ---------- */
.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.35s ease;
    letter-spacing: 0.4px;
    border: 1px solid transparent;
}

.hero-btn-primary {
    background: #E30613;
    color: #fff;
    border-color: #E30613;
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.35);
}

.hero-btn-primary:hover {
    background: #c80511;
    border-color: #c80511;
    color: #fff;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #E30613;
}

.hero-btn-secondary:hover {
    background: #E30613;
    border-color: #E30613;
    color: #fff;
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.35);
    transform: translateY(-2px);
}

/* ---------- Navigation arrows ---------- */
.hero-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-nav-btn::after {
    font-size: 18px !important;
    color: #fff !important;
    font-weight: 700 !important;
}

.hero-nav-btn:hover {
    background: #E30613 !important;
    transform: scale(1.08);
}

/* ---------- Pagination dots ---------- */
.hero-pagination {
    bottom: 30px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.35s ease;
    border-radius: 6px;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 32px;
    border-radius: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Large desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-content {
        max-width: 1000px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .hero-slide {
        min-height: 80vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-nav-btn {
        display: none !important;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.82rem;
        gap: 6px;
    }

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .hero-pagination {
        bottom: 14px !important;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 22px;
    }
}



/* ============================================
   WHAT WE OFFER SECTION — Clean Minimal Design
   ============================================ */

/* ---------- Section wrapper ---------- */
.offer-section {
    padding: 60px 0 50px;
    background: #fff;
}

/* ---------- Section heading ---------- */
.offer-hed {
    text-align: left;
    margin-bottom: 45px;
}

.offer-hed h3 {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: #E30613;
    display: inline-block;
    padding: 8px 22px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin: 0;
}

.offer-hed h3::after {
    display: none;
}

/* ---------- Cards container (flexbox with dividers) ---------- */
.offer-card-section {
    display: flex;
    gap: 0;
    padding-bottom: 20px;
}

/* ---------- Individual card ---------- */
.offer-card {
    flex: 1;
    padding: 10px 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

/* Vertical divider between cards */
/* .offer-card+.offer-card {
    border-left: 1px solid #e0e0e0;
} */

/* ---------- Card icon ---------- */
.offer-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.offer-icon i {
    font-size: 1.3rem;
    color: #1a1a1a;
}

.offer-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    display: block;
}

/* ---------- Card text ---------- */
.offer-card h4 {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0;
    margin: 0 0 10px 0;
    position: relative;
    line-height: 1.35;
}

.offer-card p {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #777;
    padding: 0;
    margin: 0;
    text-align: center;
    max-width: none;
}

/* ============================================
   OFFER CARDS — RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .offer-card-section {
        flex-wrap: wrap;
    }

    .offer-card {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 20px 24px;
    }

    /* Remove left border for first item in each row */
    .offer-card:nth-child(2n+1) {
        border-left: none;
    }

    /* Add top border for second row */
    /* .offer-card:nth-child(n+3) {
        border-top: 1px solid #e0e0e0;
    } */

    .offer-hed {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .offer-section {
        padding: 40px 0 30px;
    }

    .offer-card-section {
        flex-direction: column;
        gap: 0;
    }

    .offer-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px 16px;
        border-left: none !important;
    }

    .offer-card+.offer-card {
        border-left: none;
        /* border-top: 1px solid #e0e0e0; */
    }

    .offer-hed {
        margin-bottom: 20px;
    }

    .offer-hed h3 {
        font-size: 1rem;
    }
}


/* ============================================
   INTRODUCTION SECTION — Premium Design
   ============================================ */

/* ---------- Section layout ---------- */
.intro-section {
    padding-bottom: 80px;
    align-items: center;
}

/* ---------- Image side ---------- */
.intro-img {
    position: relative;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-img img {
    width: 100%;
    max-height: 420px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    object-position: center;
}

/* Red accent corner */
.intro-img::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 80px;
    height: 80px;
    border-top: 4px solid #E30613;
    border-left: 4px solid #E30613;
    border-radius: 16px 0 0 0;
    z-index: 1;
}

.intro-img::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 28px;
    width: 80px;
    height: 80px;
    border-bottom: 4px solid #E30613;
    border-right: 4px solid #E30613;
    border-radius: 0 0 16px 0;
    z-index: 1;
}

/* ---------- Content side ---------- */
.intro-content {
    padding-left: 20px;
}

.intro-content h6 {
    font-family: 'Oxanium', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E30613;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-left: 45px;
}

.intro-content h6::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 3px;
    background: #E30613;
    border-radius: 3px;
}

.intro-content h3 {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.intro-content p {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 0;
}

/* ============================================
   INTRO — RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .intro-section {
        padding-bottom: 60px;
    }

    .intro-img {
        padding-right: 15px;
        margin-bottom: 40px;
    }

    .intro-content {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .intro-section {
        padding-bottom: 40px;
    }

    .intro-img::before,
    .intro-img::after {
        display: none;
    }

    .intro-img {
        margin-bottom: 30px;
    }

    .intro-content h3 {
        font-size: 1.4rem;
    }

    .intro-content p {
        font-size: 0.92rem;
    }
}


/* ============================================
   TYRE TYPES SECTION — Horizontal Scroll Cards
   ============================================ */

.tyre-type-section {
    padding: 60px 0;
}

.tyre-type {
    width: 100%;
}

/* ---------- Horizontal scroll container ---------- */
.type-card-container {
    display: flex;
    align-items: stretch;
    gap: 20px;
    padding: 20px 20px 20px 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.type-card-container::-webkit-scrollbar {
    display: none;
}

/* ---------- Main heading area ---------- */
.main-area {
    flex: 0 0 380px;
    padding: 30px;
    min-height: 480px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    border-radius: 16px;
}

.main-area h3 {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    color: #1a1a1a;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 18px;
}

.main-area h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: #E30613;
    border-radius: 4px;
}

.main-area-desc {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ---------- Cards ---------- */
.card-area {
    flex: 0 0 320px;
    min-height: 550px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: flex-end;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.card-area:hover {
    flex: 0 0 360px;
}

/* Gradient overlay on card */
.card-area-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.75) 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    border-radius: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.card-area:hover .card-area-overlay {
    opacity: 0.95;
}

/* Card content */
.card-area-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
}

.card-area-content h4 {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.card-area-content .card-text {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

/* ---------- Read More button ---------- */
.read-more-btn {
    background: none;
    border: none;
    color: #E30613;
    font-family: 'Oxanium', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    color: #ff4d4d;
    gap: 10px;
}

.read-more-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* ---------- Background images ---------- */
/* 1. Off-road tyres */
.bg-img-1 {
    background-image: url('/assets/newStyle/newHomeImg/tyreImg/img-5.webp');
}

/* 2. Supercar tyres */
.bg-img-2 {
    background-image: url('/assets/newStyle/newHomeImg/tyreImg/img-1.webp');
}

/* 3. Special EV tyres */
.bg-img-3 {
    background-image: url('/assets/newStyle/newHomeImg/tyreImg/img-6.webp');
}

/* 4. 4*4 SUV tyres */
.bg-img-4 {
    background-image: url('/assets/newStyle/newHomeImg/tyreImg/img-3.webp');
}

/* 5. Compact car tyres */
.bg-img-5 {
    background-image: url('/assets/newStyle/newHomeImg/tyreImg/img-2.webp');
}

/* 6. Exotic and premium car tyres */
.bg-img-6 {
    background-image: url('/assets/newStyle/newHomeImg/tyreImg/img-4.webp');
}



/* ============================================
   TYRE TYPES — RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .type-card-container {
        padding: 20px;
    }

    .main-area {
        flex: 0 0 300px;
        min-height: 400px;
        padding: 24px;
    }

    .card-area {
        flex: 0 0 280px;
        min-height: 500px;
    }

    .card-area:hover {
        flex: 0 0 300px;
    }
}

@media (max-width: 576px) {
    .tyre-type-section {
        padding: 40px 0;
    }

    .type-card-container {
        padding: 15px;
        gap: 14px;
    }

    .main-area {
        flex: 0 0 200px;
        min-height: 450px;
        padding: 10px;
    }

    .main-area h3 {
        font-size: 1.5rem;
    }

    .card-area {
        flex: 0 0 250px;
        min-height: 350px;
    }

    .card-area:hover {
        flex: 0 0 270px;
    }

    .card-area-content {
        padding: 18px;
    }

    .card-area-content h4 {
        font-size: 1.1rem;
    }
}




/* ============================================
   TYPES OF TYRES WE SUPPORT — Dark Premium Cards
   ============================================ */

/* ---------- Section spacing ---------- */
.tyre-support-section {
    padding: 70px 0 60px;
    background: #0d0d0d;
}

/* ---------- Section heading ---------- */
.tyre-support-heading {
    text-align: center;
    margin-bottom: 50px;
}

.tyre-support-heading h3 {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.tyre-support-heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #E30613, #ff4d4d);
    border-radius: 4px;
}

/* ---------- Card ---------- */
.support-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 36px 28px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E30613, #ff4d4d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/*.support-card:hover {
     transform: translateY(-8px);
    box-shadow: 0 12px 44px rgba(227, 6, 19, 0.15), 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(227, 6, 19, 0.25);
    background: #222; 
}
*/

/* .support-card:hover::before {
    transform: scaleX(1);
} */

/* ---------- Card icon ---------- */
.support-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E30613, #ff4d4d);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.25);
    transition: all 0.35s ease;
}

.support-card-icon i {
    font-size: 1.5rem;
    color: #fff;
}

/* .support-card:hover .support-card-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 8px 30px rgba(227, 6, 19, 0.4);
} */

/* ---------- Card title ---------- */
.support-card h4 {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.3;
}

/* ---------- Card description ---------- */
.support-card p {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    flex-grow: 1;
}

/* ============================================
   TYRE SUPPORT CARDS — RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .tyre-support-section {
        padding: 50px 0 40px;
    }

    .tyre-support-heading {
        margin-bottom: 36px;
    }

    .support-card {
        padding: 28px 22px 26px;
    }
}

@media (max-width: 576px) {
    .tyre-support-section {
        padding: 40px 0 30px;
    }

    .tyre-support-heading {
        margin-bottom: 28px;
    }

    .support-card {
        padding: 24px 20px;
    }

    .support-card-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        margin-bottom: 18px;
    }

    .support-card-icon i {
        font-size: 1.3rem;
    }

    .support-card h4 {
        font-size: 1.15rem;
    }

    .support-card p {
        font-size: 0.88rem;
    }
}


/* ============================================
   BRAND SECTION (Top) — Proper Spacing
   ============================================ */

.brand-section.brand-section-top {
    padding-top: 30px;
    padding-bottom: 30px;
}

.brand-section-inner {
    width: 100%;
}

.brand-heading-area {
    text-align: center;
    margin-bottom: 25px;
}

.brand-main-title {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 3px solid #E30613;
    letter-spacing: 1px;
}

.brand-section-top .car-logo-wrapper {
    overflow: hidden;
    padding-bottom: 10px;
}

.brand-section-top .brand-logos {
    gap: 35px;
}

.brand-section-top .brand-card {
    min-width: 140px;
    padding: 10px 15px;
}

/* Large Screens: Side-by-Side Layout */
@media (min-width: 992px) {
    .brand-section-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        max-width: 1600px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .brand-heading-area {
        flex: 0 0 300px;
        text-align: left;
        margin-bottom: 0;
    }

    .brand-main-title {
        font-size: 1.6rem;
        line-height: 1.25;
        white-space: normal;
        /* Allow wrapping */
        display: inline-block;
    }

    .brand-section-top .car-logo-wrapper {
        flex: 1;
        min-width: 0;
        /* Allow logos to shrink/scroll */
        width: 100%;
    }
}

@media (max-width: 768px) {
    .brand-section.brand-section-top {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .brand-heading-area {
        margin-bottom: 15px;
    }

    .brand-main-title {
        font-size: 1.3rem;
        padding-bottom: 6px;
        border-bottom-width: 2px;
    }

    .brand-section-top .brand-logos {
        gap: 20px;
    }

    .brand-section-top .brand-card {
        min-width: 120px;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .brand-main-title {
        font-size: 1.1rem;
    }
}


/* ============================================
   WHY CHOOSE US — Dark Section
   ============================================ */

.wcu-section {
    background: #111111;
    padding: 80px 0;
}

.wcu-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* ---------- Left Column ---------- */
.wcu-left {
    flex: 0 0 280px;
    max-width: 280px;
}

.wcu-heading {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.wcu-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: #E30613;
    border-radius: 3px;
}

.wcu-intro {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #999;
    margin: 0;
}

/* ---------- Right Column — 2×2 Grid ---------- */
.wcu-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px 50px;
}

.wcu-item-title {
    font-family: 'Oxanium', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.wcu-number {
    color: #E30613;
    font-weight: 700;
    margin-right: 6px;
}

.wcu-item-desc {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.9rem;
    line-height: 1.75;
    color: #999;
    margin: 0;
}

/* ============================================
   WHY CHOOSE US — RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .wcu-section {
        padding: 60px 0;
    }

    .wcu-layout {
        flex-direction: column;
        gap: 40px;
    }

    .wcu-left {
        flex: none;
        max-width: 100%;
    }

    .wcu-heading {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .wcu-section {
        padding: 45px 0;
    }

    .wcu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .wcu-item-title {
        font-size: 0.95rem;
    }
}


/* ============================================
   CTA BANNER — Full-Width Image Banner
   ============================================ */

.cta-banner {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 380px;
    display: flex;
    align-items: center;
    background: url('../../assets/images/homepage/home-cta-bg.webp') center center / cover no-repeat;
    overflow: hidden;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 60%,
            rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    /* max-width: 700px; */
    padding: 60px 80px;
}

.cta-banner-heading {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.cta-banner-desc {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 520px;
}

.cta-banner-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #F5D623;
    color: #111;
    font-family: 'Oxanium', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.cta-banner-btn:hover {
    background: #e6c515;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 214, 35, 0.3);
}

/* ============================================
   CTA BANNER — RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .cta-banner {
        min-height: 320px;
    }

    .cta-banner-content {
        padding: 40px 30px;
    }

    .cta-banner-heading {
        font-size: 1.5rem;
    }

    .cta-banner-desc {
        font-size: 0.9rem;
    }

    .cta-banner-btn {
        padding: 12px 32px;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        min-height: 280px;
    }

    .cta-banner-content {
        padding: 30px 20px;
    }

    .cta-banner-heading {
        font-size: 1.25rem;
    }
}


/* ============================================
   TYRE BRAND SECTION — Proper Spacing
   ============================================ */

.tyre-brand-section {
    padding: 60px 0;
    background: #ffffff;
}

.tyre-brand-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tyre-brand-heading {
    text-align: center;
    margin-bottom: 45px;
}

.tyre-brand-title {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #E30613;
    letter-spacing: 1px;
}

.tyre-brand-swiper {
    padding: 10px 0 20px;
}

.tyre-brand-swiper .logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    min-height: 90px;
}

.tyre-brand-swiper .logo-card img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.tyre-brand-swiper .logo-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .tyre-brand-section {
        padding: 40px 0;
    }

    .tyre-brand-heading {
        margin-bottom: 30px;
    }

    .tyre-brand-swiper .logo-card {
        padding: 10px 8px;
        min-height: 70px;
    }

    .tyre-brand-swiper .logo-card img {
        max-height: 45px;
    }
}


/* ============================================
   AVAILABLE ACCESSORIES — Horizontal Slider
   ============================================ */


/* ============================================
   TYRE SUPPORT SECTION (Services)
   ============================================ */

/* Service Card Styles */
.support-card {
    background: #0f0d08;
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid #222;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

/* .support-card:hover {
    transform: translateY(-5px);
    border-color: #E30613;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.15);
} */

/* Icon Container */
.support-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #E30613;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* .support-card:hover .support-icon {
    background: #E30613;
    color: #fff;
} */

.support-card h4 {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #fff;
}

.support-card p {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}


.accessories-slider-section {
    padding: 50px 0 60px;
    background: #fff;
}

/* ---------- Heading ---------- */
.accessories-slider-title {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 12px;
}

.accessories-slider-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 3px;
    background: #E30613;
    border-radius: 3px;
}

/* ---------- Slider wrapper (for nav arrows positioning) ---------- */
.accessories-slider-wrap {
    position: relative;
    /* padding: 0 40px; */
}

/* ---------- Card ---------- */
.acc-slide-card {
    display: flex;
    align-items: center;
    background: #f7f7f7;
    border-radius: 0;
    overflow: hidden;
    height: 220px;
    padding: 20px 0 0 25px;
    gap: 12px;
}

/* ---------- Text side ---------- */
.acc-slide-text {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    padding-top: 5px;
}

.acc-slide-text h3 {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #100c08;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

/* ---------- Image side ---------- */
.acc-slide-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.acc-slide-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

.acc-slide-card:hover .acc-slide-img img {
    transform: scale(1.05);
}

/* ---------- Navigation arrows ---------- */
.acc-nav-prev,
.acc-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    /* background: #f2f2f2; */
    border: 1px solid #b23434;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #ba0e0e;
    font-size: 0.8rem;
}

.acc-nav-prev:hover,
.acc-nav-next:hover {
    background: #E30613;
    border-color: #E30613;
    color: #fff;
}

.acc-nav-prev {
    left: 10px;
}

.acc-nav-next {
    right: 10px;
}

/* ============================================
   ACCESSORIES SLIDER — RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .accessories-slider-section {
        padding: 40px 0 50px;
    }

    .acc-slide-card {
        height: 190px;
        padding: 16px 0 0 20px;
    }

    /* .accessories-slider-wrap {
        padding: 0 30px;
    } */
}

@media (max-width: 576px) {
    .accessories-slider-section {
        padding: 30px 0 40px;
    }

    .accessories-slider-title {
        margin-bottom: 28px;
    }

    .acc-slide-card {
        height: 170px;
        padding: 14px 0 0 16px;
    }

    .acc-slide-text h3 {
        font-size: 1.2rem;
    }

    /* .accessories-slider-wrap {
        padding: 0 24px;
    } */

    .acc-nav-prev,
    .acc-nav-next {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
    padding-bottom: 60px;
    -webkit-font-smoothing: antialiased;
}

.how-it-works-heading {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-heading h3 {
    font-family: 'Oxanium', sans-serif;
    font-size: 35px;
    font-weight: 700;
    /* text-transform: uppercase; */
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.how-it-works-heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #E30613;
    border-radius: 2px;
}

.how-it-works-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    width: 100%;
    padding-top: 10px;
}

.how-it-works-grid::before {
    display: none;
}

.how-step {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 30px;
    padding: 0 0 50px 0;
    text-align: left;
    max-width: 100%;
    margin: 0;
    z-index: 1;
}

.how-step:last-child {
    padding-bottom: 0;
}

/* Connecting Dashed Line */
.how-step::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 29px;
    width: 0;
    height: calc(100% - 60px);
    border-left: 2px dashed #000;
    z-index: 1;
}

.how-step:last-child::before {
    display: none;
}

.how-step-number {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 2px solid #000000;
    color: #000000;
    font-family: 'Oxanium', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(36, 3, 6, 0.15);
    transition: all 0.3s ease;
}

.how-step:hover .how-step-number {
    background: #000000;
    color: #fff;
    transform: scale(1.1);
}

.how-step h4 {
    grid-column: 2;
    font-family: 'Oxanium', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin: 5px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.how-step p {
    grid-column: 2;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 100%;
}

@media (max-width: 576px) {
    .how-step {
        grid-template-columns: 50px 1fr;
        column-gap: 20px;
    }

    .how-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .how-step::before {
        top: 50px;
        left: 24px;
        height: calc(100% - 50px);
    }
}




/* testimonial */

/* Testimonial Cards - Fixed Layout */
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: auto;
}

.testimonial-text {
    flex-grow: 1;
    line-height: 1.6;
    color: #333;
    font-size: 15px;
    overflow: visible;
}

.testimonial-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

/* Red theme buttons and accents */
.btn-outline-primary {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-primary:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.btn-primary {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-primary:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

/* Google icon styling */
.google-icon {
    height: 16px;
    vertical-align: middle;
}

.google-icon-cta {
    height: 18px;
    margin-right: 12px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
}

/* Star rating color */
.star-rating {
    color: #FBBC04;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-content {
        min-height: auto;
    }
}

/* ============================================
   REFURBISHED GALLERY SECTION
   ============================================ */

.gallery-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.gallery-title {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    text-transform: uppercase;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #E30613;
    border-radius: 2px;
}

.gallery-desc {
    font-family: 'Sarabun', sans-serif;
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    height: 300px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .gallery-item {
        height: 200px;
    }
}

/* ============================================
   ADVANTAGE SECTION
   ============================================ */
.advantage-section {
    position: relative;
    padding: 80px 0;
    background: url('../../assets/images/homepage/home-cta-bg.webp') center/cover no-repeat fixed;
    background-color: #111;
    color: #fff;
    overflow: hidden;
}

.advantage-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

/* Heading */
.advantage-title {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Items */
.adv-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.adv-item i {
    font-size: 1.2rem;
    color: #fff;
    width: 25px;
    text-align: center;
}

.adv-item span {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.3;
}

.adv-item:hover {
    padding-left: 10px;
    border-color: rgba(255, 255, 255, 0.5);
}

.adv-item:hover span {
    color: #fff;
}

@media (max-width: 991px) {
    .advantage-title {
        margin-bottom: 30px;
        text-align: center;
    }
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
    position: relative;
    padding: 80px 0;
    background: url('../../assets/images/homepage/home-cta-bg.webp') center/cover no-repeat fixed;
    background-color: #111;
    color: #fff;
    overflow: hidden;
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

.location-title {
    font-family: 'Oxanium', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.loc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.loc-item i {
    font-size: 1rem;
    color: #E30613;
    width: 20px;
    text-align: center;
}

.loc-item span {
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.3;
    text-transform: capitalize;
}

.loc-item:hover {
    padding-left: 10px;
    border-color: rgba(255, 255, 255, 0.5);
}

.loc-item:hover span {
    color: #fff;
}

@media (max-width: 991px) {
    .location-title {
        margin-bottom: 30px;
        text-align: center;
    }
}

/* ============================================
   OFFER SECTION
   ============================================ */

.offer-section {
    padding: 20px 10px 20px;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.offer-content {
    max-width: 800px;
    width: 100%;
}

.offer-title {
    color: #1a1a1a;
    display: inline-block;
    border-bottom: 3px solid #E30613;
    padding-bottom: 5px;
    font-size: 33px;
    font-weight: 800;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
}

.offer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 0 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

.offer-card {
    /* background: #fff; */
    /* border-radius: 8px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    overflow: hidden;
    max-width: 380px;
    width: 100%;
    font-family: 'Oxanium', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.offer-cover {
    background-color: #000;
    border-radius: 10px;

    padding: 0;
    border: 1px solid #E30613;
}

/* .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
} */

.offer-image {
    width: 100%;
    height: auto;
    background: transparent;
    position: relative;
    overflow: hidden;
    display: block;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* ============================================
   TYRE TYPE SWIPER
   ============================================ */

.tyreTypeSwiper {
    padding-bottom: 50px;
    /* Space for pagination */
    padding-top: 20px;
    /* overflow: visible; allow shadows to show? Swiper usually hides overflow. */
}

.tyreTypeSwiper .swiper-slide {
    width: auto;
    height: auto;
    display: flex;
}

/* Buttons */
.tyreTypeSwiper .tyre-prev,
.tyreTypeSwiper .tyre-next {
    color: #E30613;
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    /* Ensure center */
    align-items: center;
    justify-content: center;
    position: absolute;
    /* Force absolute */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    margin-top: 0;
    cursor: pointer;
}

.tyreTypeSwiper .tyre-prev {
    left: 10px;
}

.tyreTypeSwiper .tyre-next {
    right: 10px;
}

.tyreTypeSwiper .tyre-prev::after,
.tyreTypeSwiper .tyre-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* Pagination */
.tyreTypeSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.tyreTypeSwiper .swiper-pagination-bullet-active {
    background: #E30613;
    width: 25px;
    border-radius: 5px;
    transition: width 0.3s ease;
}



.offer-button {
    width: 100%;
    background: #E30613;
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

/* .offer-button:hover {
    background: #c20510;
    color: white;
} */

@media (max-width: 768px) {
    .offer-title {
        font-size: 2rem;
    }

    .offer-main {
        gap: 20px;
        padding: 0 15px 40px;
    }

    /* .offer-image {
        height: 300px;
    } */
}

/* Remove hover effect for Tyre Type Swiper Navigation */
.tyreTypeSwiper .tyre-next:hover,
.tyreTypeSwiper .tyre-prev:hover {
    transform: translateY(-50%) !important;
    background: white !important;
    color: #E30613 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}