/* =========================================================
   RESHAM TYRES - CAR MODEL LANDING PAGE CSS
   Responsive Fixed Version
   Example: Toyota Fortuner Tyres in Noida
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --rt-red: #e52323;
    --rt-red-dark: #c91414;
    --rt-black: #111111;
    --rt-dark: #1b1b1b;
    --rt-text: #333333;
    --rt-muted: #6b7280;
    --rt-border: #e5e7eb;
    --rt-light: #f7f7f7;
    --rt-white: #ffffff;
    --rt-green: #16803c;

    --rt-container: 1200px;

    --rt-radius: 10px;
    --rt-radius-sm: 6px;

    --rt-shadow:
        0 5px 20px rgba(0, 0, 0, 0.07);

    --rt-shadow-hover:
        0 10px 30px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;

    scroll-behavior: smooth;

    overflow-x: clip;
}

body {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    color: var(--rt-text);
    background: var(--rt-white);

    font-size: 16px;
    line-height: 1.7;

    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    transition: all 0.25s ease;
}


/* =========================================================
   COMMON SECTION
========================================================= */

section {
    width: 100%;
    max-width: 100%;

    margin-left: 0;
    margin-right: 0;

    padding: 65px 20px;
}

section h2 {
    margin: 0 0 15px;

    color: var(--rt-black);

    font-size: 32px;
    line-height: 1.25;
    font-weight: 750;
}

section h2::after {
    content: "";

    display: block;

    width: 55px;
    height: 3px;

    background: var(--rt-red);

    margin-top: 12px;
}

section h3 {
    color: var(--rt-black);

    line-height: 1.35;
}


/* =========================================================
   COMMON INNER WIDTH
========================================================= */

section > .container,
section > .inner-container,
section > .content,
section > .section-inner {
    width: 100%;
    max-width: var(--rt-container);

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb {
    width: 100%;
    max-width: var(--rt-container);

    margin: 0 auto;

    padding: 14px 20px;

    font-size: 13px;

    color: var(--rt-muted);

    background: #fff;
}

.breadcrumb a:hover {
    color: var(--rt-red);
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    width: 100%;
    max-width: 100% !important;

    margin: 0 !important;

    padding: 180px 20px 70px;

    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.78) 48%,
            rgba(0, 0, 0, 0.25) 100%
        ),
        url("../images/toyota-fortuner-banner.jpg")
        center / cover no-repeat;
}


/* Keep desktop inner width */

.hero-section > * {
    width: 100%;
    max-width: var(--rt-container);

    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-section h1 {
    margin: 0 0 15px;

    color: #fff;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.08;

    font-weight: 800;
}

.hero-section h1::first-line {
    color: #fff;
}

.hero-section h2 {
    margin: 0 0 20px;

    color: var(--rt-red);

    font-size: 21px;

    line-height: 1.4;
}

.hero-section h2::after {
    display: none;
}

.hero-section p {
    margin: 0 0 15px;

    color: rgba(255,255,255,0.92);

    font-size: 16px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 28px;
}

.hero-buttons a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 24px;

    border-radius: var(--rt-radius-sm);

    font-weight: 700;
}

.hero-buttons a:first-child {
    color: #fff;

    background: var(--rt-red);
}

.hero-buttons a:first-child:hover {
    background: var(--rt-red-dark);

    transform: translateY(-2px);
}

.hero-buttons a:last-child {
    color: #fff;

    border: 1px solid rgba(255,255,255,0.7);
}

.hero-buttons a:last-child:hover {
    background: #fff;

    color: var(--rt-black);
}


/* =========================================================
   HERO BENEFITS
========================================================= */

.hero-benefits {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 35px;
}

.hero-benefits span {
    font-size: 13px;

    font-weight: 600;

    color: #fff;
}


/* =========================================================
   QUICK INFORMATION
========================================================= */

.quick-info {
    width: 100%;
    max-width: 100%;

    padding-top: 35px;
    padding-bottom: 35px;
}

.info-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 12px;

    width: 100%;
}

.info-card {
    min-width: 0;

    padding: 18px;

    background: #fff;

    border: 1px solid var(--rt-border);

    border-radius: var(--rt-radius);

    box-shadow: var(--rt-shadow);
}

.info-card span {
    display: block;

    margin-bottom: 4px;

    color: var(--rt-muted);

    font-size: 12px;
}

.info-card strong {
    display: block;

    color: var(--rt-black);

    font-size: 15px;

    word-wrap: break-word;
}


/* =========================================================
   BEST TYRES
========================================================= */

.best-tyres {
    width: 100%;
    max-width: 100%;

    padding-top: 55px;
}

.best-tyres > p {
    max-width: 900px;

    margin-bottom: 30px;

    color: var(--rt-muted);
}


/* =========================================================
   TYRE CARDS
========================================================= */

.tyre-card {
    position: relative;

    min-width: 0;

    margin-bottom: 18px;

    padding: 25px;

    background: #fff;

    border: 1px solid var(--rt-border);

    border-radius: var(--rt-radius);

    box-shadow: var(--rt-shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.tyre-card:hover {
    transform: translateY(-3px);

    box-shadow: var(--rt-shadow-hover);
}

.tyre-card h3 {
    margin: 0 0 10px;

    font-size: 21px;

    word-wrap: break-word;
}

.tyre-card p {
    margin: 0 0 14px;

    color: var(--rt-muted);
}

.tyre-card ul {
    margin: 0 0 18px;

    padding-left: 20px;
}

.tyre-card li {
    margin-bottom: 5px;
}

.tyre-card a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 18px;

    color: #fff;

    background: var(--rt-red);

    border-radius: var(--rt-radius-sm);

    font-size: 14px;

    font-weight: 700;
}

.tyre-card a:hover {
    background: var(--rt-red-dark);
}


/* =========================================================
   TABLES
========================================================= */

.table-responsive {
    width: 100%;
    max-width: 100%;

    overflow-x: auto;

    margin-top: 25px;

    -webkit-overflow-scrolling: touch;

    border: 1px solid var(--rt-border);

    border-radius: var(--rt-radius);
}

table {
    width: 100%;

    border-collapse: collapse;

    background: #fff;

    font-size: 14px;
}

thead th {
    color: #fff;

    background: var(--rt-black);

    font-weight: 700;

    text-align: left;
}

th,
td {
    padding: 14px 15px;

    border-bottom: 1px solid var(--rt-border);

    vertical-align: middle;
}

tbody tr:last-child td {
    border-bottom: 0;
}

tbody tr:hover {
    background: #fafafa;
}

tbody td:last-child {
    font-weight: 700;
}


/* =========================================================
   PRICE SECTION
========================================================= */

.price-section {
    width: 100%;
    max-width: 100%;

    background: var(--rt-light);
}

.price-section > p {
    max-width: 900px;

    color: var(--rt-muted);
}

.price-section .table-responsive {
    background: #fff;
}

.price-note {
    margin-top: 15px;

    font-size: 13px;

    color: var(--rt-muted);
}


/* =========================================================
   TYRE SIZE SECTION
========================================================= */

.tyre-size-section {
    width: 100%;
    max-width: 100%;

    padding-top: 65px;
}

.size-warning {
    margin-top: 20px;

    padding: 18px 20px;

    background: #fff8e8;

    border-left: 4px solid #e2a400;

    color: #5c4815;

    border-radius: 4px;

    font-size: 14px;
}


/* =========================================================
   WHY RESHAM
========================================================= */

.why-resham {
    width: 100%;
    max-width: 100%;

    padding-top: 65px;
}

.why-resham > p {
    max-width: 900px;

    color: var(--rt-muted);
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    width: 100%;

    margin-top: 30px;
}

.benefits-grid > div {
    min-width: 0;

    padding: 24px;

    background: #fff;

    border: 1px solid var(--rt-border);

    border-radius: var(--rt-radius);

    box-shadow: var(--rt-shadow);
}

.benefits-grid h3 {
    margin: 0 0 8px;

    font-size: 18px;

    word-wrap: break-word;
}

.benefits-grid p {
    margin: 0;

    color: var(--rt-muted);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   ALIGNMENT & BALANCING
========================================================= */

.alignment-balancing {
    width: 100%;
    max-width: 100%;

    padding: 55px 30px;

    background:
        linear-gradient(
            135deg,
            #111 0%,
            #252525 100%
        );

    border-radius: 14px;

    color: #fff;
}

.alignment-balancing h2,
.alignment-balancing h3 {
    color: #fff;
}

.alignment-balancing h2::after {
    background: var(--rt-red);
}

.alignment-balancing > p {
    max-width: 900px;

    color: rgba(255,255,255,0.75);
}

.service-columns {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    width: 100%;

    margin-top: 30px;
}

.service-columns > div {
    min-width: 0;

    padding: 25px;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: var(--rt-radius);
}

.service-columns h3 {
    margin-top: 0;

    color: var(--rt-red);
}

.service-columns p,
.service-columns li {
    color: rgba(255,255,255,0.75);
}

.service-columns ul {
    padding-left: 20px;
}

.alignment-balancing > a {
    display: inline-flex;

    align-items: center;

    margin-top: 25px;

    min-height: 46px;

    padding: 0 22px;

    color: #fff;

    background: var(--rt-red);

    border-radius: var(--rt-radius-sm);

    font-weight: 700;
}

.alignment-balancing > a:hover {
    background: var(--rt-red-dark);
}


/* =========================================================
   REPLACEMENT SECTION
========================================================= */

.replacement-section {
    width: 100%;
    max-width: 100%;

    padding-top: 65px;
}

.replacement-section > p {
    max-width: 850px;

    color: var(--rt-muted);
}

.replacement-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    width: 100%;

    margin-top: 30px;
}

.replacement-grid > div {
    min-width: 0;

    padding: 22px;

    border: 1px solid var(--rt-border);

    border-radius: var(--rt-radius);

    background: #fff;
}

.replacement-grid h3 {
    margin: 0 0 8px;

    font-size: 17px;
}

.replacement-grid p {
    margin: 0;

    color: var(--rt-muted);

    font-size: 14px;

    line-height: 1.6;
}

.replacement-section > a {
    display: inline-flex;

    margin-top: 25px;

    min-height: 45px;

    align-items: center;

    padding: 0 20px;

    background: var(--rt-red);

    color: #fff;

    border-radius: var(--rt-radius-sm);

    font-weight: 700;
}


/* =========================================================
   COMPLETE SERVICES
========================================================= */

.complete-services {
    width: 100%;
    max-width: 100%;

    padding: 45px 25px;

    background: var(--rt-light);

    border-radius: 14px;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    width: 100%;

    margin-top: 25px;
}

.services-grid > div {
    min-width: 0;

    padding: 18px;

    text-align: center;

    background: #fff;

    border: 1px solid var(--rt-border);

    border-radius: var(--rt-radius);

    font-size: 14px;

    font-weight: 700;

    color: var(--rt-black);
}

.services-grid > div:hover {
    border-color: var(--rt-red);

    color: var(--rt-red);

    transform: translateY(-2px);
}


/* =========================================================
   GENERAL CONTENT
========================================================= */

section:not(.hero-section) ul {
    margin-bottom: 20px;
}

section:not(.hero-section) li {
    margin-bottom: 6px;
}

section h3 {
    font-size: 20px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    width: 100%;
    max-width: 100%;

    padding-top: 65px;
}

.faq {
    margin-bottom: 10px;

    border: 1px solid var(--rt-border);

    border-radius: var(--rt-radius);

    overflow: clip;

    background: #fff;
}

.faq h3 {
    position: relative;

    margin: 0;

    padding: 18px 50px 18px 20px;

    cursor: pointer;

    font-size: 16px;

    font-weight: 700;

    color: var(--rt-black);
}

.faq h3::after {
    content: "+";

    position: absolute;

    right: 20px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--rt-red);

    font-size: 22px;

    font-weight: 400;
}

.faq p {
    margin: 0;

    padding: 0 20px 20px;

    color: var(--rt-muted);

    font-size: 14px;
}


/* =========================================================
   LOCAL CTA
========================================================= */

.local-cta {
    width: 100%;
    max-width: 100%;

    padding: 45px 35px;

    background:
        linear-gradient(
            135deg,
            #111 0%,
            #242424 100%
        );

    border-radius: 14px;

    color: #fff;
}

.local-cta h2 {
    color: #fff;
}

.local-cta p {
    max-width: 800px;

    color: rgba(255,255,255,0.78);
}

.local-cta a {
    display: inline-flex;

    align-items: center;

    min-height: 46px;

    margin-right: 10px;
    margin-top: 10px;

    padding: 0 22px;

    border-radius: var(--rt-radius-sm);

    background: var(--rt-red);

    color: #fff;

    font-weight: 700;
}

.local-cta a:last-child {
    background: transparent;

    border: 1px solid rgba(255,255,255,0.5);
}

.local-cta a:hover {
    background: var(--rt-red-dark);
}


/* =========================================================
   RELATED PAGES
========================================================= */

.related-pages {
    width: 100%;
    max-width: 100%;

    padding-top: 55px;
}

.related-pages ul {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    width: 100%;

    padding: 0;

    margin: 25px 0 0;

    list-style: none;
}

.related-pages li {
    min-width: 0;
}

.related-pages li a {
    display: block;

    padding: 15px 18px;

    border: 1px solid var(--rt-border);

    border-radius: var(--rt-radius);

    background: #fff;

    font-weight: 600;

    font-size: 14px;

    word-wrap: break-word;
}

.related-pages li a:hover {
    color: var(--rt-red);

    border-color: var(--rt-red);

    transform: translateY(-2px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    width: 100%;
    max-width: 100%;

    margin-top: 50px !important;
    margin-bottom: 65px;

    padding: 55px 25px;

    text-align: center;

    background: var(--rt-red);

    border-radius: 14px;

    color: #fff;
}

.final-cta h2 {
    color: #fff;

    margin-bottom: 10px;
}

.final-cta h2::after {
    display: none;
}

.final-cta p {
    max-width: 700px;

    margin: 0 auto 25px;

    color: rgba(255,255,255,0.9);
}

.final-cta a {
    display: inline-flex;

    min-height: 46px;

    align-items: center;

    padding: 0 22px;

    margin: 5px;

    border-radius: var(--rt-radius-sm);

    background: #fff;

    color: var(--rt-red);

    font-weight: 700;
}

.final-cta a:hover {
    background: var(--rt-black);

    color: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    section {
        padding: 50px 18px;
    }

    .info-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .replacement-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .related-pages ul {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero-section {
        padding: 100px 20px 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------
       GLOBAL MOBILE WIDTH FIX
    ----------------------------------------- */

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        overflow-x: clip !important;
    }


    /* -----------------------------------------
       ALL SECTIONS
    ----------------------------------------- */

    section,
    .hero-section,
    .quick-info,
    .best-tyres,
    .price-section,
    .tyre-size-section,
    .why-resham,
    .alignment-balancing,
    .replacement-section,
    .complete-services,
    .faq-section,
    .related-pages,
    .local-cta,
    .final-cta {
        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    /* -----------------------------------------
       SECTION PADDING
    ----------------------------------------- */

    section {
        padding: 42px 15px;
    }


    section h2 {
        font-size: 26px;

        line-height: 1.3;
    }


    /* -----------------------------------------
       HERO
    ----------------------------------------- */

    .hero-section {

        width: 100% !important;

        max-width: 100% !important;

        min-height: auto;

        padding: 55px 18px 45px;

        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.88),
                rgba(0,0,0,0.90)
            ),
            url("../images/toyota-fortuner-banner.jpg")
            center / cover no-repeat;
    }


    .hero-section > * {
        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    .hero-content {
        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }


    .hero-section h1 {
        font-size: 38px;

        line-height: 1.1;

        word-wrap: break-word;
    }


    .hero-section h2 {
        font-size: 18px;

        line-height: 1.4;
    }


    .hero-section p {
        font-size: 14px;

        line-height: 1.6;
    }


    /* -----------------------------------------
       HERO BUTTONS
    ----------------------------------------- */

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        gap: 8px;
    }


    .hero-buttons a {
        width: 100%;

        min-height: 46px;
    }


    /* -----------------------------------------
       HERO BENEFITS
    ----------------------------------------- */

    .hero-benefits {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;

        width: 100%;

        margin-top: 25px;
    }


    .hero-benefits span {
        min-width: 0;

        font-size: 12px;

        line-height: 1.4;
    }


    /* -----------------------------------------
       QUICK INFO
    ----------------------------------------- */

    .quick-info {
        padding-top: 35px;
        padding-bottom: 35px;
    }


    .info-grid {
        width: 100%;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }


    .info-card {
        width: 100%;

        min-width: 0;

        padding: 14px;
    }


    .info-card strong {
        font-size: 13px;

        line-height: 1.4;

        word-break: break-word;
    }


    /* -----------------------------------------
       BEST TYRES
    ----------------------------------------- */

    .best-tyres {
        padding-top: 42px;
    }


    /* -----------------------------------------
       TYRE CARDS
    ----------------------------------------- */

    .tyre-card {
        width: 100%;

        margin-top: 20px;
        max-width: 100%;

        min-width: 0;

        margin-bottom: 0;

        padding: 20px;
    }


    .tyre-card h3 {
        font-size: 19px;

        line-height: 1.35;
    }


    .tyre-card p {
        font-size: 14px;

        line-height: 1.6;
    }


    .tyre-card ul {
        padding-left: 18px;
    }


    .tyre-card a {
        max-width: 100%;

        word-break: break-word;
    }


    /* -----------------------------------------
       TABLES
    ----------------------------------------- */

    .table-responsive {
        width: 100% !important;

        max-width: 100% !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        overflow-x: auto !important;

        -webkit-overflow-scrolling: touch;
    }


    table {
        width: 100%;

        min-width: 700px;

        font-size: 13px;
    }


    th,
    td {
        padding: 11px 12px;
    }


    /* -----------------------------------------
       WHY RESHAM
    ----------------------------------------- */

    .benefits-grid {
        width: 100%;

        grid-template-columns:
            1fr;

        gap: 10px;
    }


    .benefits-grid > div {
        width: 100%;

        min-width: 0;

        padding: 20px;
    }


    /* -----------------------------------------
       ALIGNMENT & BALANCING
    ----------------------------------------- */

    .alignment-balancing {
        padding: 35px 20px;

        border-radius: 10px;
    }


    .service-columns {
        width: 100%;

        grid-template-columns:
            1fr;

        gap: 12px;
    }


    .service-columns > div {
        width: 100%;

        min-width: 0;

        padding: 20px;
    }


    /* -----------------------------------------
       REPLACEMENT
    ----------------------------------------- */

    .replacement-grid {
        width: 100%;

        grid-template-columns:
            1fr;

        gap: 10px;
    }


    .replacement-grid > div {
        width: 100%;

        min-width: 0;

        padding: 20px;
    }


    /* -----------------------------------------
       COMPLETE SERVICES
    ----------------------------------------- */

    .complete-services {
        padding: 35px 15px;

        border-radius: 10px;
    }


    .services-grid {
        width: 100%;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }


    .services-grid > div {
        min-width: 0;

        padding: 15px 10px;

        font-size: 13px;

        word-wrap: break-word;
    }


    /* -----------------------------------------
       FAQ
    ----------------------------------------- */

    .faq-section {
        padding-top: 42px;
    }


    .faq h3 {
        padding: 16px 45px 16px 15px;

        font-size: 15px;
    }


    .faq p {
        padding: 0 15px 18px;

        font-size: 13px;
    }


    /* -----------------------------------------
       LOCAL CTA
    ----------------------------------------- */

    .local-cta {
        padding: 35px 20px;

        border-radius: 10px;
    }


    .local-cta a {
        width: 100%;

        margin-right: 0;

        justify-content: center;
    }


    /* -----------------------------------------
       RELATED PAGES
    ----------------------------------------- */

    .related-pages {
        padding-top: 42px;
    }


    .related-pages ul {
        width: 100%;

        grid-template-columns:
            1fr;

        gap: 8px;
    }


    .related-pages li {
        width: 100%;

        min-width: 0;
    }


    .related-pages li a {
        width: 100%;

        padding: 14px 15px;
    }


    /* -----------------------------------------
       FINAL CTA
    ----------------------------------------- */

    .final-cta {
        margin-top: 25px;

        margin-bottom: 40px;

        padding: 40px 18px;

        border-radius: 10px;
    }


    .final-cta a {
        width: 100%;

        justify-content: center;

        margin: 5px 0;
    }


    /* -----------------------------------------
       BREADCRUMB
    ----------------------------------------- */

    .breadcrumb {
        width: 100% !important;

        max-width: 100% !important;

        margin: 0 !important;

        padding: 10px 15px;

        font-size: 12px;

        white-space: nowrap;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    section {
        padding: 35px 12px;
    }


    section h2 {
        font-size: 24px;
    }


    .hero-section {
        padding: 45px 15px 40px;
    }


    .hero-section h1 {
        font-size: 32px;
    }


    .hero-section h2 {
        font-size: 17px;
    }


    .hero-section p {
        font-size: 13px;
    }


    .hero-benefits {
        grid-template-columns:
            1fr;
    }


    .info-grid {
        grid-template-columns:
            1fr;
    }


    .services-grid {
        grid-template-columns:
            1fr;
    }


    .tyre-card {
        padding: 18px;
    }


    .alignment-balancing {
        padding: 30px 15px;
    }


    .local-cta {
        padding: 30px 15px;
    }


    .final-cta {
        padding: 35px 15px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(229, 35, 35, 0.35);

    outline-offset: 3px;
}


/* =========================================================
   PRINT
========================================================= */

@media print {

    .hero-buttons,
    .final-cta,
    .local-cta {
        display: none;
    }

    body {
        color: #000;
    }

    section {
        padding: 25px 0;
    }

}


@media(min-width: 1080px){
    section{
        max-width: 1200px !important;
        margin: auto !important;
    }
}


.breadcrumb {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: inherit !important;
    padding:  0px !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.breadcrumb a {
    color: #c7c7c7;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #e52323;
}

.breadcrumb-separator {
    color: #999;
}

.breadcrumb-current {
    color: #e52323;
    font-weight: 600;
}


/* Mobile */

@media (max-width: 767px) {

    .breadcrumb {
        padding: 10px 15px;

        flex-wrap: nowrap;

        overflow-x: auto;
        white-space: nowrap;

        font-size: 12px;

        -webkit-overflow-scrolling: touch;
    }

    .breadcrumb > * {
        flex-shrink: 0;
    }

}