/* =========================================================
   AUTO PARTS & CAR ACCESSORIES STORE
   MAIN STYLE.CSS
   HEADER ONLY
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    width: 100%;
    min-height: 100vh;

    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    overflow-x: hidden;

    background: #ffffff;
}


/* =========================================================
   HEADER
========================================================= */

.auto-header {
    position: sticky;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: #ffffff;

    border-bottom: 1px solid #e4e7eb;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.auto-header-container {
    width: 100%;

    max-width: 1320px;

    min-height: 82px;

    margin: 0 auto;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.auto-logo {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

    text-decoration: none;
}


/* Logo Icon */

.auto-logo-icon {
    width: 47px;
    height: 47px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #172B4D;

    color: #ffffff;

    border-radius: 10px;

    font-size: 21px;

    flex-shrink: 0;

    transition: all 0.3s ease;
}


/* Logo Text */

.auto-logo-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    line-height: 1.1;
}


.auto-logo-content strong {
    color: #172B4D;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: -0.4px;
}


.auto-logo-content small {
    margin-top: 5px;

    color: #727982;

    font-size: 9px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.auto-nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 29px;

    margin-left: auto;
}


.auto-nav-link {
    position: relative;

    min-height: 82px;

    display: inline-flex;

    align-items: center;

    color: #29313A;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color 0.3s ease;
}


/* Active Line */
/* =========================================
   NAVIGATION LINK
========================================= */

.auto-nav-link {
    position: relative;

    min-height: 82px;

    display: inline-flex;
    align-items: center;

    color: #29313A;
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition: color 0.3s ease;
}


/* =========================================
   DOUBLE LINE
========================================= */

.auto-nav-link::before,
.auto-nav-link::after {
    content: "";

    position: absolute;

    left: 0;

    width: 0;

    height: 2px;

    background: #F28C28;

    border-radius: 5px;

    transition: width 0.3s ease;
}


/* TOP LINE */

.auto-nav-link::before {
    bottom: 22px;
}


/* BOTTOM LINE */

.auto-nav-link::after {
    bottom: 16px;
}


/* =========================================
   HOVER
========================================= */

.auto-nav-link:hover {
    color: #F28C28;
}

.auto-nav-link:hover::before,
.auto-nav-link:hover::after {
    width: 100%;
}


/* =========================================
   ACTIVE
========================================= */

.auto-nav-link.active {
    color: #F28C28;
}

.auto-nav-link.active::before,
.auto-nav-link.active::after {
    width: 100%;
}

/* =========================================================
   HEADER ACTIONS
========================================================= */

.auto-header-actions {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


/* =========================================================
   LOGIN BUTTON
========================================================= */

.auto-login-btn {
    min-height: 41px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 7px;

    background: #F28C28;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.auto-login-btn:hover {
    background: #D97718;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 7px 16px rgba(242, 140, 40, 0.22);
}


/* =========================================================
   THEME BUTTON
========================================================= */

.auto-theme-btn {
    width: 41px;
    height: 41px;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d9dde2;

    border-radius: 50%;

    background: #ffffff;

    color: #172B4D;

    cursor: pointer;

    font-size: 14px;

    transition:
        all 0.3s ease;
}


.auto-theme-btn:hover {
    background: #172B4D;

    border-color: #172B4D;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.auto-menu-btn {
    display: none;

    width: 41px;
    height: 41px;

    padding: 0;

    border: 1px solid #d9dde2;

    border-radius: 8px;

    background: #ffffff;

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;
}


.auto-menu-btn span {
    display: block;

    width: 21px;

    height: 2px;

    border-radius: 5px;

    background: #172B4D;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================================
   MOBILE MENU OPEN ANIMATION
========================================================= */

.auto-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.auto-menu-btn.active span:nth-child(2) {
    opacity: 0;
}


.auto-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1150px) {

    .auto-header-container {
        padding: 0 20px;

        gap: 18px;
    }


    .auto-nav {
        gap: 19px;
    }


    .auto-nav-link {
        font-size: 13px;
    }


    .auto-login-btn {
        padding: 0 15px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .auto-header-container {
        min-height: 74px;
    }


    .auto-nav {
        position: absolute;

        top: 74px;

        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        margin: 0;

        padding: 10px 20px 18px;

        background: #ffffff;

        border-top: 1px solid #e5e7ea;

        border-bottom: 1px solid #e5e7ea;

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.09);
    }


    .auto-nav.active {
        display: flex;
    }


    .auto-nav-link {
        width: 100%;

        min-height: 49px;

        padding: 0 10px;

        border-bottom: 1px solid #eceef0;

        justify-content: flex-start;
    }


    .auto-nav-link:last-child {
        border-bottom: none;
    }


    .auto-nav-link::after {
        display: none;
    }


    .auto-nav-link:hover,
    .auto-nav-link.active {
        color: #F28C28;
    }


    .auto-menu-btn {
        display: flex;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .auto-header-container {
        min-height: 68px;

        padding: 0 15px;

        gap: 8px;
    }


    .auto-logo {
        gap: 8px;
    }


    .auto-logo-icon {
        width: 40px;
        height: 40px;

        font-size: 18px;

        border-radius: 9px;
    }


    .auto-logo-content strong {
        font-size: 17px;
    }


    .auto-logo-content small {
        margin-top: 4px;

        font-size: 7px;

        letter-spacing: 0.7px;
    }


    .auto-header-actions {
        gap: 5px;
    }


    .auto-theme-btn,
    .auto-menu-btn {
        width: 37px;
        height: 37px;
    }


    .auto-login-btn {
        width: 37px;
        height: 37px;

        padding: 0;

        border-radius: 50%;
    }


    .auto-login-btn span {
        display: none;
    }


    .auto-nav {
        top: 68px;

        padding-left: 15px;

        padding-right: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .auto-header-container {
        padding: 0 10px;
    }


    .auto-logo {
        gap: 7px;
    }


    .auto-logo-icon {
        width: 36px;
        height: 36px;

        font-size: 16px;
    }


    .auto-logo-content strong {
        font-size: 15px;
    }


    .auto-logo-content small {
        display: none;
    }


    .auto-theme-btn,
    .auto-menu-btn {
        width: 34px;
        height: 34px;
    }


    .auto-login-btn {
        width: 34px;
        height: 34px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 350px) {

    .auto-header-container {
        padding: 0 7px;
    }


    .auto-header-actions {
        gap: 3px;
    }


    .auto-logo-icon {
        width: 34px;
        height: 34px;
    }


    .auto-theme-btn,
    .auto-menu-btn,
    .auto-login-btn {
        width: 32px;
        height: 32px;
    }

}

/* =========================================================
   RTL ICON BUTTON
========================================================= */

.auto-rtl-btn {
    width: 41px;
    height: 41px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d9dde2;
    border-radius: 50%;

    background: #ffffff;
    color: #172B4D;

    cursor: pointer;
    font-size: 14px;

    transition: all 0.3s ease;
}

.auto-rtl-btn:hover {
    background: #172B4D;
    border-color: #172B4D;
    color: #ffffff;
    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 650px) {

    .auto-rtl-btn {
        width: 37px;
        height: 37px;
        font-size: 13px;
    }

}


/* SMALL MOBILE */

@media (max-width: 420px) {

    .auto-rtl-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

}


/* EXTRA SMALL */

@media (max-width: 350px) {

    .auto-rtl-btn {
        width: 32px;
        height: 32px;
    }

}

/* =========================================================
   HOME DROPDOWN
========================================================= */

.home-dropdown {
    position: relative;

    display: flex;
    align-items: center;
}


/* HOME BUTTON */

.home-main-link {
    position: relative;

    min-height: 82px;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 0;

    border: none;

    background: transparent;

    color: #29313A;

    cursor: pointer;

    font-family: inherit;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition: color 0.3s ease;
}


/* HOME DOUBLE LINE */

.home-main-link::before,
.home-main-link::after {
    content: "";

    position: absolute;

    left: 0;

    width: 0;
    height: 2px;

    background: #F28C28;

    border-radius: 5px;

    transition: width 0.3s ease;
}


.home-main-link::before {
    bottom: 22px;
}


.home-main-link::after {
    bottom: 16px;
}


/* HOME HOVER */

.home-main-link:hover {
    color: #F28C28;
}


.home-main-link:hover::before,
.home-main-link:hover::after {
    width: 100%;
}


/* ACTIVE HOME */

.home-main-link.active {
    color: #F28C28;
}


.home-main-link.active::before,
.home-main-link.active::after {
    width: 100%;
}


/* =========================================================
   DOWN ARROW
========================================================= */

.home-main-link i {
    font-size: 10px;

    transition: transform 0.3s ease;
}


/* ARROW ROTATE WHEN OPEN */

.home-dropdown.open .home-main-link i {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.home-dropdown-menu {
    position: absolute;

    top: 72px;
    left: 50%;

    min-width: 175px;

    padding: 8px;

    background: #FFFFFF;

    border: 1px solid #E4E7EB;

    border-radius: 9px;

    box-shadow:
        0 15px 35px rgba(23, 43, 77, 0.14);

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, 10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 999;
}


/* OPEN DROPDOWN */

.home-dropdown.open .home-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}


/* =========================================================
   DROPDOWN ITEM
========================================================= */

.home-dropdown-item {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 42px;

    padding: 0 14px;

    box-sizing: border-box;

    color: #29313A;

    background: transparent;

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.home-dropdown-item:hover {
    background: #FFF0DF;

    color: #F28C28;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode .home-main-link {
    color: #E5EAF0;
}


body.dark-mode .home-main-link:hover,
body.dark-mode .home-main-link.active {
    color: #F28C28;
}


body.dark-mode .home-dropdown-menu {
    background: #111D2D;

    border-color: #26364A;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.30);
}


body.dark-mode .home-dropdown-item {
    color: #E5EAF0;
}


body.dark-mode .home-dropdown-item:hover {
    background: #1A293B;

    color: #F28C28;
}

/* =========================================================
   FOOTER
   SAME THEME AS HEADER
========================================================= */

.auto-footer {
    width: 100%;

    background: #ffffff;

    color: #29313A;

    border-top: 1px solid #e4e7eb;

    padding-top: 75px;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.auto-footer-container {
    width: 100%;
    max-width: 1320px;

    margin: 0 auto;

    padding: 0 25px 65px;

    display: grid;

    grid-template-columns:
        1.4fr
        0.8fr
        0.9fr
        1fr;

    gap: 55px;
}


/* =========================================================
   BRAND
========================================================= */

.auto-footer-brand {
    max-width: 340px;
}


/* LOGO */

.auto-footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    text-decoration: none;

    color: #172B4D;
}


/* LOGO ICON */

.auto-footer-logo-icon {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #172B4D;

    color: #ffffff;

    border-radius: 10px;

    font-size: 21px;
}


/* LOGO CONTENT */

.auto-footer-logo-content {
    display: flex;

    flex-direction: column;
}


/* LOGO TITLE */

.auto-footer-logo-content strong {
    color: #172B4D;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.1;
}


/* LOGO SUBTITLE */

.auto-footer-logo-content small {
    margin-top: 5px;

    color: #727982;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* DESCRIPTION */

.auto-footer-brand > p {
    margin: 22px 0 0;

    color: #727982;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SOCIAL
========================================================= */

.auto-footer-social {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 24px;
}


.auto-footer-social a {
    width: 37px;
    height: 37px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f1f3f5;

    color: #172B4D;

    border: 1px solid #d9dde2;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;

    transition: all 0.3s ease;
}


.auto-footer-social a:hover {
    background: #172B4D;

    border-color: #172B4D;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   COLUMNS
========================================================= */

.auto-footer-column h3 {
    margin: 0 0 25px;

    color: #172B4D;

    font-size: 16px;

    font-weight: 700;
}


/* HEADING DOUBLE LINE */

.auto-footer-column h3::after {
    content: "";

    display: block;

    width: 32px;
    height: 3px;

    margin-top: 9px;

    background: #F28C28;

    border-radius: 5px;
}


/* LIST */

.auto-footer-column ul {
    padding: 0;
    margin: 0;

    list-style: none;
}


.auto-footer-column li {
    margin-bottom: 13px;
}


.auto-footer-column li a {
    color: #727982;

    text-decoration: none;

    font-size: 13px;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.auto-footer-column li a:hover {
    color: #F28C28;

    padding-left: 5px;
}


/* =========================================================
   CONTACT
========================================================= */

.auto-footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;
}


.auto-footer-contact-item > span {
    width: 33px;
    height: 33px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #f1f3f5;

    color: #172B4D;

    border: 1px solid #d9dde2;

    border-radius: 6px;

    font-size: 12px;
}


.auto-footer-contact-item p {
    margin: 0;

    color: #727982;

    font-size: 13px;

    line-height: 1.7;
}


.auto-footer-contact-item a {
    color: #727982;

    text-decoration: none;

    font-size: 13px;

    line-height: 33px;

    transition: color 0.3s ease;
}


.auto-footer-contact-item a:hover {
    color: #F28C28;
}


/* =========================================================
   BOTTOM
========================================================= */

.auto-footer-bottom {
    width: 100%;

    border-top: 1px solid #e4e7eb;
}


.auto-footer-bottom-inner {
    width: 100%;
    max-width: 1320px;

    min-height: 65px;

    margin: 0 auto;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.auto-footer-bottom-inner p {
    margin: 0;

    color: #727982;

    font-size: 12px;
}


.auto-footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 22px;
}


.auto-footer-bottom-links a {
    color: #727982;

    text-decoration: none;

    font-size: 12px;

    transition: color 0.3s ease;
}


.auto-footer-bottom-links a:hover {
    color: #F28C28;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .auto-footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px 50px;
    }

    .auto-footer-brand {
        max-width: 100%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .auto-footer {
        padding-top: 55px;
    }

    .auto-footer-container {
        grid-template-columns: 1fr;

        gap: 38px;

        padding: 0 20px 45px;
    }

    .auto-footer-brand {
        max-width: 100%;
    }

    .auto-footer-bottom-inner {
        min-height: auto;

        padding: 20px;

        flex-direction: column;

        text-align: center;

        gap: 12px;
    }

    .auto-footer-bottom-links {
        justify-content: center;

        flex-wrap: wrap;

        gap: 12px 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .auto-footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .auto-footer-logo-content strong {
        font-size: 19px;
    }

}

/* =========================================================
   PREMIUM HOME HERO
========================================================= */

.auto-hero {
    position: relative;

    width: 100%;

    min-height: 700px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.auto-hero::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -150px;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background: rgba(23, 43, 77, 0.045);

    pointer-events: none;
}


.auto-hero::after {
    content: "";

    position: absolute;

    bottom: -250px;
    left: -180px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(242, 140, 40, 0.15);

    pointer-events: none;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.auto-hero-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1320px;

    min-height: 610px;

    margin: 0 auto;

    padding: 75px 25px 55px;

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 45px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.auto-hero-content {
    position: relative;

    z-index: 5;

    max-width: 610px;
}


/* BADGE */

.auto-hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    background: rgba(242, 140, 40, 0.09);

    border: 1px solid rgba(242, 140, 40, 0.25);

    border-radius: 30px;

    color: #F28C28;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.3px;
}


.auto-hero-badge i {
    font-size: 11px;
}


/* HEADING */

.auto-hero-content h1 {
    margin: 23px 0 0;

    color: #172B4D;

    font-size: clamp(44px, 5vw, 70px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2.5px;
}


.auto-hero-content h1 span {
    display: block;

    color: #F28C28;
}


/* DESCRIPTION */

.auto-hero-content > p {
    max-width: 550px;

    margin: 24px 0 0;

    color: #727982;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.auto-hero-buttons {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 32px;

    flex-wrap: wrap;
}


/* PRIMARY */

.auto-hero-primary-btn {
    min-height: 50px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    background: #F28C28;

    color: #ffffff;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(242, 140, 40, 0.20);

    transition: all 0.3s ease;
}


.auto-hero-primary-btn:hover {
    background: #D97718;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 14px 30px rgba(242, 140, 40, 0.28);
}


.auto-hero-primary-btn i {
    font-size: 11px;

    transition: transform 0.3s ease;
}


.auto-hero-primary-btn:hover i {
    transform: translateX(4px);
}


/* SECONDARY */

.auto-hero-secondary-btn {
    min-height: 50px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    background: #ffffff;

    color: #172B4D;

    border: 1px solid #d9dde2;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.auto-hero-secondary-btn:hover {
    border-color: #172B4D;

    background: #172B4D;

    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   TRUST POINTS
========================================================= */

.auto-hero-trust {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 32px;
}


.auto-hero-trust-item {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #727982;

    font-size: 11px;

    font-weight: 600;
}


.auto-hero-trust-item i {
    color: #F28C28;

    font-size: 13px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.auto-hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* GLOW */

.auto-hero-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(23, 43, 77, 0.13) 0%,
            rgba(23, 43, 77, 0.04) 45%,
            transparent 70%
        );
}


/* IMAGE WRAP */

.auto-hero-image-wrap {
    position: relative;

    z-index: 3;

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* CAR IMAGE */

.auto-hero-image {
    width: 100%;

    max-width: 650px;

    height: auto;

    display: block;

    object-fit: contain;

    filter:
        drop-shadow(
            0 25px 25px rgba(23, 43, 77, 0.18)
        );

    animation:
        autoCarFloat 5s ease-in-out infinite;
}


@keyframes autoCarFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.auto-hero-floating-card {
    position: absolute;

    z-index: 5;

    min-width: 170px;

    padding: 13px 15px;

    display: flex;

    align-items: center;

    gap: 11px;

    background: #ffffff;

    border: 1px solid #e5e7ea;

    border-radius: 10px;

    box-shadow:
        0 15px 35px rgba(23, 43, 77, 0.12);
}


.auto-card-one {
    top: 85px;

    left: 5px;

    animation:
        autoFloatOne 4s ease-in-out infinite;
}


.auto-card-two {
    right: 10px;

    bottom: 75px;

    animation:
        autoFloatTwo 4s ease-in-out infinite;
}


@keyframes autoFloatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


@keyframes autoFloatTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

}


/* FLOATING ICON */

.auto-floating-icon {
    width: 37px;
    height: 37px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #172B4D;

    color: #ffffff;

    border-radius: 8px;

    font-size: 13px;
}


.auto-floating-icon.orange {
    background: rgba(242, 140, 40, 0.12);

    color: #F28C28;
}


/* FLOATING TEXT */

.auto-floating-text {
    display: flex;

    flex-direction: column;
}


.auto-floating-text strong {
    color: #172B4D;

    font-size: 15px;

    font-weight: 800;
}


.auto-floating-text small {
    margin-top: 3px;

    color: #727982;

    font-size: 9px;

    white-space: nowrap;
}


/* ACCENT */

.auto-hero-accent-circle {
    position: absolute;

    right: 40px;
    top: 35px;

    width: 12px;
    height: 12px;

    background: #F28C28;

    border-radius: 50%;

    box-shadow:
        0 0 0 9px rgba(242, 140, 40, 0.10),
        0 0 0 18px rgba(242, 140, 40, 0.05);
}


/* =========================================================
   BOTTOM STATS
========================================================= */

.auto-hero-bottom {
    position: relative;

    z-index: 3;

    width: 100%;

    border-top: 1px solid #e4e7eb;
}


.auto-hero-bottom-inner {
    width: 100%;
    max-width: 1320px;

    min-height: 92px;

    margin: 0 auto;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.auto-hero-stat {
    display: flex;

    align-items: center;

    gap: 9px;
}


.auto-hero-stat strong {
    color: #172B4D;

    font-size: 22px;

    font-weight: 800;
}


.auto-hero-stat span {
    color: #727982;

    font-size: 11px;

    font-weight: 600;
}


.auto-hero-divider {
    width: 1px;

    height: 28px;

    background: #dfe3e7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .auto-hero-container {
        grid-template-columns: 1fr 1fr;

        gap: 20px;

        padding-top: 60px;
    }


    .auto-hero-content h1 {
        font-size: 52px;
    }


    .auto-hero-floating-card {
        transform: scale(0.9);
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .auto-hero-container {
        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 65px;

        padding-bottom: 35px;

        text-align: center;
    }


    .auto-hero-content {
        max-width: 700px;

        margin: 0 auto;
    }


    .auto-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    .auto-hero-buttons {
        justify-content: center;
    }


    .auto-hero-trust {
        justify-content: center;
    }


    .auto-hero-visual {
        min-height: 460px;
    }


    .auto-hero-image {
        max-width: 600px;
    }


    .auto-card-one {
        left: 8%;
    }


    .auto-card-two {
        right: 8%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .auto-hero {
        min-height: auto;
    }


    .auto-hero-container {
        padding: 50px 18px 25px;
    }


    .auto-hero-content h1 {
        margin-top: 20px;

        font-size: 42px;

        letter-spacing: -1.5px;
    }


    .auto-hero-content > p {
        margin-top: 19px;

        font-size: 14px;

        line-height: 1.7;
    }


    .auto-hero-buttons {
        flex-direction: column;

        width: 100%;

        gap: 10px;
    }


    .auto-hero-primary-btn,
    .auto-hero-secondary-btn {
        width: 100%;
    }


    .auto-hero-trust {
        gap: 12px 18px;

        margin-top: 25px;
    }


    .auto-hero-visual {
        min-height: 330px;

        margin-top: 10px;
    }


    .auto-hero-glow {
        width: 320px;
        height: 320px;
    }


    .auto-hero-image {
        max-width: 480px;
    }


    .auto-hero-floating-card {
        min-width: 145px;

        padding: 9px 10px;

        gap: 8px;
    }


    .auto-floating-icon {
        width: 31px;
        height: 31px;
    }


    .auto-floating-text strong {
        font-size: 12px;
    }


    .auto-floating-text small {
        font-size: 8px;
    }


    .auto-card-one {
        top: 35px;

        left: 0;
    }


    .auto-card-two {
        right: 0;

        bottom: 30px;
    }


    .auto-hero-accent-circle {
        right: 25px;

        top: 15px;
    }


    .auto-hero-bottom-inner {
        min-height: auto;

        padding: 22px 18px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }


    .auto-hero-divider {
        display: none;
    }


    .auto-hero-stat {
        justify-content: center;

        flex-direction: column;

        gap: 3px;

        text-align: center;
    }


    .auto-hero-stat strong {
        font-size: 19px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .auto-hero-container {
        padding-left: 14px;
        padding-right: 14px;
    }


    .auto-hero-content h1 {
        font-size: 36px;
    }


    .auto-hero-badge {
        font-size: 9px;

        padding: 7px 11px;
    }


    .auto-hero-visual {
        min-height: 280px;
    }


    .auto-hero-floating-card {
        min-width: 125px;

        padding: 7px;
    }


    .auto-floating-icon {
        width: 28px;
        height: 28px;

        font-size: 10px;
    }


    .auto-floating-text strong {
        font-size: 11px;
    }


    .auto-floating-text small {
        font-size: 7px;
    }


    .auto-card-one {
        left: -4px;
    }


    .auto-card-two {
        right: -4px;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 350px) {

    .auto-hero-content h1 {
        font-size: 32px;
    }


    .auto-hero-trust-item {
        font-size: 9px;
    }


    .auto-hero-visual {
        min-height: 245px;
    }


    .auto-hero-floating-card {
        display: none;
    }

}


/* =========================================================
   TOP SELLING PARTS
========================================================= */

.top-selling-section {
    width: 100%;

    padding: 100px 20px;

    background: #f8f9fb;
}


.top-selling-container {
    width: 100%;
    max-width: 1320px;

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.top-selling-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}


.top-selling-heading {
    max-width: 650px;
}


.top-selling-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #F28C28;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.top-selling-heading h2 {
    margin: 0;

    color: #172B4D;

    font-size: clamp(32px, 4vw, 46px);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1.2px;
}


.top-selling-heading h2 span {
    color: #F28C28;
}


.top-selling-heading p {
    max-width: 570px;

    margin: 16px 0 0;

    color: #727982;

    font-size: 14px;

    line-height: 1.8;
}


/* VIEW BUTTON */

.top-selling-view-btn {
    min-height: 44px;

    padding: 0 17px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    border: 1px solid #d9dde2;

    border-radius: 7px;

    background: #ffffff;

    color: #172B4D;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: all 0.3s ease;
}


.top-selling-view-btn:hover {
    background: #172B4D;

    border-color: #172B4D;

    color: #ffffff;

    transform: translateY(-2px);
}


.top-selling-view-btn i {
    font-size: 10px;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.top-selling-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.top-product-card {
    min-width: 0;

    background: #ffffff;

    border: 1px solid #e5e8ec;

    border-radius: 12px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.top-product-card:hover {
    transform: translateY(-7px);

    border-color: #d8dde3;

    box-shadow:
        0 18px 40px rgba(23, 43, 77, 0.10);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */
/* =========================================================
   PRODUCT IMAGE - SAME SIZE
========================================================= */

.top-product-image {
    position: relative;

    width: 100%;
    height: 245px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: #f3f5f7;

    overflow: hidden;
}


/* ALL PRODUCT IMAGES - EXACT SAME SIZE */

.top-product-image img {
    width: 300px;
    height: 170px;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


.top-product-card:hover
.top-product-image img {
    transform: scale(1.06);
}

/* BADGE */

.top-product-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    padding: 6px 9px;

    background: #172B4D;

    color: #ffffff;

    border-radius: 5px;

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


/* FAVORITE */

.top-product-favorite {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #dfe3e7;

    border-radius: 50%;

    background: #ffffff;

    color: #727982;

    cursor: pointer;

    font-size: 12px;

    transition: all 0.3s ease;
}


.top-product-favorite:hover {
    background: #F28C28;

    border-color: #F28C28;

    color: #ffffff;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.top-product-content {
    padding: 20px;
}


.top-product-category {
    color: #F28C28;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


.top-product-content h3 {
    min-height: 44px;

    margin: 8px 0 10px;

    color: #172B4D;

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;
}


/* RATING */

.top-product-rating {
    display: flex;

    align-items: center;

    gap: 7px;
}


.top-product-rating span {
    color: #F28C28;

    font-size: 10px;
}


.top-product-rating small {
    color: #9299a1;

    font-size: 10px;
}


/* PRODUCT BOTTOM */

.top-product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;

    padding-top: 15px;

    border-top: 1px solid #eceef1;
}


.top-product-bottom strong {
    color: #172B4D;

    font-size: 18px;

    font-weight: 800;
}


.top-product-bottom a {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #172B4D;

    color: #ffffff;

    border-radius: 6px;

    text-decoration: none;

    font-size: 10px;

    transition: all 0.3s ease;
}


.top-product-bottom a:hover {
    background: #F28C28;

    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .top-selling-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .top-selling-section {
        padding: 70px 18px;
    }


    .top-selling-header {
        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 30px;
    }


    .top-selling-heading h2 {
        font-size: 34px;
    }


    .top-selling-heading p {
        font-size: 13px;
    }


    .top-selling-view-btn {
        width: 100%;
    }


    .top-selling-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .top-product-image {
        height: 230px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .top-selling-section {
        padding-left: 14px;
        padding-right: 14px;
    }


    .top-selling-heading h2 {
        font-size: 30px;
    }


    .top-product-content {
        padding: 17px;
    }

}


/* =========================================================
   VEHICLE CATEGORIES
========================================================= */

.vehicle-categories-section {
    width: 100%;
    padding: 100px 20px;
    background: #ffffff;
}

.vehicle-categories-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.vehicle-categories-header {
    margin-bottom: 45px;
}

.vehicle-categories-title {
    max-width: 650px;
}

.vehicle-categories-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.vehicle-categories-title h2 {
    margin: 0;

    color: #172B4D;

    font-size: clamp(32px, 4vw, 46px);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1.2px;
}

.vehicle-categories-title h2 span {
    color: #F28C28;
}

.vehicle-categories-title p {
    max-width: 570px;

    margin: 16px 0 0;

    color: #727982;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.vehicle-categories-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* =========================================================
   CATEGORY CARD
========================================================= */

.vehicle-category-card {
    position: relative;

    min-width: 0;
    min-height: 230px;

    display: flex;

    align-items: center;

    gap: 24px;

    padding: 30px;

    background: #f8f9fb;

    border: 1px solid #e5e8ec;

    border-radius: 12px;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* TOP ORANGE LINE */

.vehicle-category-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #F28C28;

    transition: width 0.35s ease;
}

.vehicle-category-card:hover::before {
    width: 100%;
}


/* HOVER */

.vehicle-category-card:hover {
    background: #ffffff;

    border-color: #d9dde2;

    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(23, 43, 77, 0.09);
}


/* =========================================================
   NUMBER
========================================================= */

.vehicle-category-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #dfe3e8;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   ICON
========================================================= */

.vehicle-category-icon {
    width: 75px;
    height: 75px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #172B4D;

    color: #ffffff;

    font-size: 27px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.vehicle-category-card:hover
.vehicle-category-icon {
    background: #F28C28;

    transform: rotate(-4deg);
}


/* =========================================================
   CONTENT
========================================================= */

.vehicle-category-content {
    min-width: 0;

    padding-right: 30px;
}

.vehicle-category-content > span {
    display: block;

    margin-bottom: 7px;

    color: #F28C28;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.vehicle-category-content h3 {
    margin: 0 0 9px;

    color: #172B4D;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.3;
}

.vehicle-category-content p {
    max-width: 390px;

    margin: 0;

    color: #727982;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   EXPLORE LINK
========================================================= */

.vehicle-category-content strong {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 16px;

    color: #172B4D;

    font-size: 11px;

    font-weight: 800;

    transition: color 0.3s ease;
}

.vehicle-category-content strong i {
    font-size: 9px;

    transition: transform 0.3s ease;
}

.vehicle-category-card:hover
.vehicle-category-content strong {
    color: #F28C28;
}

.vehicle-category-card:hover
.vehicle-category-content strong i {
    transform: translateX(4px);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 900px) {

    .vehicle-categories-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 650px) {

    .vehicle-categories-section {
        padding: 70px 18px;
    }

    .vehicle-categories-header {
        margin-bottom: 30px;
    }

    .vehicle-categories-title h2 {
        font-size: 34px;
    }

    .vehicle-categories-title p {
        font-size: 13px;
    }

    .vehicle-category-card {
        min-height: 210px;

        padding: 25px;

        gap: 20px;
    }

    .vehicle-category-icon {
        width: 65px;
        height: 65px;

        font-size: 23px;
    }

    .vehicle-category-content h3 {
        font-size: 19px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 500px) {

    .vehicle-category-card {
        min-height: auto;

        align-items: flex-start;

        padding: 24px 20px;

        gap: 16px;
    }

    .vehicle-category-icon {
        width: 55px;
        height: 55px;

        font-size: 20px;
    }

    .vehicle-category-content {
        padding-right: 20px;
    }

    .vehicle-category-content h3 {
        font-size: 17px;
    }

    .vehicle-category-content p {
        font-size: 11px;
    }

    .vehicle-category-number {
        top: 15px;
        right: 15px;

        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .vehicle-categories-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .vehicle-category-card {
        padding: 22px 17px;
    }

    .vehicle-category-icon {
        width: 50px;
        height: 50px;

        font-size: 18px;
    }

    .vehicle-category-content h3 {
        font-size: 16px;
    }

    .vehicle-category-content p {
        font-size: 10px;
    }

}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-choose-section {
    width: 100%;
    padding: 100px 20px;
    background: #f8f9fb;
}

.why-choose-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    gap: 80px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.why-choose-content {
    min-width: 0;
}

.why-choose-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.why-choose-content h2 {
    margin: 0;

    color: #172B4D;

    font-size: clamp(32px, 4vw, 46px);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1.2px;
}

.why-choose-content h2 span {
    color: #F28C28;
}

.why-choose-intro {
    max-width: 590px;

    margin: 17px 0 35px;

    color: #727982;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   FEATURES
========================================================= */

.why-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 26px 30px;
}


/* FEATURE */

.why-feature {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    min-width: 0;
}


/* ICON */

.why-feature-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #172B4D;

    color: #ffffff;

    border-radius: 8px;

    font-size: 16px;

    transition: all 0.3s ease;
}

.why-feature:hover .why-feature-icon {
    background: #F28C28;

    transform: translateY(-3px);
}


/* TEXT */

.why-feature-text {
    min-width: 0;
}

.why-feature-text h3 {
    margin: 1px 0 6px;

    color: #172B4D;

    font-size: 15px;

    font-weight: 800;
}

.why-feature-text p {
    margin: 0;

    color: #727982;

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.why-choose-side {
    position: relative;

    min-height: 390px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* MAIN CARD */

.why-side-card {
    width: 100%;
    max-width: 390px;

    padding: 35px;

    background: #172B4D;

    border-radius: 14px;

    color: #ffffff;

    box-shadow:
        0 25px 55px rgba(23, 43, 77, 0.20);
}


/* TOP */

.why-side-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.why-side-top span {
    color: #F28C28;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.why-side-top i {
    color: #F28C28;

    font-size: 24px;
}


/* MAIN STAT */

.why-side-main {
    padding: 30px 0 24px;
}

.why-side-main strong {
    display: block;

    color: #ffffff;

    font-size: 52px;

    line-height: 1;

    font-weight: 800;
}

.why-side-main p {
    margin: 8px 0 0;

    color: #b9c3cf;

    font-size: 13px;
}


/* DIVIDER */

.why-side-divider {
    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.15);
}


/* STATS */

.why-side-stats {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    padding: 24px 0;
}

.why-side-stats div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.why-side-stats strong {
    color: #ffffff;

    font-size: 22px;

    font-weight: 800;
}

.why-side-stats span {
    color: #aab4c0;

    font-size: 10px;
}


/* BUTTON */

.why-side-btn {
    width: 100%;
    min-height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    background: #F28C28;

    color: #ffffff;

    border-radius: 7px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition: all 0.3s ease;
}

.why-side-btn:hover {
    background: #ffffff;

    color: #172B4D;

    transform: translateY(-2px);
}


/* =========================================================
   FLOATING CARD
========================================================= */

.why-floating-card {
    position: absolute;

    right: -25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 17px;

    background: #ffffff;

    border: 1px solid #e1e5e9;

    border-radius: 9px;

    box-shadow:
        0 15px 35px rgba(23, 43, 77, 0.12);
}

.why-floating-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #F28C28;

    color: #ffffff;

    border-radius: 7px;

    font-size: 14px;
}

.why-floating-card div:last-child {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.why-floating-card strong {
    color: #172B4D;

    font-size: 11px;

    font-weight: 800;
}

.why-floating-card span {
    color: #727982;

    font-size: 9px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .why-choose-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .why-choose-content {
        max-width: 800px;
    }

    .why-choose-side {
        min-height: 420px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .why-choose-section {
        padding: 70px 18px;
    }

    .why-choose-content h2 {
        font-size: 34px;
    }

    .why-choose-intro {
        font-size: 13px;

        margin-bottom: 30px;
    }

    .why-features {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .why-choose-side {
        min-height: auto;

        padding-bottom: 40px;
    }

    .why-side-card {
        max-width: 100%;

        padding: 28px;
    }

    .why-floating-card {
        right: 10px;
        bottom: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .why-choose-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .why-choose-content h2 {
        font-size: 30px;
    }

    .why-side-card {
        padding: 24px;
    }

    .why-side-main strong {
        font-size: 44px;
    }

    .why-floating-card {
        right: 5px;

        padding: 11px 13px;
    }

}


/* =========================================================
   COMPATIBILITY FINDER CTA
========================================================= */

.compatibility-cta-section {
    width: 100%;

    padding: 100px 20px;

    background: #172B4D;
}

.compatibility-cta-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 75px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.compatibility-cta-content {
    min-width: 0;
}

.compatibility-cta-label {
    display: inline-block;

    margin-bottom: 13px;

    color: #F28C28;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.compatibility-cta-content h2 {
    max-width: 600px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: -1.2px;
}

.compatibility-cta-content h2 span {
    color: #F28C28;
}

.compatibility-cta-content > p {
    max-width: 550px;

    margin: 18px 0 35px;

    color: #B9C3CF;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   STEPS
========================================================= */

.compatibility-steps {
    display: flex;

    flex-direction: column;

    gap: 17px;
}

.compatibility-step {
    display: flex;

    align-items: center;

    gap: 14px;
}

.compatibility-step > span {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #35475C;

    border-radius: 7px;

    color: #F28C28;

    font-size: 10px;

    font-weight: 800;
}

.compatibility-step div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.compatibility-step strong {
    color: #ffffff;

    font-size: 12px;

    font-weight: 700;
}

.compatibility-step small {
    color: #8F9EAF;

    font-size: 10px;
}


/* =========================================================
   FINDER CARD
========================================================= */

.compatibility-finder-card {
    width: 100%;

    padding: 30px;

    background: #ffffff;

    border-radius: 13px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   CARD HEADING
========================================================= */

.compatibility-finder-heading {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 22px;

    margin-bottom: 22px;

    border-bottom: 1px solid #e6e9ed;
}

.compatibility-finder-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #172B4D;

    color: #F28C28;

    border-radius: 8px;

    font-size: 16px;
}

.compatibility-finder-heading h3 {
    margin: 0;

    color: #172B4D;

    font-size: 17px;

    font-weight: 800;
}

.compatibility-finder-heading p {
    margin: 4px 0 0;

    color: #727982;

    font-size: 10px;
}


/* =========================================================
   FORM
========================================================= */

.compatibility-finder-form {
    display: flex;

    flex-direction: column;

    gap: 17px;
}

.compatibility-field {
    width: 100%;
}

.compatibility-field label {
    display: block;

    margin-bottom: 7px;

    color: #29313A;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   SELECT
========================================================= */

.compatibility-select {
    position: relative;

    width: 100%;
}

.compatibility-select select {
    width: 100%;

    height: 46px;

    padding: 0 40px 0 14px;

    appearance: none;

    -webkit-appearance: none;

    border: 1px solid #dfe3e7;

    border-radius: 7px;

    outline: none;

    background: #f8f9fb;

    color: #29313A;

    font-family: inherit;

    font-size: 11px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.compatibility-select select:focus {
    border-color: #F28C28;

    background: #ffffff;
}

.compatibility-select i {
    position: absolute;

    top: 50%;
    right: 15px;

    transform: translateY(-50%);

    color: #727982;

    font-size: 9px;

    pointer-events: none;
}


/* =========================================================
   FIND BUTTON
========================================================= */

.compatibility-find-btn {
    width: 100%;

    min-height: 48px;

    margin-top: 4px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border: none;

    border-radius: 7px;

    background: #F28C28;

    color: #ffffff;

    font-family: inherit;

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;

    transition: all 0.3s ease;
}

.compatibility-find-btn:hover {
    background: #172B4D;

    transform: translateY(-2px);
}

.compatibility-find-btn i {
    font-size: 9px;

    transition: transform 0.3s ease;
}

.compatibility-find-btn:hover i {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .compatibility-cta-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .compatibility-cta-content {
        max-width: 700px;
    }

    .compatibility-finder-card {
        max-width: 600px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .compatibility-cta-section {
        padding: 70px 18px;
    }

    .compatibility-cta-content h2 {
        font-size: 34px;
    }

    .compatibility-cta-content > p {
        font-size: 13px;
    }

    .compatibility-finder-card {
        padding: 24px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .compatibility-cta-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .compatibility-cta-content h2 {
        font-size: 30px;
    }

    .compatibility-finder-card {
        padding: 20px;
    }

    .compatibility-finder-heading h3 {
        font-size: 15px;
    }

}

/* =========================================
   POPULAR BRANDS SECTION
========================================= */

.popular-brands-section {
    width: 100%;
    padding: 110px 20px;
    background: #ffffff;
}

.popular-brands-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.popular-brands-heading {
    max-width: 650px;
    margin-bottom: 55px;
}

.popular-brands-label {
    display: inline-block;
    margin-bottom: 14px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.popular-brands-heading h2 {
    margin: 0 0 18px;

    color: #172B4D;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.popular-brands-heading p {
    margin: 0;

    color: #727982;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   BRANDS GRID
========================================= */

.popular-brands-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* =========================================
   BRAND CARD
========================================= */

.popular-brand-card {
    position: relative;

    min-height: 260px;
    padding: 30px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #f6f7f9;

    border: 1px solid #e6e9ed;
    border-radius: 18px;

    overflow: hidden;

    transition: all 0.35s ease;
}


/* Top Orange Line */

.popular-brand-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #F28C28;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.35s ease;
}


/* Hover */

.popular-brand-card:hover {
    transform: translateY(-8px);

    border-color: #F28C28;

    box-shadow:
        0 18px 40px rgba(23, 43, 77, 0.10);
}

.popular-brand-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   BRAND IMAGE
========================================= */

.popular-brand-image {
    width: 135px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: #ffffff;

    border-radius: 12px;
}

.popular-brand-image img {
    width: 110px;
    height: 70px;

    display: block;

    object-fit: contain;

    transition: transform 0.35s ease;
}

.popular-brand-card:hover
.popular-brand-image img {
    transform: scale(1.08);
}


/* =========================================
   BRAND TEXT
========================================= */

.popular-brand-card h3 {
    margin: 0 0 7px;

    color: #172B4D;

    font-size: 18px;
    font-weight: 700;
}

.popular-brand-card span {
    color: #727982;

    font-size: 13px;
}


/* =========================================
   DARK MODE
========================================= */

body.dark-mode .popular-brands-section {
    background: #0D1520;
}

body.dark-mode .popular-brands-heading h2 {
    color: #E5EAF0;
}

body.dark-mode .popular-brands-heading p {
    color: #AAB4C0;
}

body.dark-mode .popular-brand-card {
    background: #111D2D;
    border-color: #26364A;
}

body.dark-mode .popular-brand-card:hover {
    border-color: #F28C28;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.25);
}

body.dark-mode .popular-brand-image {
    background: #1A293B;
}

body.dark-mode .popular-brand-card h3 {
    color: #E5EAF0;
}

body.dark-mode .popular-brand-card span {
    color: #AAB4C0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .popular-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .popular-brands-section {
        padding: 80px 18px;
    }

    .popular-brands-heading h2 {
        font-size: 32px;
    }

    .popular-brands-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .popular-brand-card {
        min-height: 230px;
    }

}

/* =========================================
   EASY PARTS SHOPPING SECTION
========================================= */

.easy-parts-section {
    width: 100%;
    padding: 120px 20px;

    background: #ffffff;
}

.easy-parts-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    gap: 80px;

    align-items: center;
}


/* =========================================
   CONTENT
========================================= */

.easy-parts-content {
    max-width: 540px;
}

.easy-parts-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.easy-parts-content h2 {
    margin: 0 0 20px;

    color: #172B4D;

    font-size: 42px;
    line-height: 1.15;

    font-weight: 800;
}

.easy-parts-content > p {
    margin: 0 0 35px;

    color: #727982;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   STEPS
========================================= */

.easy-parts-step {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px solid #e7eaee;
}

.easy-parts-step:last-of-type {
    border-bottom: none;
}


/* Number */

.easy-parts-number {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #172B4D;

    color: #F28C28;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 800;
}


/* Step Content */

.easy-parts-step-content h3 {
    margin: 0 0 5px;

    color: #172B4D;

    font-size: 16px;
    font-weight: 700;
}

.easy-parts-step-content span {
    color: #727982;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================
   BUTTON
========================================= */

.easy-parts-button {
    margin-top: 28px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    background: #F28C28;
    color: #ffffff;

    border-radius: 8px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.easy-parts-button:hover {
    background: #172B4D;

    transform: translateY(-2px);
}


/* =========================================
   IMAGE
========================================= */

.easy-parts-image {
    position: relative;

    width: 100%;
    height: 560px;

    overflow: hidden;

    border-radius: 25px;

    background: #f1f3f5;
}

.easy-parts-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.easy-parts-image:hover img {
    transform: scale(1.04);
}


/* =========================================
   FLOATING CARD
========================================= */

.easy-parts-floating-card {
    position: absolute;

    right: 25px;
    bottom: 25px;

    min-width: 230px;

    padding: 16px 18px;

    display: flex;
    align-items: center;

    gap: 13px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}

.easy-parts-floating-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff3e6;

    color: #F28C28;

    border-radius: 50%;

    font-size: 19px;
}

.easy-parts-floating-card strong {
    display: block;

    margin-bottom: 4px;

    color: #172B4D;

    font-size: 13px;
    font-weight: 800;
}

.easy-parts-floating-card span {
    color: #727982;

    font-size: 11px;
}


/* =========================================
   DARK MODE
========================================= */

body.dark-mode .easy-parts-section {
    background: #0D1520;
}

body.dark-mode .easy-parts-content h2 {
    color: #E5EAF0;
}

body.dark-mode .easy-parts-content > p {
    color: #AAB4C0;
}

body.dark-mode .easy-parts-step {
    border-color: #26364A;
}

body.dark-mode .easy-parts-number {
    background: #1A293B;

    border: 1px solid #35475C;
}

body.dark-mode .easy-parts-step-content h3 {
    color: #E5EAF0;
}

body.dark-mode .easy-parts-step-content span {
    color: #AAB4C0;
}

body.dark-mode .easy-parts-floating-card {
    background: #111D2D;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35);
}

body.dark-mode .easy-parts-floating-icon {
    background: #1A293B;
}

body.dark-mode .easy-parts-floating-card strong {
    color: #E5EAF0;
}

body.dark-mode .easy-parts-floating-card span {
    color: #AAB4C0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .easy-parts-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .easy-parts-content {
        max-width: 100%;
    }

    .easy-parts-image {
        height: 480px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .easy-parts-section {
        padding: 80px 18px;
    }

    .easy-parts-content h2 {
        font-size: 32px;
    }

    .easy-parts-image {
        height: 360px;

        border-radius: 18px;
    }

    .easy-parts-floating-card {
        right: 15px;
        bottom: 15px;

        min-width: auto;

        padding: 12px 14px;
    }

    .easy-parts-floating-icon {
        width: 36px;
        height: 36px;

        font-size: 16px;
    }

}

/* =========================================
   CUSTOMER REVIEWS SECTION
========================================= */

.customer-reviews-section {
    width: 100%;
    padding: 115px 20px;

    background: #ffffff;
}

.customer-reviews-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.customer-reviews-heading {
    max-width: 650px;
    margin: 0 auto 55px;

    text-align: center;
}

.customer-reviews-label {
    display: inline-block;

    margin-bottom: 13px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.customer-reviews-heading h2 {
    margin: 0 0 15px;

    color: #172B4D;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.customer-reviews-heading p {
    margin: 0;

    color: #727982;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   FEATURED REVIEW
========================================= */

.customer-featured-review {
    position: relative;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    min-height: 390px;

    margin-bottom: 30px;

    overflow: hidden;

    background: #172B4D;

    border-radius: 22px;
}


/* =========================================
   FEATURED IMAGE
========================================= */

.customer-featured-image {
    width: 100%;
    height: 100%;

    min-height: 390px;
}

.customer-featured-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================
   FEATURED CONTENT
========================================= */

.customer-featured-content {
    position: relative;

    padding: 55px 60px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.customer-quote-icon {
    position: absolute;

    top: 35px;
    right: 45px;

    color: rgba(242, 140, 40, 0.25);

    font-size: 55px;
}

.customer-featured-stars {
    display: flex;
    gap: 5px;

    margin-bottom: 20px;

    color: #F28C28;

    font-size: 14px;
}

.customer-featured-content > p {
    max-width: 600px;

    margin: 0 0 28px;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

.customer-featured-user {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.customer-featured-user strong {
    color: #ffffff;

    font-size: 15px;
}

.customer-featured-user span {
    color: #AAB4C0;

    font-size: 12px;
}


/* =========================================
   SMALL REVIEWS GRID
========================================= */

.customer-review-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* =========================================
   REVIEW CARD
========================================= */

.customer-review-card {
    padding: 25px;

    background: #f7f8fa;

    border: 1px solid #e3e7eb;
    border-radius: 15px;

    transition: all 0.35s ease;
}

.customer-review-card:hover {
    transform: translateY(-6px);

    background: #ffffff;

    border-color: #F28C28;

    box-shadow:
        0 15px 35px rgba(23, 43, 77, 0.09);
}


/* =========================================
   USER
========================================= */

.customer-review-top {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.customer-review-top img {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 50%;
}

.customer-review-top h3 {
    margin: 0 0 4px;

    color: #172B4D;

    font-size: 14px;
    font-weight: 700;
}

.customer-review-top span {
    color: #727982;

    font-size: 10px;
}


/* =========================================
   SMALL STARS
========================================= */

.customer-small-stars {
    display: flex;
    gap: 4px;

    margin-bottom: 14px;

    color: #F28C28;

    font-size: 12px;
}


/* =========================================
   REVIEW TEXT
========================================= */

.customer-review-card p {
    margin: 0;

    color: #727982;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   DARK MODE
========================================= */

body.dark-mode .customer-reviews-section {
    background: #0D1520;
}

body.dark-mode .customer-reviews-heading h2 {
    color: #E5EAF0;
}

body.dark-mode .customer-reviews-heading p {
    color: #AAB4C0;
}

body.dark-mode .customer-review-card {
    background: #111D2D;

    border-color: #26364A;
}

body.dark-mode .customer-review-card:hover {
    background: #1A293B;

    border-color: #F28C28;
}

body.dark-mode .customer-review-top h3 {
    color: #E5EAF0;
}

body.dark-mode .customer-review-top span {
    color: #AAB4C0;
}

body.dark-mode .customer-review-card p {
    color: #AAB4C0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .customer-featured-review {
        grid-template-columns: 1fr;
    }

    .customer-featured-image {
        height: 350px;
        min-height: 350px;
    }

    .customer-featured-content {
        padding: 45px 40px;
    }

    .customer-review-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .customer-reviews-section {
        padding: 80px 18px;
    }

    .customer-reviews-heading h2 {
        font-size: 32px;
    }

    .customer-featured-image {
        height: 280px;
        min-height: 280px;
    }

    .customer-featured-content {
        padding: 35px 25px;
    }

    .customer-featured-content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .customer-quote-icon {
        top: 20px;
        right: 25px;

        font-size: 40px;
    }

    .customer-review-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   PRODUCTS PAGE BANNER
========================================= */

.products-page-banner {
    width: 100%;
    min-height: 390px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 20px;

    background: #172B4D;

    text-align: center;
}

.products-page-banner-inner {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}


/* =========================================
   LABEL
========================================= */

.products-page-banner-label {
    display: inline-block;

    margin-bottom: 16px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


/* =========================================
   TITLE
========================================= */

.products-page-banner h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 48px;
    line-height: 1.15;

    font-weight: 800;
}


/* =========================================
   DESCRIPTION
========================================= */

.products-page-banner p {
    max-width: 700px;

    margin: 0 auto;

    color: #D5DCE5;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   DARK MODE
========================================= */

body.dark-mode .products-page-banner {
    background: #0B1421;
}

body.dark-mode .products-page-banner h1 {
    color: #E5EAF0;
}

body.dark-mode .products-page-banner p {
    color: #AAB4C0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .products-page-banner {
        min-height: 350px;
        padding: 80px 20px;
    }

    .products-page-banner h1 {
        font-size: 40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 500px) {

    .products-page-banner {
        min-height: 320px;
        padding: 70px 18px;
    }

    .products-page-banner h1 {
        font-size: 32px;
    }

    .products-page-banner p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* =========================================
   PRODUCTS VEHICLE FILTER SECTION
========================================= */

.products-filter-section {
    width: 100%;
    padding: 100px 20px;
    background: #FFFFFF;
}

.products-filter-inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.products-filter-heading {
    max-width: 700px;
    margin-bottom: 50px;
}

.products-filter-heading span {
    display: inline-block;
    margin-bottom: 12px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.products-filter-heading h2 {
    margin: 0 0 15px;

    color: #172B4D;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.products-filter-heading p {
    margin: 0;

    color: #727982;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   VEHICLE TABS
========================= */

.products-vehicle-tabs {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 45px;

    padding-bottom: 18px;

    border-bottom: 1px solid #E2E6EA;
}

.products-vehicle-tab {
    min-width: 120px;

    padding: 13px 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 1px solid #D9DDE2;
    border-radius: 7px;

    background: #FFFFFF;

    color: #727982;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.products-vehicle-tab i {
    font-size: 15px;
}

.products-vehicle-tab:hover {
    border-color: #F28C28;
    color: #F28C28;
}

.products-vehicle-tab.active {
    background: #172B4D;
    border-color: #172B4D;
    color: #FFFFFF;
}


/* =========================
   CATEGORY LIST
========================= */

.products-category-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.products-category-item {
    min-height: 120px;

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 22px 24px;

    background: #F7F8FA;

    border: 1px solid #E5E8EC;
    border-radius: 10px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.products-category-item:hover {
    background: #FFFFFF;

    border-color: #F28C28;

    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(23, 43, 77, 0.08);
}


/* =========================
   CATEGORY ICON
========================= */

.products-category-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #172B4D;

    border-radius: 8px;

    color: #FFFFFF;

    font-size: 21px;

    transition: all 0.3s ease;
}

.products-category-item:hover .products-category-icon {
    background: #F28C28;
}


/* =========================
   CATEGORY CONTENT
========================= */

.products-category-content {
    flex: 1;
}

.products-category-content h3 {
    margin: 0 0 6px;

    color: #172B4D;

    font-size: 17px;
    font-weight: 700;
}

.products-category-content p {
    margin: 0;

    color: #727982;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================
   ARROW
========================= */

.products-category-arrow {
    color: #A2A8AF;

    font-size: 14px;

    transition: all 0.3s ease;
}

.products-category-item:hover .products-category-arrow {
    color: #F28C28;
    transform: translateX(4px);
}






/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .products-filter-section {
        padding: 80px 20px;
    }

    .products-filter-heading {
        margin-bottom: 40px;
    }

    .products-filter-heading h2 {
        font-size: 32px;
    }

    .products-vehicle-tabs {
        flex-wrap: wrap;
    }

    .products-vehicle-tab {
        min-width: 110px;
    }

    .products-category-list {
        grid-template-columns: 1fr;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .products-filter-section {
        padding: 65px 16px;
    }

    .products-filter-heading h2 {
        font-size: 28px;
    }

    .products-filter-heading p {
        font-size: 14px;
    }

    .products-vehicle-tabs {
        gap: 8px;
        margin-bottom: 35px;
    }

    .products-vehicle-tab {
        flex: 1;
        min-width: calc(50% - 4px);

        padding: 12px 10px;

        font-size: 13px;
    }

    .products-category-item {
        min-height: auto;

        padding: 18px;

        gap: 14px;
    }

    .products-category-icon {
        width: 50px;
        height: 50px;

        font-size: 18px;
    }

    .products-category-content h3 {
        font-size: 15px;
    }

    .products-category-content p {
        font-size: 12px;
    }

    .products-category-arrow {
        font-size: 12px;
    }
}


/* =========================================
   PRODUCTS SHOWCASE
========================================= */

.products-showcase-section {
    width: 100%;
    padding: 100px 20px;
    background: #F7F8FA;
}

.products-showcase-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.products-showcase-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
    margin-bottom: 55px;
}

.products-showcase-header > div {
    max-width: 600px;
}

.products-showcase-label {
    display: inline-block;
    margin-bottom: 12px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.products-showcase-header h2 {
    margin: 0;

    color: #172B4D;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.products-showcase-header > p {
    max-width: 400px;
    margin: 0;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   LIST
========================= */

.products-showcase-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


/* =========================
   CARD
========================= */

.products-showcase-card {
    position: relative;

    min-height: 250px;

    display: flex;
    align-items: flex-start;

    gap: 22px;

    padding: 32px;

    background: #FFFFFF;

    border: 1px solid #E1E5E9;
    border-radius: 12px;

    text-decoration: none;

    overflow: hidden;

    transition: all 0.35s ease;
}

.products-showcase-card:hover {
    border-color: #F28C28;

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(23, 43, 77, 0.08);
}


/* =========================
   NUMBER
========================= */

.products-showcase-number {
    position: absolute;

    top: 22px;
    right: 25px;

    color: #E8EBEF;

    font-size: 38px;
    line-height: 1;

    font-weight: 800;
}

.products-showcase-card:hover .products-showcase-number {
    color: #FCE2C8;
}


/* =========================
   ICON
========================= */

.products-showcase-icon {
    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #172B4D;

    border-radius: 10px;

    color: #FFFFFF;

    font-size: 22px;

    transition: all 0.35s ease;
}

.products-showcase-card:hover .products-showcase-icon {
    background: #F28C28;
}


/* =========================
   CONTENT
========================= */

.products-showcase-content {
    padding-top: 4px;
}

.products-showcase-content h3 {
    margin: 0 0 10px;

    color: #172B4D;

    font-size: 20px;
    font-weight: 700;
}

.products-showcase-content p {
    max-width: 350px;

    margin: 0 0 20px;

    color: #727982;

    font-size: 13px;
    line-height: 1.7;
}

.products-showcase-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #F28C28;

    font-size: 13px;
    font-weight: 700;
}

.products-showcase-content span i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.products-showcase-card:hover
.products-showcase-content span i {
    transform: translateX(4px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

    .products-showcase-section {
        padding: 80px 20px;
    }

    .products-showcase-header {
        display: block;
    }

    .products-showcase-header > p {
        margin-top: 18px;
    }

    .products-showcase-list {
        grid-template-columns: 1fr;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .products-showcase-section {
        padding: 65px 16px;
    }

    .products-showcase-header h2 {
        font-size: 29px;
    }

    .products-showcase-header > p {
        font-size: 13px;
    }

    .products-showcase-card {
        min-height: auto;

        padding: 25px 20px;

        gap: 15px;
    }

    .products-showcase-icon {
        width: 52px;
        height: 52px;

        font-size: 18px;
    }

    .products-showcase-content h3 {
        font-size: 17px;
    }

    .products-showcase-content p {
        font-size: 12px;
    }

    .products-showcase-number {
        top: 18px;
        right: 18px;

        font-size: 30px;
    }
}

/* =========================================
   PRODUCTS COMPATIBILITY SECTION
========================================= */

.products-compatibility-section {
    width: 100%;
    padding: 100px 20px;
    background: #FFFFFF;
}

.products-compatibility-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.products-compatibility-box {
    display: grid;
    grid-template-columns: 1fr 0.85fr;

    gap: 70px;

    padding: 65px;

    background: #172B4D;

    border-radius: 14px;

    overflow: hidden;
}


/* =========================
   CONTENT
========================= */

.products-compatibility-content {
    align-self: center;
}

.products-compatibility-label {
    display: inline-block;
    margin-bottom: 14px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.products-compatibility-content h2 {
    margin: 0 0 20px;

    color: #FFFFFF;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.products-compatibility-content p {
    max-width: 500px;

    margin: 0 0 30px;

    color: #D5DCE5;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   POINTS
========================= */

.products-compatibility-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.products-compatibility-points div {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #FFFFFF;

    font-size: 13px;
}

.products-compatibility-points i {
    color: #F28C28;
    font-size: 15px;
}


/* =========================
   FORM
========================= */

.products-compatibility-form {
    padding: 30px;

    background: #FFFFFF;

    border-radius: 10px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.products-compatibility-form h3 {
    margin: 0 0 24px;

    color: #172B4D;

    font-size: 20px;
    font-weight: 700;
}

.products-select-group {
    margin-bottom: 16px;
}

.products-select-group label {
    display: block;
    margin-bottom: 7px;

    color: #29313A;

    font-size: 12px;
    font-weight: 600;
}

.products-select-group select {
    width: 100%;
    height: 46px;

    padding: 0 14px;

    border: 1px solid #D9DDE2;
    border-radius: 6px;

    background: #FFFFFF;

    color: #727982;

    font-family: inherit;
    font-size: 13px;

    outline: none;

    cursor: pointer;

    transition: border-color 0.3s ease;
}

.products-select-group select:focus {
    border-color: #F28C28;
}


/* =========================
   BUTTON
========================= */

.products-compatibility-btn {
    width: 100%;
    height: 48px;

    margin-top: 5px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: none;
    border-radius: 6px;

    background: #F28C28;

    color: #FFFFFF;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}

.products-compatibility-btn:hover {
    background: #172B4D;
}

.products-compatibility-btn i {
    transition: transform 0.3s ease;
}

.products-compatibility-btn:hover i {
    transform: translateX(4px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 850px) {

    .products-compatibility-section {
        padding: 80px 20px;
    }

    .products-compatibility-box {
        grid-template-columns: 1fr;

        gap: 45px;

        padding: 50px;
    }

    .products-compatibility-content h2 {
        font-size: 34px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .products-compatibility-section {
        padding: 65px 16px;
    }

    .products-compatibility-box {
        gap: 35px;

        padding: 35px 20px;

        border-radius: 10px;
    }

    .products-compatibility-content h2 {
        font-size: 28px;
    }

    .products-compatibility-content p {
        font-size: 13px;
    }

    .products-compatibility-form {
        padding: 22px 18px;
    }

    .products-compatibility-form h3 {
        font-size: 18px;
    }
}

/* =========================================
   FEATURED PRODUCTS
========================================= */

.featured-products-section {
    width: 100%;
    padding: 100px 20px;
    background: #F7F8FA;
}

.featured-products-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.featured-products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}

.featured-products-heading span {
    display: inline-block;

    margin-bottom: 10px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.featured-products-heading h2 {
    margin: 0;

    color: #172B4D;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
}


/* =========================
   VIEW ALL
========================= */

.featured-products-view {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding-bottom: 4px;

    color: #172B4D;

    border-bottom: 2px solid #F28C28;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.featured-products-view:hover {
    color: #F28C28;
}

.featured-products-view i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.featured-products-view:hover i {
    transform: translateX(4px);
}


/* =========================
   GRID
========================= */

.featured-products-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* =========================
   CARD
========================= */

.featured-product-card {
    background: #FFFFFF;

    border: 1px solid #E2E6EA;
    border-radius: 10px;

    overflow: hidden;

    transition: all 0.35s ease;
}

.featured-product-card:hover {
    border-color: #F28C28;

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(23, 43, 77, 0.09);
}


/* =========================
   IMAGE
========================= */

.featured-product-image {
    position: relative;

    width: 100%;
    height: 240px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: #F1F3F5;

    overflow: hidden;
}

.featured-product-image img {
    width: 190px;
    height: 170px;

    object-fit: contain;

    display: block;

    transition: transform 0.4s ease;
}

.featured-product-card:hover
.featured-product-image img {
    transform: scale(1.06);
}


/* =========================
   TAG
========================= */

.featured-product-tag {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 9px;

    background: #F28C28;

    color: #FFFFFF;

    border-radius: 4px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.7px;
}


/* =========================
   INFO
========================= */

.featured-product-info {
    padding: 25px;
}

.featured-product-category {
    display: block;

    margin-bottom: 8px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.featured-product-info h3 {
    margin: 0 0 10px;

    color: #172B4D;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.featured-product-info p {
    min-height: 42px;

    margin: 0 0 20px;

    color: #727982;

    font-size: 12px;
    line-height: 1.7;
}


/* =========================
   BOTTOM
========================= */

.featured-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 17px;

    border-top: 1px solid #E7EAED;
}

.featured-product-bottom strong {
    color: #172B4D;

    font-size: 20px;
    font-weight: 800;
}

.featured-product-bottom a {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #172B4D;

    border-radius: 50%;

    color: #FFFFFF;

    text-decoration: none;

    font-size: 12px;

    transition: all 0.3s ease;
}

.featured-product-bottom a:hover {
    background: #F28C28;
    transform: translateX(3px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 850px) {

    .featured-products-section {
        padding: 80px 20px;
    }

    .featured-products-heading h2 {
        font-size: 32px;
    }

    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-product-card:last-child {
        grid-column: span 2;
        max-width: calc(50% - 11px);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .featured-products-section {
        padding: 65px 16px;
    }

    .featured-products-heading {
        display: block;
    }

    .featured-products-heading h2 {
        font-size: 28px;
    }

    .featured-products-view {
        margin-top: 18px;
    }

    .featured-products-grid {
        grid-template-columns: 1fr;
    }

    .featured-product-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .featured-product-image {
        height: 220px;
    }

    .featured-product-info {
        padding: 22px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 380px) {

    .featured-products-heading h2 {
        font-size: 25px;
    }

    .featured-product-image {
        height: 205px;
    }

    .featured-product-image img {
        width: 175px;
        height: 155px;
    }
}

/* =========================================
   PRODUCTS PROMISE SECTION
========================================= */

.products-promise-section {
    width: 100%;
    padding: 100px 20px;
    background: #FFFFFF;
}

.products-promise-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


/* =========================
   INTRO
========================= */

.products-promise-intro {
    max-width: 500px;
}

.products-promise-label {
    display: inline-block;
    margin-bottom: 14px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.products-promise-intro h2 {
    margin: 0 0 20px;

    color: #172B4D;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.products-promise-intro p {
    max-width: 460px;

    margin: 0;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   FEATURES
========================= */

.products-promise-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.products-promise-feature {
    min-height: 175px;

    padding: 25px;

    background: #F7F8FA;

    border: 1px solid #E4E7EB;
    border-radius: 10px;

    transition: all 0.3s ease;
}

.products-promise-feature:hover {
    border-color: #F28C28;

    transform: translateY(-4px);

    box-shadow: 0 12px 28px rgba(23, 43, 77, 0.07);
}


/* =========================
   ICON
========================= */

.products-promise-icon {
    width: 45px;
    height: 45px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #172B4D;

    border-radius: 8px;

    color: #FFFFFF;

    font-size: 17px;

    transition: all 0.3s ease;
}

.products-promise-feature:hover
.products-promise-icon {
    background: #F28C28;
}


/* =========================
   CONTENT
========================= */

.products-promise-feature h3 {
    margin: 0 0 8px;

    color: #172B4D;

    font-size: 16px;
    font-weight: 700;
}

.products-promise-feature p {
    margin: 0;

    color: #727982;

    font-size: 12px;
    line-height: 1.7;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .products-promise-section {
        padding: 80px 20px;
    }

    .products-promise-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .products-promise-intro {
        max-width: 650px;
    }

    .products-promise-intro h2 {
        font-size: 34px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 550px) {

    .products-promise-section {
        padding: 65px 16px;
    }

    .products-promise-intro h2 {
        font-size: 29px;
    }

    .products-promise-intro p {
        font-size: 13px;
    }

    .products-promise-features {
        grid-template-columns: 1fr;
    }

    .products-promise-feature {
        min-height: auto;
        padding: 22px;
    }
}

/* =========================================
   PRODUCTS BRANDS SECTION
========================================= */

.products-brands-section {
    width: 100%;
    padding: 95px 20px;
    background: #F7F8FA;
}

.products-brands-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================
   HEADING
========================= */

.products-brands-heading {
    max-width: 650px;
    margin: 0 auto 50px;

    text-align: center;
}

.products-brands-heading span {
    display: inline-block;

    margin-bottom: 12px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.products-brands-heading h2 {
    margin: 0 0 15px;

    color: #172B4D;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
}

.products-brands-heading p {
    margin: 0;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   BRAND LIST
========================= */

.products-brands-list {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.products-brand-item {
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: #FFFFFF;

    border: 1px solid #E1E5E9;
    border-radius: 10px;

    text-decoration: none;

    transition: all 0.35s ease;
}

.products-brand-item img {
    width: 145px;
    height: 75px;

    object-fit: contain;

    display: block;

    transition: transform 0.35s ease;
}

.products-brand-item:hover {
    border-color: #F28C28;

    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(23, 43, 77, 0.08);
}

.products-brand-item:hover img {
    transform: scale(1.06);
}


/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

    .products-brands-section {
        padding: 80px 20px;
    }

    .products-brands-heading h2 {
        font-size: 32px;
    }

    .products-brands-list {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .products-brands-section {
        padding: 65px 16px;
    }

    .products-brands-heading {
        margin-bottom: 35px;
    }

    .products-brands-heading h2 {
        font-size: 28px;
    }

    .products-brands-heading p {
        font-size: 13px;
    }

    .products-brands-list {
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }

    .products-brand-item {
        height: 115px;

        padding: 18px;
    }

    .products-brand-item img {
        width: 110px;
        height: 60px;
    }
}

/* =========================================
   PRODUCT CATEGORY EXPLORER
========================================= */

.product-category-explorer {
    width: 100%;
    padding: 110px 20px;
    background: #FFFFFF;
}

.product-category-explorer-inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    min-height: 500px;
}


/* =========================================
   LEFT MENU
========================================= */

.product-category-menu {
    padding: 50px 45px;

    background: #F7F8FA;

    border: 1px solid #E3E6EA;
    border-right: none;
}

.product-category-menu-label {
    display: inline-block;
    margin-bottom: 12px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.product-category-menu h2 {
    margin: 0 0 35px;

    color: #172B4D;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}


/* =========================================
   MENU ITEMS
========================================= */

.product-category-menu-list {
    display: flex;
    flex-direction: column;
}

.product-category-menu-item {
    width: 100%;

    min-height: 58px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: none;
    border-bottom: 1px solid #DDE1E5;

    background: transparent;

    color: #727982;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    text-align: left;

    cursor: pointer;

    transition: all 0.3s ease;
}

.product-category-menu-item i {
    font-size: 11px;

    opacity: 0;

    transition: all 0.3s ease;
}

.product-category-menu-item:hover {
    color: #F28C28;
}

.product-category-menu-item:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.product-category-menu-item.active {
    color: #172B4D;
    border-bottom-color: #F28C28;
}

.product-category-menu-item.active i {
    opacity: 1;
    color: #F28C28;
}


/* =========================================
   RIGHT DETAIL
========================================= */

.product-category-detail {
    position: relative;

    padding: 60px 65px;

    background: #172B4D;

    color: #FFFFFF;

    overflow: hidden;
}

.product-category-detail::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: -80px;
    bottom: -100px;

    border: 1px solid rgba(242, 140, 40, 0.25);

    border-radius: 50%;
}

.product-category-detail-number {
    position: absolute;

    top: 35px;
    right: 45px;

    color: rgba(255, 255, 255, 0.12);

    font-size: 70px;
    line-height: 1;

    font-weight: 800;
}

.product-category-detail-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F28C28;

    border-radius: 10px;

    color: #FFFFFF;

    font-size: 22px;
}

.product-category-detail-label {
    display: block;

    margin-bottom: 12px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.product-category-detail h3 {
    max-width: 520px;

    margin: 0 0 18px;

    color: #FFFFFF;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.product-category-detail p {
    max-width: 540px;

    margin: 0 0 28px;

    color: #D5DCE5;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   PART LIST
========================================= */

.product-category-detail-list {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 25px;

    margin-bottom: 32px;
}

.product-category-detail-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #E5EAF0;

    font-size: 12px;
}

.product-category-detail-list i {
    color: #F28C28;
}


/* =========================================
   BUTTON
========================================= */

.product-category-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 20px;

    background: #F28C28;

    border-radius: 5px;

    color: #FFFFFF;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.product-category-detail-btn:hover {
    background: #FFFFFF;
    color: #172B4D;
}

.product-category-detail-btn i {
    transition: transform 0.3s ease;
}

.product-category-detail-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .product-category-explorer {
        padding: 80px 20px;
    }

    .product-category-explorer-inner {
        grid-template-columns: 1fr;
    }

    .product-category-menu {
        padding: 40px;
        border-right: 1px solid #E3E6EA;
        border-bottom: none;
    }

    .product-category-menu-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-category-detail {
        padding: 50px 40px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .product-category-explorer {
        padding: 65px 16px;
    }

    .product-category-menu {
        padding: 30px 22px;
    }

    .product-category-menu h2 {
        font-size: 27px;
    }

    .product-category-menu-list {
        grid-template-columns: 1fr;
    }

    .product-category-menu-item {
        min-height: 52px;
        padding: 0 10px;
    }

    .product-category-detail {
        padding: 40px 25px;
    }

    .product-category-detail-number {
        top: 25px;
        right: 25px;

        font-size: 55px;
    }

    .product-category-detail-icon {
        width: 55px;
        height: 55px;

        margin-bottom: 28px;
    }

    .product-category-detail h3 {
        font-size: 28px;
    }

    .product-category-detail p {
        font-size: 13px;
    }

    .product-category-detail-list {
        flex-direction: column;
        gap: 12px;
    }

    .product-category-detail-btn {
        width: 100%;

        justify-content: center;
    }
}/* =========================================
   BRANDS PAGE BANNER
========================================= */

.brands-page-banner {
    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 20px;

    background: #F5F7F9;

    text-align: center;
}

.brands-page-banner-inner {
    width: 100%;
    max-width: 850px;

    margin: 0 auto;
}

.brands-page-banner-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.brands-page-banner h1 {
    margin: 0 0 22px;

    color: #172B4D;

    font-size: 52px;
    line-height: 1.12;
    font-weight: 800;
}

.brands-page-banner p {
    max-width: 680px;

    margin: 0 auto;

    color: #727982;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .brands-page-banner {
        min-height: 380px;
        padding: 80px 20px;
    }

    .brands-page-banner h1 {
        font-size: 42px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 500px) {

    .brands-page-banner {
        min-height: 350px;
        padding: 70px 18px;
    }

    .brands-page-banner-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .brands-page-banner h1 {
        font-size: 34px;
    }

    .brands-page-banner p {
        font-size: 13px;
        line-height: 1.7;
    }

}

/* =========================================
   BRANDS DIRECTORY
========================================= */

.brands-directory {
    width: 100%;

    padding: 110px 20px;

    background: #FFFFFF;
}

.brands-directory-inner {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.brands-directory-heading {
    max-width: 650px;

    margin-bottom: 65px;
}

.brands-directory-heading > span {
    display: inline-block;

    margin-bottom: 14px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.brands-directory-heading h2 {
    margin: 0 0 18px;

    color: #172B4D;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.brands-directory-heading p {
    max-width: 580px;

    margin: 0;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   DIRECTORY ROW
========================================= */

.brands-directory-content {
    width: 100%;

    border-top: 1px solid #DDE2E7;
}

.brands-directory-row {
    width: 100%;

    min-height: 150px;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 50px;

    padding: 30px 10px;

    border-bottom: 1px solid #DDE2E7;

    transition: background 0.3s ease;
}

.brands-directory-row:hover {
    background: #F8F9FA;
}


/* =========================================
   CATEGORY
========================================= */

.brands-directory-category {
    position: relative;

    padding-left: 70px;
}

.brands-directory-number {
    position: absolute;

    left: 0;
    top: 2px;

    color: #F28C28;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;
}

.brands-directory-category h3 {
    margin: 0 0 8px;

    color: #172B4D;

    font-size: 21px;
    font-weight: 750;
}

.brands-directory-category p {
    max-width: 360px;

    margin: 0;

    color: #727982;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   BRAND NAMES
========================================= */

.brands-directory-names {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 12px;
}

.brands-directory-names span {
    min-width: 115px;

    padding: 14px 18px;

    border: 1px solid #E1E5E9;

    background: #FFFFFF;

    color: #29313A;

    font-size: 13px;
    font-weight: 700;

    text-align: center;

    border-radius: 4px;

    transition: all 0.3s ease;
}

.brands-directory-names span:hover {
    border-color: #F28C28;

    color: #F28C28;

    transform: translateY(-3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .brands-directory {
        padding: 85px 20px;
    }

    .brands-directory-heading {
        margin-bottom: 50px;
    }

    .brands-directory-heading h2 {
        font-size: 35px;
    }

    .brands-directory-row {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 30px 5px;
    }

    .brands-directory-category {
        padding-left: 60px;
    }

    .brands-directory-names {
        padding-left: 60px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .brands-directory {
        padding: 65px 16px;
    }

    .brands-directory-heading {
        margin-bottom: 40px;
    }

    .brands-directory-heading h2 {
        font-size: 30px;
    }

    .brands-directory-heading p {
        font-size: 13px;
    }

    .brands-directory-row {
        padding: 25px 0;

        gap: 20px;
    }

    .brands-directory-category {
        padding-left: 45px;
    }

    .brands-directory-number {
        font-size: 11px;
    }

    .brands-directory-category h3 {
        font-size: 18px;
    }

    .brands-directory-category p {
        font-size: 12px;
    }

    .brands-directory-names {
        padding-left: 45px;

        gap: 8px;
    }

    .brands-directory-names span {
        min-width: calc(50% - 4px);

        padding: 12px 8px;

        font-size: 11px;
    }

}

/* =========================================
   BRAND QUALITY PROMISE
========================================= */

.brand-quality-promise {
    width: 100%;
    padding: 110px 20px;
    background: #F5F7F9;
}

.brand-quality-promise-inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;

    align-items: stretch;
}


/* =========================================
   LEFT CONTENT
========================================= */

.brand-quality-content {
    padding: 20px 0;
}

.brand-quality-label {
    display: inline-block;
    margin-bottom: 15px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-quality-content h2 {
    max-width: 550px;

    margin: 0 0 20px;

    color: #172B4D;

    font-size: 42px;
    line-height: 1.18;
    font-weight: 800;
}

.brand-quality-content > p {
    max-width: 570px;

    margin: 0 0 40px;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   QUALITY POINTS
========================================= */

.brand-quality-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.brand-quality-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.brand-quality-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFFFFF;

    border: 1px solid #E1E5E9;

    border-radius: 8px;

    color: #F28C28;

    font-size: 17px;
}

.brand-quality-point h3 {
    margin: 2px 0 6px;

    color: #172B4D;

    font-size: 15px;
    font-weight: 700;
}

.brand-quality-point p {
    margin: 0;

    color: #727982;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.brand-quality-visual {
    position: relative;

    min-height: 500px;

    padding: 55px 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #172B4D;

    overflow: hidden;
}

.brand-quality-visual::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -120px;
    right: -100px;

    border: 1px solid rgba(242, 140, 40, 0.25);

    border-radius: 50%;
}

.brand-quality-visual::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -80px;
    left: -70px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.brand-quality-big-number {
    position: relative;
    z-index: 2;

    margin-bottom: 5px;

    color: #F28C28;

    font-size: 82px;
    line-height: 1;

    font-weight: 800;
}

.brand-quality-visual-label {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;

    color: #D5DCE5;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.brand-quality-visual h3 {
    position: relative;
    z-index: 2;

    max-width: 380px;

    margin: 0 0 18px;

    color: #FFFFFF;

    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
}

.brand-quality-visual > p {
    position: relative;
    z-index: 2;

    max-width: 390px;

    margin: 0 0 35px;

    color: #AAB4C0;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   STAT LINES
========================================= */

.brand-quality-stat-line {
    position: relative;
    z-index: 2;

    width: 100%;

    padding: 15px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: #D5DCE5;

    font-size: 12px;
}

.brand-quality-stat-line strong {
    color: #FFFFFF;
    font-size: 14px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .brand-quality-promise {
        padding: 85px 20px;
    }

    .brand-quality-promise-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .brand-quality-content h2 {
        font-size: 36px;
    }

    .brand-quality-visual {
        min-height: 420px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .brand-quality-promise {
        padding: 65px 16px;
    }

    .brand-quality-content h2 {
        font-size: 30px;
    }

    .brand-quality-content > p {
        font-size: 13px;
    }

    .brand-quality-point {
        gap: 13px;
    }

    .brand-quality-icon {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
        font-size: 15px;
    }

    .brand-quality-point h3 {
        font-size: 14px;
    }

    .brand-quality-point p {
        font-size: 11px;
    }

    .brand-quality-visual {
        min-height: 390px;
        padding: 40px 25px;
    }

    .brand-quality-big-number {
        font-size: 65px;
    }

    .brand-quality-visual h3 {
        font-size: 27px;
    }

}

/* =========================================
   BRAND SELECTION GUIDE
========================================= */

.brand-selection-guide {
    width: 100%;
    padding: 110px 20px;
    background: #FFFFFF;
}

.brand-selection-guide-inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.brand-selection-guide-header {
    max-width: 650px;
    margin-bottom: 60px;
}

.brand-selection-guide-label {
    display: inline-block;
    margin-bottom: 14px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-selection-guide-header h2 {
    margin: 0 0 18px;

    color: #172B4D;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.brand-selection-guide-header p {
    max-width: 590px;
    margin: 0;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   TABLE
========================================= */

.brand-selection-guide-table {
    width: 100%;

    border-top: 2px solid #172B4D;
}


/* =========================================
   TABLE HEADER
========================================= */

.brand-guide-table-head {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr 1fr;

    min-height: 55px;

    align-items: center;

    padding: 0 20px;

    background: #F5F7F9;

    color: #727982;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================
   TABLE ROW
========================================= */

.brand-guide-table-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr 1fr;

    min-height: 100px;

    align-items: center;

    padding: 20px;

    border-bottom: 1px solid #E1E5E9;

    transition: all 0.3s ease;
}

.brand-guide-table-row:hover {
    background: #F9FAFB;
}


/* =========================================
   BRAND
========================================= */

.brand-guide-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-guide-letter {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #172B4D;

    color: #FFFFFF;

    border-radius: 50%;

    font-size: 15px;
    font-weight: 800;
}

.brand-guide-brand strong {
    color: #172B4D;

    font-size: 15px;
    font-weight: 750;
}


/* =========================================
   TEXT
========================================= */

.brand-guide-best,
.brand-guide-category {
    color: #727982;

    font-size: 12px;
    line-height: 1.6;
}

.brand-guide-choice {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #29313A;

    font-size: 12px;
    font-weight: 700;
}

.brand-guide-choice i {
    color: #F28C28;
    font-size: 11px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .brand-selection-guide {
        padding: 85px 20px;
    }

    .brand-selection-guide-header h2 {
        font-size: 35px;
    }

    .brand-guide-table-head,
    .brand-guide-table-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .brand-guide-table-head span:nth-child(3),
    .brand-guide-table-head span:nth-child(4) {
        display: none;
    }

    .brand-guide-table-row {
        padding: 22px 18px;
    }

    .brand-guide-table-row .brand-guide-category,
    .brand-guide-table-row .brand-guide-choice {
        padding-top: 8px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .brand-selection-guide {
        padding: 65px 16px;
    }

    .brand-selection-guide-header {
        margin-bottom: 40px;
    }

    .brand-selection-guide-header h2 {
        font-size: 30px;
    }

    .brand-selection-guide-header p {
        font-size: 13px;
    }

    .brand-guide-table-head {
        display: none;
    }

    .brand-guide-table-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 12px;

        padding: 22px 15px;
    }

    .brand-guide-brand {
        width: 100%;
    }

    .brand-guide-best,
    .brand-guide-category,
    .brand-guide-choice {
        font-size: 12px;
    }

}

/* =========================================
   BRAND EXPERIENCE
========================================= */

.brand-experience {
    width: 100%;
    padding: 110px 20px;
    background: #FFFFFF;
}

.brand-experience-inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
}


/* =========================================
   IMAGE
========================================= */

.brand-experience-image {
    position: relative;
    width: 100%;
    min-height: 520px;

    overflow: hidden;
}

.brand-experience-image img {
    width: 100%;
    height: 520px;

    display: block;

    object-fit: cover;

    border-radius: 4px;
}


/* =========================================
   FLOATING BADGE
========================================= */

.brand-experience-badge {
    position: absolute;

    right: 25px;
    bottom: 25px;

    min-width: 145px;

    padding: 20px;

    display: flex;
    flex-direction: column;

    background: #F28C28;

    border-radius: 4px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.brand-experience-badge strong {
    color: #FFFFFF;

    font-size: 32px;
    line-height: 1;

    font-weight: 800;
}

.brand-experience-badge span {
    margin-top: 7px;

    color: #FFFFFF;

    font-size: 11px;
    font-weight: 600;
}


/* =========================================
   CONTENT
========================================= */

.brand-experience-content {
    width: 100%;
}

.brand-experience-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.brand-experience-content h2 {
    max-width: 520px;

    margin: 0 0 20px;

    color: #172B4D;

    font-size: 42px;
    line-height: 1.18;

    font-weight: 800;
}

.brand-experience-content > p {
    max-width: 540px;

    margin: 0 0 35px;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.brand-experience-features {
    display: flex;
    flex-direction: column;

    gap: 22px;

    margin-bottom: 35px;
}

.brand-experience-feature {
    display: flex;
    align-items: flex-start;

    gap: 14px;
}

.brand-experience-feature > i {
    margin-top: 3px;

    color: #F28C28;

    font-size: 18px;
}

.brand-experience-feature h3 {
    margin: 0 0 5px;

    color: #172B4D;

    font-size: 14px;
    font-weight: 700;
}

.brand-experience-feature p {
    margin: 0;

    color: #727982;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================
   BUTTON
========================================= */

.brand-experience-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    background: #172B4D;

    color: #FFFFFF;

    text-decoration: none;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.brand-experience-btn:hover {
    background: #F28C28;
}

.brand-experience-btn i {
    transition: transform 0.3s ease;
}

.brand-experience-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .brand-experience {
        padding: 85px 20px;
    }

    .brand-experience-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .brand-experience-image {
        min-height: 450px;
    }

    .brand-experience-image img {
        height: 450px;
    }

    .brand-experience-content h2 {
        font-size: 36px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .brand-experience {
        padding: 65px 16px;
    }

    .brand-experience-inner {
        gap: 40px;
    }

    .brand-experience-image {
        min-height: 350px;
    }

    .brand-experience-image img {
        height: 350px;
    }

    .brand-experience-badge {
        right: 15px;
        bottom: 15px;

        min-width: 125px;

        padding: 16px;
    }

    .brand-experience-badge strong {
        font-size: 27px;
    }

    .brand-experience-content h2 {
        font-size: 30px;
    }

    .brand-experience-content > p {
        font-size: 13px;
    }

    .brand-experience-feature h3 {
        font-size: 13px;
    }

    .brand-experience-feature p {
        font-size: 11px;
    }

    .brand-experience-btn {
        width: 100%;
        justify-content: center;
    }

}

/* =========================================
   BRAND CATEGORY SHOWCASE
========================================= */

.brand-category-showcase {
    width: 100%;
    padding: 110px 20px;
    background: #F5F7F9;
}

.brand-category-showcase-inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.brand-category-showcase-header {
    max-width: 680px;
    margin-bottom: 60px;
}

.brand-category-showcase-label {
    display: inline-block;
    margin-bottom: 14px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-category-showcase-header h2 {
    margin: 0 0 18px;

    color: #172B4D;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.brand-category-showcase-header p {
    max-width: 600px;
    margin: 0;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   MAIN
========================================= */

.brand-category-showcase-main {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    min-height: 560px;

    background: #FFFFFF;
}


/* =========================================
   IMAGE
========================================= */

.brand-category-showcase-image {
    position: relative;

    min-height: 560px;

    overflow: hidden;
}

.brand-category-showcase-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.brand-category-image-overlay {
    position: absolute;

    left: 30px;
    bottom: 30px;

    padding: 20px 24px;

    display: flex;
    flex-direction: column;

    background: #172B4D;
}

.brand-category-image-overlay span {
    margin-bottom: 5px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

.brand-category-image-overlay strong {
    color: #FFFFFF;

    font-size: 15px;
    font-weight: 800;
}


/* =========================================
   CATEGORY LIST
========================================= */

.brand-category-list {
    padding: 25px 35px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-category-item {
    min-height: 115px;

    display: grid;
    grid-template-columns: 55px 1fr 30px;

    align-items: center;

    gap: 20px;

    border-bottom: 1px solid #E2E6EA;

    transition: all 0.3s ease;
}

.brand-category-item:first-child {
    border-top: 1px solid #E2E6EA;
}

.brand-category-item:hover {
    padding-left: 12px;
}

.brand-category-item-number {
    color: #F28C28;

    font-size: 12px;
    font-weight: 800;
}

.brand-category-item-content h3 {
    margin: 0 0 7px;

    color: #172B4D;

    font-size: 16px;
    font-weight: 750;
}

.brand-category-item-content p {
    max-width: 420px;

    margin: 0;

    color: #727982;

    font-size: 12px;
    line-height: 1.6;
}

.brand-category-item > i {
    color: #172B4D;

    font-size: 13px;

    transition: all 0.3s ease;
}

.brand-category-item:hover > i {
    color: #F28C28;
    transform: translate(3px, -3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 850px) {

    .brand-category-showcase {
        padding: 85px 20px;
    }

    .brand-category-showcase-header h2 {
        font-size: 35px;
    }

    .brand-category-showcase-main {
        grid-template-columns: 1fr;
    }

    .brand-category-showcase-image {
        min-height: 420px;
    }

    .brand-category-list {
        padding: 20px 30px 35px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .brand-category-showcase {
        padding: 65px 16px;
    }

    .brand-category-showcase-header {
        margin-bottom: 40px;
    }

    .brand-category-showcase-header h2 {
        font-size: 30px;
    }

    .brand-category-showcase-header p {
        font-size: 13px;
    }

    .brand-category-showcase-image {
        min-height: 320px;
    }

    .brand-category-image-overlay {
        left: 15px;
        bottom: 15px;

        padding: 15px 18px;
    }

    .brand-category-image-overlay strong {
        font-size: 13px;
    }

    .brand-category-list {
        padding: 15px 20px 25px;
    }

    .brand-category-item {
        min-height: 105px;

        grid-template-columns: 35px 1fr 20px;

        gap: 12px;
    }

    .brand-category-item:hover {
        padding-left: 0;
    }

    .brand-category-item-content h3 {
        font-size: 14px;
    }

    .brand-category-item-content p {
        font-size: 11px;
    }

}


/* =========================================
   COMPATIBILITY PAGE BANNER
========================================= */

.compatibility-banner {
    position: relative;
    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 20px;

    background-image: url("../images/josh-berquist-_4sWbzH5fp8-unsplash.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
    overflow: hidden;
}


/* Overlay */

.compatibility-banner-overlay {
    position: absolute;
    inset: 0;

    background: rgba(23, 43, 77, 0.80);

    z-index: 1;
}


/* Content */

.compatibility-banner-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 800px;

    margin: 0 auto;
}


/* Label */

.compatibility-banner-content span {
    display: inline-block;

    margin-bottom: 16px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}


/* Title */

.compatibility-banner-content h1 {
    margin: 0 0 18px;

    color: #FFFFFF;

    font-size: 50px;
    line-height: 1.15;

    font-weight: 800;
}


/* Description */

.compatibility-banner-content p {
    max-width: 650px;

    margin: 0 auto;

    color: #E5EAF0;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .compatibility-banner {
        min-height: 390px;
        padding: 80px 20px;
    }

    .compatibility-banner-content h1 {
        font-size: 42px;
    }

    .compatibility-banner-content p {
        font-size: 14px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .compatibility-banner {
        min-height: 360px;
        padding: 70px 18px;
    }

    .compatibility-banner-content span {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .compatibility-banner-content h1 {
        font-size: 32px;
    }

    .compatibility-banner-content p {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* =========================================
   COMPATIBILITY FINDER
========================================= */

.compatibility-finder {
    width: 100%;
    padding: 100px 20px;
    background: #FFFFFF;
}

.compatibility-finder-inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;

    align-items: center;
}


/* =========================
   CONTENT
========================= */

.compatibility-finder-content {
    max-width: 480px;
}

.compatibility-finder-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.compatibility-finder-content h2 {
    margin: 0 0 18px;

    color: #172B4D;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 800;
}

.compatibility-finder-content p {
    margin: 0;

    color: #727982;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   FORM BOX
========================= */

.compatibility-finder-form {
    padding: 35px;

    background: #F7F8FA;

    border: 1px solid #E5E8EC;
    border-radius: 8px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 22px;
}


/* =========================
   FORM GROUP
========================= */

.compatibility-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compatibility-form-group label {
    color: #29313A;

    font-size: 13px;
    font-weight: 700;
}

.compatibility-form-group select {
    width: 100%;
    height: 50px;

    padding: 0 15px;

    background: #FFFFFF;

    color: #29313A;

    border: 1px solid #D9DEE4;
    border-radius: 5px;

    outline: none;

    font-size: 14px;

    cursor: pointer;

    transition: border-color 0.3s ease;
}

.compatibility-form-group select:focus {
    border-color: #F28C28;
}


/* =========================
   BUTTON
========================= */

.compatibility-find-btn {
    grid-column: 1 / -1;

    width: 100%;
    min-height: 52px;

    border: 2px solid #F28C28;
    border-radius: 5px;

    background: #F28C28;
    color: #FFFFFF;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    transition: all 0.3s ease;
}

.compatibility-find-btn:hover {
    background: #172B4D;
    border-color: #172B4D;
}

.compatibility-find-btn i {
    transition: transform 0.3s ease;
}

.compatibility-find-btn:hover i {
    transform: translateX(4px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .compatibility-finder {
        padding: 80px 20px;
    }

    .compatibility-finder-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .compatibility-finder-content {
        max-width: 700px;
        text-align: center;
        margin: 0 auto;
    }

    .compatibility-finder-content p {
        max-width: 600px;
        margin: 0 auto;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .compatibility-finder {
        padding: 65px 15px;
    }

    .compatibility-finder-content h2 {
        font-size: 30px;
    }

    .compatibility-finder-content p {
        font-size: 14px;
    }

    .compatibility-finder-form {
        padding: 22px;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .compatibility-find-btn {
        grid-column: auto;
    }
}

/* =========================================
   COMPATIBILITY - HOW IT WORKS
========================================= */

.compatibility-how {
    width: 100%;
    padding: 100px 20px;

    background: #F7F8FA;
}

.compatibility-how-inner {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.compatibility-how-header {
    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}

.compatibility-how-header span {
    display: inline-block;

    margin-bottom: 14px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.compatibility-how-header h2 {
    margin: 0 0 16px;

    color: #172B4D;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 800;
}

.compatibility-how-header p {
    margin: 0;

    color: #727982;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   STEPS
========================= */

.compatibility-how-steps {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 0;
}


/* =========================
   STEP
========================= */

.compatibility-how-step {
    position: relative;

    padding: 20px 45px;

    text-align: center;

    border-right: 1px solid #DDE2E7;
}

.compatibility-how-step:last-child {
    border-right: none;
}


/* Number */

.compatibility-step-number {
    margin-bottom: 20px;

    color: #D8DDE3;

    font-size: 38px;
    line-height: 1;

    font-weight: 800;
}


/* Icon */

.compatibility-step-icon {
    width: 64px;
    height: 64px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #172B4D;
    color: #FFFFFF;

    border-radius: 50%;

    font-size: 22px;

    transition: all 0.3s ease;
}

.compatibility-how-step:hover .compatibility-step-icon {
    background: #F28C28;

    transform: translateY(-5px);
}


/* Title */

.compatibility-how-step h3 {
    margin: 0 0 12px;

    color: #172B4D;

    font-size: 18px;
    font-weight: 750;
}


/* Description */

.compatibility-how-step p {
    max-width: 260px;

    margin: 0 auto;

    color: #727982;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   TABLET
========================= */

@media (max-width: 850px) {

    .compatibility-how {
        padding: 80px 20px;
    }

    .compatibility-how-steps {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .compatibility-how-step {
        padding: 25px 30px;

        border-right: none;
        border-bottom: 1px solid #DDE2E7;
    }

    .compatibility-how-step:last-child {
        border-bottom: none;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .compatibility-how {
        padding: 65px 18px;
    }

    .compatibility-how-header {
        margin-bottom: 40px;
    }

    .compatibility-how-header h2 {
        font-size: 30px;
    }

    .compatibility-how-header p {
        font-size: 14px;
    }

    .compatibility-how-step {
        padding: 20px 10px;
    }

    .compatibility-step-number {
        font-size: 32px;
    }

    .compatibility-step-icon {
        width: 58px;
        height: 58px;
    }
}/* =========================================
   COMPATIBILITY - PART CATEGORIES
========================================= */

.compatibility-categories {
    width: 100%;
    padding: 100px 20px;

    background: #FFFFFF;
}

.compatibility-categories-inner {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.compatibility-categories-header {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.compatibility-categories-header span {
    display: inline-block;

    margin-bottom: 14px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.compatibility-categories-header h2 {
    margin: 0 0 16px;

    color: #172B4D;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 800;
}

.compatibility-categories-header p {
    margin: 0;

    color: #727982;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   CATEGORY LIST
========================= */

.compatibility-category-list {
    width: 100%;

    border-top: 1px solid #DDE2E7;
}


/* =========================
   CATEGORY ITEM
========================= */

.compatibility-category-item {
    position: relative;

    width: 100%;

    min-height: 125px;

    padding: 25px 20px;

    display: grid;

    grid-template-columns: 75px 1fr 40px;

    align-items: center;

    gap: 25px;

    border-bottom: 1px solid #DDE2E7;

    text-decoration: none;

    transition: all 0.3s ease;
}

.compatibility-category-item:hover {
    padding-left: 30px;

    background: #F7F8FA;
}


/* =========================
   ICON
========================= */

.compatibility-category-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #172B4D;
    color: #FFFFFF;

    border-radius: 6px;

    font-size: 22px;

    transition: all 0.3s ease;
}

.compatibility-category-item:hover .compatibility-category-icon {
    background: #F28C28;
}


/* =========================
   CONTENT
========================= */

.compatibility-category-content small {
    display: block;

    margin-bottom: 4px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;
}

.compatibility-category-content h3 {
    margin: 0 0 5px;

    color: #172B4D;

    font-size: 19px;
    font-weight: 750;
}

.compatibility-category-content p {
    margin: 0;

    color: #727982;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================
   ARROW
========================= */

.compatibility-category-arrow {
    color: #172B4D;

    font-size: 16px;

    transition: all 0.3s ease;
}

.compatibility-category-item:hover .compatibility-category-arrow {
    color: #F28C28;

    transform: translateX(5px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 768px) {

    .compatibility-categories {
        padding: 80px 20px;
    }

    .compatibility-categories-header h2 {
        font-size: 34px;
    }

    .compatibility-category-item {
        grid-template-columns: 65px 1fr 30px;

        gap: 18px;
    }

    .compatibility-category-icon {
        width: 55px;
        height: 55px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .compatibility-categories {
        padding: 65px 15px;
    }

    .compatibility-categories-header {
        margin-bottom: 40px;
    }

    .compatibility-categories-header h2 {
        font-size: 29px;
    }

    .compatibility-categories-header p {
        font-size: 14px;
    }

    .compatibility-category-item {
        min-height: 110px;

        padding: 20px 10px;

        grid-template-columns: 50px 1fr 20px;

        gap: 14px;
    }

    .compatibility-category-item:hover {
        padding-left: 15px;
    }

    .compatibility-category-icon {
        width: 48px;
        height: 48px;

        font-size: 18px;
    }

    .compatibility-category-content h3 {
        font-size: 16px;
    }

    .compatibility-category-content p {
        font-size: 12px;
    }

    .compatibility-category-arrow {
        font-size: 13px;
    }
}

/* =========================================
   COMPATIBILITY - BENEFITS
========================================= */

.compatibility-benefits {
    width: 100%;
    padding: 100px 20px;

    background: #172B4D;
}

.compatibility-benefits-inner {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}


/* =========================
   INTRO
========================= */

.compatibility-benefits-intro span {
    display: inline-block;

    margin-bottom: 16px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.compatibility-benefits-intro h2 {
    margin: 0 0 20px;

    color: #FFFFFF;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 800;
}

.compatibility-benefits-intro p {
    max-width: 500px;

    margin: 0 0 30px;

    color: #D5DCE5;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   BUTTON
========================= */

.compatibility-benefits-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 24px;

    background: #F28C28;
    color: #FFFFFF;

    border: 2px solid #F28C28;
    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.compatibility-benefits-btn:hover {
    background: #FFFFFF;
    color: #172B4D;
    border-color: #FFFFFF;
}


/* =========================
   BENEFIT LIST
========================= */

.compatibility-benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


/* =========================
   BENEFIT
========================= */

.compatibility-benefit {
    min-height: 180px;

    padding: 28px 25px;

    display: flex;

    gap: 18px;

    align-items: flex-start;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.compatibility-benefit:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}


/* =========================
   ICON
========================= */

.compatibility-benefit-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(242, 140, 40, 0.12);
    color: #F28C28;

    border-radius: 50%;

    font-size: 18px;
}


/* =========================
   CONTENT
========================= */

.compatibility-benefit h3 {
    margin: 2px 0 9px;

    color: #FFFFFF;

    font-size: 17px;
    font-weight: 700;
}

.compatibility-benefit p {
    margin: 0;

    color: #AAB8C8;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .compatibility-benefits {
        padding: 80px 20px;
    }

    .compatibility-benefits-inner {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .compatibility-benefits-intro {
        text-align: center;
    }

    .compatibility-benefits-intro p {
        margin-left: auto;
        margin-right: auto;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .compatibility-benefits {
        padding: 65px 18px;
    }

    .compatibility-benefits-intro h2 {
        font-size: 31px;
    }

    .compatibility-benefits-intro p {
        font-size: 14px;
    }

    .compatibility-benefits-list {
        grid-template-columns: 1fr;
    }

    .compatibility-benefit {
        min-height: auto;

        padding: 25px 10px;
    }

    .compatibility-benefit:nth-child(odd) {
        border-right: none;
    }
}

/* =========================================
   COMPATIBILITY FAQ
========================================= */

.compatibility-faq {
    width: 100%;
    padding: 100px 20px;
    background: #F7F8FA;
}

.compatibility-faq-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.compatibility-faq-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.compatibility-faq-header span {
    display: inline-block;
    margin-bottom: 14px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.compatibility-faq-header h2 {
    margin: 0 0 15px;

    color: #172B4D;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.compatibility-faq-header p {
    margin: 0;

    color: #727982;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   FAQ LIST
========================= */

.compatibility-faq-list {
    width: 100%;
}


/* =========================
   FAQ ITEM
========================= */

.compatibility-faq-item {
    margin-bottom: 12px;

    background: #FFFFFF;

    border: 1px solid #E1E5EA;
    border-radius: 6px;

    overflow: hidden;

    transition: border-color 0.3s ease;
}

.compatibility-faq-item:hover {
    border-color: #F28C28;
}


/* =========================
   QUESTION
========================= */

.compatibility-faq-item summary {
    min-height: 70px;

    padding: 20px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #172B4D;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    list-style: none;
}

.compatibility-faq-item summary::-webkit-details-marker {
    display: none;
}

.compatibility-faq-item summary i {
    flex-shrink: 0;

    color: #F28C28;

    font-size: 14px;

    transition: transform 0.3s ease;
}

.compatibility-faq-item[open] summary i {
    transform: rotate(45deg);
}


/* =========================
   ANSWER
========================= */

.compatibility-faq-answer {
    padding: 0 25px 22px;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .compatibility-faq {
        padding: 65px 15px;
    }

    .compatibility-faq-header {
        margin-bottom: 35px;
    }

    .compatibility-faq-header h2 {
        font-size: 30px;
    }

    .compatibility-faq-header p {
        font-size: 14px;
    }

    .compatibility-faq-item summary {
        min-height: 62px;
        padding: 18px;
        font-size: 14px;
    }

    .compatibility-faq-answer {
        padding: 0 18px 20px;
        font-size: 13px;
    }
}

/* =========================================
   COMPATIBILITY FINAL CTA
========================================= */

.compatibility-final-cta {
    width: 100%;
    padding: 85px 20px;

    background: #172B4D;
}

.compatibility-final-cta-inner {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


/* =========================
   CONTENT
========================= */

.compatibility-final-cta-content {
    max-width: 650px;
}

.compatibility-final-cta-content span {
    display: inline-block;

    margin-bottom: 14px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.compatibility-final-cta-content h2 {
    margin: 0 0 15px;

    color: #FFFFFF;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 800;
}

.compatibility-final-cta-content p {
    max-width: 600px;

    margin: 0;

    color: #D5DCE5;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   ACTION
========================= */

.compatibility-final-cta-action {
    flex-shrink: 0;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 15px;
}


/* Button */

.compatibility-final-cta-btn {
    min-width: 220px;
    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    background: #F28C28;
    color: #FFFFFF;

    border: 2px solid #F28C28;
    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.compatibility-final-cta-btn:hover {
    background: #FFFFFF;
    color: #172B4D;
    border-color: #FFFFFF;
}


/* Link */

.compatibility-final-cta-link {
    color: #D5DCE5;

    font-size: 13px;
    font-weight: 600;
    
    text-decoration: none;
    text-underline-offset: 4px;

    transition: color 0.3s ease;
}

.compatibility-final-cta-link:hover {
    color: #F28C28;
}


/* =========================
   TABLET
========================= */

@media (max-width: 800px) {

    .compatibility-final-cta {
        padding: 70px 20px;
    }

    .compatibility-final-cta-inner {
        flex-direction: column;

        text-align: center;
    }

    .compatibility-final-cta-content {
        max-width: 650px;
    }

    .compatibility-final-cta-content p {
        margin: 0 auto;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .compatibility-final-cta {
        padding: 60px 18px;
    }

    .compatibility-final-cta-content h2 {
        font-size: 30px;
    }

    .compatibility-final-cta-content p {
        font-size: 14px;
    }

    .compatibility-final-cta-btn {
        width: 100%;
        min-width: 0;
    }

    .compatibility-final-cta-action {
        width: 100%;
    }
}


/* =========================================
   CONTACT PAGE BANNER
========================================= */

.contact-page-banner {
    position: relative;
    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 20px;

    background-image: url("images/contact-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
    overflow: hidden;
}


/* =========================================
   OVERLAY
========================================= */

.contact-page-banner-overlay {
    position: absolute;
    inset: 0;

    background: rgba(23, 43, 77, 0.80);

    z-index: 1;
}


/* =========================================
   CONTENT
========================================= */

.contact-page-banner-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;
}


/* =========================================
   LABEL
========================================= */

.contact-page-banner-label {
    display: inline-block;

    margin-bottom: 16px;

    color: #F28C28;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================================
   TITLE
========================================= */

.contact-page-banner-content h1 {
    margin: 0 0 20px;

    color: #FFFFFF;

    font-size: 50px;
    line-height: 1.15;
    font-weight: 800;
}


/* =========================================
   DESCRIPTION
========================================= */

.contact-page-banner-content p {
    max-width: 680px;

    margin: 0 auto;

    color: #E5EAF0;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .contact-page-banner {
        min-height: 390px;
        padding: 80px 20px;
    }

    .contact-page-banner-content h1 {
        font-size: 42px;
    }

    .contact-page-banner-content p {
        font-size: 14px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 500px) {

    .contact-page-banner {
        min-height: 360px;
        padding: 70px 18px;
    }

    .contact-page-banner-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .contact-page-banner-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .contact-page-banner-content p {
        font-size: 13px;
        line-height: 1.7;
    }

}
/* =========================================
   CONTACT INFORMATION SECTION
========================================= */

.contact-info-section {
    width: 100%;
    padding: 110px 20px;
    background: #FFFFFF;
}

.contact-info-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;

    align-items: center;
}


/* =========================================
   LOCATION CARD
========================================= */

.contact-location-card {
    background: #F5F7F9;
    border-radius: 18px;
    overflow: hidden;
}

.contact-location-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.contact-location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.contact-location-content {
    padding: 38px 40px 42px;
}


/* =========================================
   LABEL
========================================= */

.contact-info-label {
    display: inline-block;
    margin-bottom: 14px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}


/* =========================================
   HEADINGS
========================================= */

.contact-location-content h2,
.contact-details-area h2 {
    margin: 0 0 16px;

    color: #172B4D;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-location-content > p {
    margin: 0 0 28px;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   ADDRESS
========================================= */

.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    margin-bottom: 28px;
}

.contact-address-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #172B4D;
    color: #F28C28;

    border-radius: 50%;

    font-size: 17px;
}

.contact-address h4 {
    margin: 2px 0 6px;

    color: #172B4D;

    font-size: 15px;
    font-weight: 700;
}

.contact-address p {
    margin: 0;

    color: #727982;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   DIRECTION BUTTON
========================================= */

.contact-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 20px;

    background: #172B4D;
    color: #FFFFFF;

    text-decoration: none;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.contact-direction-btn:hover {
    background: #F28C28;
    color: #FFFFFF;
}

.contact-direction-btn i {
    transition: transform 0.3s ease;
}

.contact-direction-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details-intro {
    max-width: 500px;

    margin: 0 0 35px;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   DETAIL LIST
========================================= */

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 17px;

    padding-bottom: 20px;

    border-bottom: 1px solid #E4E7EB;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFF3E7;
    color: #F28C28;

    border-radius: 10px;

    font-size: 17px;
}

.contact-detail-item span {
    display: block;

    margin-bottom: 5px;

    color: #727982;

    font-size: 12px;
}

.contact-detail-item a,
.contact-detail-item strong {
    display: block;

    color: #172B4D;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================
   QUICK HELP
========================================= */

.contact-quick-help {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 30px;
    padding: 20px;

    background: #172B4D;

    border-radius: 10px;
}

.contact-quick-help-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F28C28;
    color: #FFFFFF;

    border-radius: 50%;

    font-size: 16px;
}

.contact-quick-help h4 {
    margin: 0 0 5px;

    color: #FFFFFF;

    font-size: 14px;
}

.contact-quick-help p {
    margin: 0;

    color: #D5DCE5;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .contact-info-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-location-image {
        height: 280px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-info-section {
        padding: 80px 18px;
    }

    .contact-location-content {
        padding: 30px 24px 32px;
    }

    .contact-location-content h2,
    .contact-details-area h2 {
        font-size: 28px;
    }

    .contact-location-image {
        height: 230px;
    }

    .contact-detail-item {
        gap: 13px;
    }

    .contact-detail-icon {
        width: 44px;
        height: 44px;
    }

    .contact-quick-help {
        align-items: flex-start;
    }

}

/* =========================================
   BULK ORDER SECTION
========================================= */

.bulk-order-section {
    width: 100%;
    padding: 110px 20px;
    background: #F5F7F9;
}

.bulk-order-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.bulk-order-content {
    max-width: 470px;
}

.bulk-order-label {
    display: inline-block;
    margin-bottom: 15px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.bulk-order-content h2 {
    margin: 0 0 18px;

    color: #172B4D;

    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.bulk-order-content > p {
    margin: 0;

    color: #727982;

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================
   POINTS
========================================= */

.bulk-order-points {
    display: flex;
    flex-direction: column;
    gap: 16px;

    margin-top: 35px;
}

.bulk-order-point {
    display: flex;
    align-items: center;
    gap: 13px;
}

.bulk-order-point i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFF0DF;
    color: #F28C28;

    border-radius: 50%;

    font-size: 11px;
}

.bulk-order-point span {
    color: #29313A;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   FORM CARD
========================================= */

.bulk-order-form-card {
    padding: 42px;

    background: #FFFFFF;

    border: 1px solid #E4E7EB;
    border-radius: 16px;

    box-shadow: 0 15px 40px rgba(23, 43, 77, 0.06);
}

.bulk-order-form-header {
    margin-bottom: 28px;
}

.bulk-order-form-header h3 {
    margin: 0 0 8px;

    color: #172B4D;

    font-size: 24px;
    font-weight: 800;
}

.bulk-order-form-header p {
    margin: 0;

    color: #727982;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   FORM ROW
========================================= */

.bulk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.bulk-form-group {
    margin-bottom: 20px;
}

.bulk-form-group label {
    display: block;
    margin-bottom: 8px;

    color: #29313A;

    font-size: 12px;
    font-weight: 700;
}

.bulk-form-group input,
.bulk-form-group select,
.bulk-form-group textarea {
    width: 100%;

    padding: 13px 14px;

    background: #F8F9FB;
    color: #29313A;

    border: 1px solid #E1E5E9;
    border-radius: 7px;

    outline: none;

    font-family: inherit;
    font-size: 13px;

    transition: all 0.3s ease;
}

.bulk-form-group input,
.bulk-form-group select {
    height: 46px;
}

.bulk-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.bulk-form-group input:focus,
.bulk-form-group select:focus,
.bulk-form-group textarea:focus {
    border-color: #F28C28;
    background: #FFFFFF;
}

.bulk-form-group input::placeholder,
.bulk-form-group textarea::placeholder {
    color: #9AA1A9;
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.bulk-submit-btn {
    width: 100%;
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border: none;
    border-radius: 7px;

    background: #172B4D;
    color: #FFFFFF;

    cursor: pointer;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.bulk-submit-btn:hover {
    background: #F28C28;
}

.bulk-submit-btn i {
    transition: transform 0.3s ease;
}

.bulk-submit-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .bulk-order-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .bulk-order-content {
        max-width: 650px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .bulk-order-section {
        padding: 80px 18px;
    }

    .bulk-order-content h2 {
        font-size: 30px;
    }

    .bulk-order-form-card {
        padding: 28px 20px;
    }

    .bulk-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

/* =========================================
   CONTACT SUPPORT SECTION
========================================= */

.contact-support-section {
    width: 100%;
    padding: 105px 20px;
    background: #FFFFFF;
}

.contact-support-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.contact-support-header {
    max-width: 650px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-support-header > span {
    display: inline-block;
    margin-bottom: 14px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.contact-support-header h2 {
    margin: 0 0 16px;

    color: #172B4D;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-support-header p {
    margin: 0;

    color: #727982;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* =========================================
   CARD
========================================= */

.contact-support-card {
    position: relative;

    min-height: 280px;
    padding: 32px 25px;

    background: #F5F7F9;

    border-radius: 12px;
    overflow: hidden;

    transition: transform 0.3s ease,
                background 0.3s ease;
}

.contact-support-card:hover {
    transform: translateY(-7px);
    background: #172B4D;
}


/* =========================================
   NUMBER
========================================= */

.contact-support-number {
    position: absolute;
    top: 18px;
    right: 20px;

    color: #DDE2E8;

    font-size: 12px;
    font-weight: 800;
}

.contact-support-card:hover .contact-support-number {
    color: rgba(255, 255, 255, 0.35);
}


/* =========================================
   ICON
========================================= */

.contact-support-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    background: #FFF0DF;
    color: #F28C28;

    border-radius: 10px;

    font-size: 18px;

    transition: all 0.3s ease;
}

.contact-support-card:hover .contact-support-icon {
    background: #F28C28;
    color: #FFFFFF;
}


/* =========================================
   CARD CONTENT
========================================= */

.contact-support-card h3 {
    margin: 0 0 12px;

    color: #172B4D;

    font-size: 17px;
    font-weight: 800;

    transition: color 0.3s ease;
}

.contact-support-card p {
    margin: 0;

    color: #727982;

    font-size: 13px;
    line-height: 1.8;

    transition: color 0.3s ease;
}

.contact-support-card:hover h3 {
    color: #FFFFFF;
}

.contact-support-card:hover p {
    color: #D5DCE5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .contact-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-support-section {
        padding: 80px 18px;
    }

    .contact-support-header {
        margin-bottom: 40px;
    }

    .contact-support-header h2 {
        font-size: 30px;
    }

    .contact-support-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-support-card {
        min-height: auto;
        padding: 28px 24px;
    }

}

/* =========================================
   STORE LOCATION MAP
========================================= */

.contact-map-section {
    width: 100%;
    padding: 105px 20px;

    background: #F5F7F9;
}

.contact-map-container {
    width: 100%;
    max-width: 1200px;
    min-height: 480px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    background: #FFFFFF;

    border-radius: 16px;
    overflow: hidden;

    border: 1px solid #E4E7EB;
}


/* =========================================
   LEFT CONTENT
========================================= */

.contact-map-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px 50px;
}

.contact-map-label {
    display: inline-block;

    margin-bottom: 14px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.contact-map-content h2 {
    margin: 0 0 18px;

    color: #172B4D;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-map-content > p {
    max-width: 430px;

    margin: 0 0 30px;

    color: #727982;

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================
   ADDRESS
========================================= */

.contact-map-address {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-bottom: 30px;
}

.contact-map-address-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFF0DF;
    color: #F28C28;

    border-radius: 10px;

    font-size: 17px;
}

.contact-map-address span {
    display: block;

    margin-bottom: 5px;

    color: #727982;

    font-size: 11px;
    font-weight: 600;
}

.contact-map-address strong {
    display: block;

    color: #172B4D;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   BUTTON
========================================= */

.contact-map-btn {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 21px;

    background: #172B4D;
    color: #FFFFFF;

    text-decoration: none;

    border-radius: 7px;

    font-size: 13px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.contact-map-btn:hover {
    background: #F28C28;
}

.contact-map-btn i {
    transition: transform 0.3s ease;
}

.contact-map-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   MAP
========================================= */

.contact-map-frame {
    width: 100%;
    min-height: 480px;

    overflow: hidden;
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .contact-map-container {
        grid-template-columns: 1fr;
    }

    .contact-map-content {
        padding: 50px 40px;
    }

    .contact-map-frame {
        min-height: 400px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-map-section {
        padding: 80px 18px;
    }

    .contact-map-content {
        padding: 35px 25px;
    }

    .contact-map-content h2 {
        font-size: 29px;
    }

    .contact-map-content > p {
        font-size: 13px;
    }

    .contact-map-frame {
        min-height: 330px;
    }

}

/* =========================================
   LOGIN V2
========================================= */

.login-v2-section {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 70px 20px;

    background: #F5F7F9;
}

.login-v2-wrapper {
    width: 100%;
    max-width: 1100px;

    min-height: 650px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #FFFFFF;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 25px 70px rgba(23, 43, 77, 0.12);
}


/* =========================================
   VISUAL SIDE
========================================= */

.login-v2-visual {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: flex-end;

    padding: 55px;

    background-image: url("../images/joey-banks-YApiWyp0lqo-unsplash.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-v2-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(23, 43, 77, 0.25),
        rgba(23, 43, 77, 0.94)
    );
}

.login-v2-visual-content {
    position: relative;
    z-index: 2;

    max-width: 430px;
}

.login-v2-logo {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: #F28C28;
    color: #FFFFFF;

    border-radius: 12px;

    font-size: 20px;
}

.login-v2-visual-content > span {
    display: block;

    margin-bottom: 12px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.login-v2-visual-content h1 {
    margin: 0 0 18px;

    color: #FFFFFF;

    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
}

.login-v2-visual-content p {
    margin: 0;

    color: #DCE2E9;

    font-size: 14px;
    line-height: 1.8;
}

.login-v2-stat {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-top: 30px;
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.login-v2-stat strong {
    color: #FFFFFF;

    font-size: 24px;
    font-weight: 800;
}

.login-v2-stat span {
    color: #DCE2E9;

    font-size: 11px;
}


/* =========================================
   FORM SIDE
========================================= */

.login-v2-form-side {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 55px;
}

.login-v2-form {
    width: 100%;
    max-width: 390px;
}

.login-v2-mobile-logo {
    display: none;
}

.login-v2-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.login-v2-form h2 {
    margin: 0 0 8px;

    color: #172B4D;

    font-size: 34px;
    font-weight: 800;
}

.login-v2-subtitle {
    margin: 0 0 35px;

    color: #727982;

    font-size: 13px;
}


/* =========================================
   FIELD
========================================= */

.login-v2-field {
    margin-bottom: 22px;
}

.login-v2-field label {
    display: block;

    margin-bottom: 8px;

    color: #29313A;

    font-size: 12px;
    font-weight: 700;
}

.login-v2-password-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-v2-password-head label {
    margin-bottom: 8px;
}

.login-v2-password-head a {
    margin-bottom: 8px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 600;

    text-decoration: none;
}


/* =========================================
   INPUT
========================================= */

.login-v2-input {
    position: relative;
}

.login-v2-input input {
    width: 100%;
    height: 52px;

    padding: 0 45px 0 15px;

    background: #F8F9FB;

    color: #29313A;

    border: 1px solid #E1E5E9;
    border-radius: 8px;

    outline: none;

    font-family: inherit;
    font-size: 13px;

    transition: 0.3s ease;
}

.login-v2-input input:focus {
    background: #FFFFFF;

    border-color: #F28C28;

    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.08);
}

.login-v2-input i {
    position: absolute;

    right: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #8A929C;

    font-size: 14px;

    pointer-events: none;
}


/* =========================================
   CHECKBOX
========================================= */

.login-v2-check {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 25px;

    cursor: pointer;
}

.login-v2-check input {
    width: 14px;
    height: 14px;

    accent-color: #F28C28;
}

.login-v2-check span {
    color: #727982;

    font-size: 11px;
}


/* =========================================
   BUTTON
========================================= */

.login-v2-button {
    width: 100%;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border: none;
    border-radius: 8px;

    background: #172B4D;
    color: #FFFFFF;

    cursor: pointer;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.login-v2-button:hover {
    background: #F28C28;
}

.login-v2-button i {
    transition: transform 0.3s ease;
}

.login-v2-button:hover i {
    transform: translateX(4px);
}


/* =========================================
   DIVIDER
========================================= */

.login-v2-divider {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 30px 0;
}

.login-v2-divider::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 1px;

    background: #E4E7EB;
}

.login-v2-divider span {
    position: relative;

    padding: 0 12px;

    background: #FFFFFF;

    color: #9AA1A9;

    font-size: 9px;
    font-weight: 700;
}


/* =========================================
   REGISTER
========================================= */

.login-v2-register {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 5px;

    font-size: 11px;
}

.login-v2-register span {
    color: #727982;
}

.login-v2-register a {
    color: #F28C28;

    font-weight: 700;

    text-decoration: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .login-v2-wrapper {
        grid-template-columns: 1fr;

        max-width: 600px;
    }

    .login-v2-visual {
        min-height: 360px;

        padding: 40px;
    }

    .login-v2-visual-content h1 {
        font-size: 38px;
    }

    .login-v2-form-side {
        padding: 45px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .login-v2-section {
        padding: 25px 15px;
    }

    .login-v2-wrapper {
        border-radius: 14px;
    }

    .login-v2-visual {
        min-height: 330px;

        padding: 30px 25px;
    }

    .login-v2-visual-content h1 {
        font-size: 32px;
    }

    .login-v2-visual-content p {
        font-size: 12px;
    }

    .login-v2-form-side {
        padding: 35px 22px;
    }

    .login-v2-form h2 {
        font-size: 29px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .login-v2-visual {
        min-height: 300px;
    }

    .login-v2-visual-content h1 {
        font-size: 28px;
    }

}

/* =========================================
   SIGNUP PAGE
========================================= */

.signup-v1-section {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 70px 20px;

    background: #F5F7F9;

    box-sizing: border-box;
}


/* =========================================
   MAIN CARD
========================================= */

.signup-v1-card {
    width: 100%;
    max-width: 1120px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    background: #FFFFFF;

    border: 1px solid #E4E7EB;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 25px 65px rgba(23, 43, 77, 0.10);
}


/* =========================================
   LEFT IMAGE PANEL
========================================= */

.signup-v1-info {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: flex-end;

    padding: 55px;

    background-image:
        url("../images/josh-berquist-_4sWbzH5fp8-unsplash.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.signup-v1-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(23, 43, 77, 0.20),
            rgba(23, 43, 77, 0.95)
        );

    z-index: 1;
}


/* =========================================
   LEFT CONTENT
========================================= */

.signup-v1-info-content {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 430px;
}


/* =========================================
   ICON
========================================= */

.signup-v1-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: #F28C28;

    color: #FFFFFF;

    border-radius: 12px;

    font-size: 19px;
}


/* =========================================
   LEFT LABEL
========================================= */

.signup-v1-label {
    display: block;

    margin-bottom: 13px;

    color: #F28C28;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


/* =========================================
   LEFT HEADING
========================================= */

.signup-v1-info h1 {
    margin: 0 0 20px;

    color: #FFFFFF;

    font-size: 43px;

    line-height: 1.12;

    font-weight: 800;
}


/* =========================================
   LEFT DESCRIPTION
========================================= */

.signup-v1-info-content > p {
    margin: 0;

    color: #D5DCE5;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================
   POINTS
========================================= */

.signup-v1-points {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 30px;
}


.signup-v1-point {
    display: flex;

    align-items: center;

    gap: 10px;
}


.signup-v1-point i {
    color: #F28C28;

    font-size: 14px;

    flex-shrink: 0;
}


.signup-v1-point span {
    color: #E5EAF0;

    font-size: 12px;
}


/* =========================================
   RIGHT FORM AREA
========================================= */

.signup-v1-form-side {
    display: flex;

    align-items: center;

    justify-content: center;

    padding: 55px 60px;

    box-sizing: border-box;
}


/* =========================================
   FORM
========================================= */

.signup-v1-form {
    width: 100%;

    max-width: 500px;
}


/* =========================================
   FORM LABEL
========================================= */

.signup-v1-form-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #F28C28;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


/* =========================================
   FORM HEADING
========================================= */

.signup-v1-form h2 {
    margin: 0 0 8px;

    color: #172B4D;

    font-size: 32px;

    line-height: 1.2;

    font-weight: 800;
}


/* =========================================
   SUBTITLE
========================================= */

.signup-v1-subtitle {
    margin: 0 0 28px;

    color: #727982;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   FIELD
========================================= */

.signup-v1-field {
    width: 100%;

    margin-bottom: 17px;
}


.signup-v1-field label {
    display: block;

    margin-bottom: 7px;

    color: #29313A;

    font-size: 11px;

    font-weight: 700;
}


/* =========================================
   INPUT WRAPPER
========================================= */

.signup-v1-input {
    position: relative;

    width: 100%;
}


/* =========================================
   INPUT
========================================= */

.signup-v1-input input {
    width: 100%;

    height: 47px;

    padding: 0 43px 0 14px;

    background: #F8F9FB;

    color: #29313A;

    border: 1px solid #E1E5E9;

    border-radius: 7px;

    outline: none;

    box-sizing: border-box;

    font-family: inherit;

    font-size: 12px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.signup-v1-input input:focus {
    background: #FFFFFF;

    border-color: #F28C28;

    box-shadow:
        0 0 0 3px rgba(242, 140, 40, 0.08);
}


.signup-v1-input input::placeholder {
    color: #9AA1A9;
}


/* =========================================
   INPUT ICON
========================================= */

.signup-v1-input i {
    position: absolute;

    right: 14px;

    top: 50%;

    transform: translateY(-50%);

    color: #8A929C;

    font-size: 13px;

    pointer-events: none;
}


/* =========================================
   PASSWORD ROW
========================================= */

.signup-v1-password-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


/* =========================================
   TERMS
========================================= */

.signup-v1-terms {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin: 3px 0 22px;

    cursor: pointer;
}


.signup-v1-terms input {
    width: 14px;
    height: 14px;

    margin: 2px 0 0;

    flex-shrink: 0;

    accent-color: #F28C28;
}


.signup-v1-terms span {
    color: #727982;

    font-size: 10px;

    line-height: 1.6;
}


.signup-v1-terms a {
    color: #F28C28;

    font-weight: 700;

    text-decoration: none;
}


.signup-v1-terms a:hover {
    text-decoration: underline;
}


/* =========================================
   CREATE ACCOUNT BUTTON
========================================= */

.signup-v1-button {
    width: 100%;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border: none;

    border-radius: 7px;

    background: #172B4D;

    color: #FFFFFF;

    cursor: pointer;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.signup-v1-button:hover {
    background: #F28C28;
}


.signup-v1-button i {
    transition: transform 0.3s ease;
}


.signup-v1-button:hover i {
    transform: translateX(4px);
}


/* =========================================
   LOGIN LINK
========================================= */

.signup-v1-login {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    margin-top: 24px;

    font-size: 10px;
}


.signup-v1-login span {
    color: #727982;
}


.signup-v1-login a {
    color: #F28C28;

    font-weight: 700;

    text-decoration: none;
}


.signup-v1-login a:hover {
    text-decoration: underline;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .signup-v1-card {
        grid-template-columns: 1fr;

        max-width: 650px;
    }


    .signup-v1-info {
        min-height: 380px;

        padding: 45px 40px;
    }


    .signup-v1-info h1 {
        font-size: 38px;
    }


    .signup-v1-form-side {
        padding: 45px 40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .signup-v1-section {
        padding: 25px 15px;
    }


    .signup-v1-card {
        border-radius: 14px;
    }


    .signup-v1-info {
        min-height: 340px;

        padding: 30px 25px;

        background-position: center;
    }


    .signup-v1-icon {
        width: 46px;
        height: 46px;

        margin-bottom: 20px;

        font-size: 17px;
    }


    .signup-v1-label {
        font-size: 9px;

        letter-spacing: 2px;
    }


    .signup-v1-info h1 {
        font-size: 31px;
    }


    .signup-v1-info-content > p {
        font-size: 12px;
    }


    .signup-v1-points {
        margin-top: 22px;

        gap: 10px;
    }


    .signup-v1-point span {
        font-size: 11px;
    }


    .signup-v1-form-side {
        padding: 35px 22px;
    }


    .signup-v1-form h2 {
        font-size: 28px;
    }


    .signup-v1-password-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .signup-v1-info {
        min-height: 310px;

        padding: 25px 20px;
    }


    .signup-v1-info h1 {
        font-size: 27px;
    }


    .signup-v1-info-content > p {
        font-size: 11px;
    }


    .signup-v1-point span {
        font-size: 10px;
    }


    .signup-v1-form-side {
        padding: 30px 18px;
    }


    .signup-v1-login {
        flex-direction: column;

        gap: 3px;
    }

}

/* =========================================
   AUTH DISPLAY CONTROLS
========================================= */

.login-v2-form-side,
.signup-v1-form-side {
    position: relative;
}

.auth-display-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 28px;
}

.auth-display-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D9DDE2;
    border-radius: 8px;
    background: #FFFFFF;
    color: #172B4D;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s ease;
}

.auth-display-btn:hover {
    border-color: #F28C28;
    background: #F28C28;
    color: #FFFFFF;
}

html[dir="rtl"] .login-v2-form,
html[dir="rtl"] .signup-v1-form,
body.rtl-mode .login-v2-form,
body.rtl-mode .signup-v1-form {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .login-v2-input input,
html[dir="rtl"] .signup-v1-input input,
body.rtl-mode .login-v2-input input,
body.rtl-mode .signup-v1-input input {
    padding-right: 15px;
    padding-left: 45px;
    text-align: right;
}

html[dir="rtl"] .login-v2-input i,
html[dir="rtl"] .signup-v1-input i,
body.rtl-mode .login-v2-input i,
body.rtl-mode .signup-v1-input i {
    right: auto;
    left: 16px;
}

html[dir="rtl"] .signup-v1-input i,
body.rtl-mode .signup-v1-input i {
    left: 14px;
}

html[dir="rtl"] .login-v2-button i,
html[dir="rtl"] .signup-v1-button i,
body.rtl-mode .login-v2-button i,
body.rtl-mode .signup-v1-button i {
    transform: rotate(180deg);
}

html[dir="rtl"] .login-v2-button:hover i,
html[dir="rtl"] .signup-v1-button:hover i,
body.rtl-mode .login-v2-button:hover i,
body.rtl-mode .signup-v1-button:hover i {
    transform: rotate(180deg) translateX(4px);
}

.login-v2-logo {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: #F28C28;
    color: #FFFFFF;

    border-radius: 12px;

    font-size: 20px;
    text-decoration: none;

    transition: 0.3s ease;
}

.login-v2-logo:hover {
    background: #172B4D;
    color: #FFFFFF;
}

/* =========================================================
   HOME 2 HERO BANNER
========================================================= */

.home2-hero {
    position: relative;

    width: 100%;
    min-height: 680px;

    display: flex;
    align-items: center;

    padding: 90px 20px;

    background: #F5F7F9;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   INNER
========================================================= */

.home2-hero-inner {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 50px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.home2-hero-content {
    position: relative;
    z-index: 3;

    max-width: 570px;
}


.home2-hero-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}


.home2-hero-content h1 {
    margin: 0 0 22px;

    color: #172B4D;

    font-size: 55px;
    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1px;
}


.home2-hero-content h1 span {
    display: block;

    color: #F28C28;
}


.home2-hero-content > p {
    max-width: 500px;

    margin: 0;

    color: #727982;

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   BUTTONS
========================================================= */

.home2-hero-actions {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 32px;
}


.home2-hero-primary,
.home2-hero-secondary {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 21px;

    border-radius: 7px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.home2-hero-primary {
    gap: 10px;

    background: #172B4D;
    color: #FFFFFF;
}


.home2-hero-primary:hover {
    background: #F28C28;
}


.home2-hero-primary i {
    transition: transform 0.3s ease;
}


.home2-hero-primary:hover i {
    transform: translateX(4px);
}


.home2-hero-secondary {
    border: 1px solid #D9DDE2;

    background: #FFFFFF;

    color: #172B4D;
}


.home2-hero-secondary:hover {
    border-color: #F28C28;

    color: #F28C28;
}


/* =========================================================
   TRUST STATS
========================================================= */

.home2-hero-trust {
    display: flex;

    align-items: center;

    gap: 35px;

    margin-top: 42px;

    padding-top: 25px;

    border-top: 1px solid #E1E5E9;
}


.home2-hero-trust div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}


.home2-hero-trust strong {
    color: #172B4D;

    font-size: 20px;
    font-weight: 800;
}


.home2-hero-trust span {
    color: #727982;

    font-size: 10px;
}

/* =========================================================
   HOME 2 - CINEMATIC BANNER
========================================================= */

.home2-banner {
    position: relative;

    width: 100%;
    min-height: 720px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 20px 155px;

    background-image: url("../images/josh-berquist-_4sWbzH5fp8-unsplash.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.home2-banner-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(23, 43, 77, 0.96) 0%,
            rgba(23, 43, 77, 0.76) 45%,
            rgba(23, 43, 77, 0.38) 100%
        );

    z-index: 1;
}


/* =========================================================
   CONTENT
========================================================= */

.home2-banner-content {
    position: relative;

    z-index: 3;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


.home2-banner-label {
    display: inline-block;

    margin-bottom: 20px;

    color: #F28C28;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3.5px;
}


.home2-banner-content h1 {
    margin: 0 0 22px;

    color: #FFFFFF;

    font-size: 62px;
    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1px;
}


.home2-banner-content h1 strong {
    color: #F28C28;

    font-weight: 800;
}


.home2-banner-content p {
    max-width: 650px;

    margin: 0 auto;

    color: #E1E6EC;

    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   BUTTONS
========================================================= */

.home2-banner-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-top: 32px;
}


.home2-banner-btn-primary,
.home2-banner-btn-outline {
    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 0 22px;

    border-radius: 7px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.home2-banner-btn-primary {
    gap: 10px;

    background: #F28C28;

    color: #FFFFFF;
}


.home2-banner-btn-primary:hover {
    background: #FFFFFF;

    color: #172B4D;
}


.home2-banner-btn-primary i {
    transition: transform 0.3s ease;
}


.home2-banner-btn-primary:hover i {
    transform: translateX(4px);
}


.home2-banner-btn-outline {
    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.45);

    color: #FFFFFF;

    backdrop-filter: blur(5px);
}


.home2-banner-btn-outline:hover {
    background: #FFFFFF;

    border-color: #FFFFFF;

    color: #172B4D;
}


/* =========================================================
   BOTTOM CATEGORY BAR
========================================================= */

.home2-banner-categories {
    position: absolute;

    z-index: 5;

    left: 50%;

    bottom: 0;

    transform: translateX(-50%);

    width: calc(100% - 40px);

    max-width: 1120px;

    min-height: 105px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: rgba(255, 255, 255, 0.97);

    border-radius: 12px 12px 0 0;

    overflow: hidden;

    box-shadow:
        0 -10px 40px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   CATEGORY ITEM
========================================================= */

.home2-category {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px 22px;

    border-right: 1px solid #E4E7EB;

    text-decoration: none;

    transition:
        background 0.3s ease;
}


.home2-category:last-child {
    border-right: none;
}


.home2-category:hover {
    background: #F8F9FB;
}


.home2-category > i {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #FFF0DF;

    color: #F28C28;

    border-radius: 9px;

    font-size: 15px;
}


.home2-category div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.home2-category strong {
    color: #172B4D;

    font-size: 12px;
    font-weight: 800;
}


.home2-category span {
    color: #727982;

    font-size: 9px;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode .home2-banner-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(11, 20, 33, 0.97) 0%,
            rgba(11, 20, 33, 0.82) 45%,
            rgba(11, 20, 33, 0.48) 100%
        );
}


body.dark-mode .home2-banner-categories {
    background: #111D2D;

    box-shadow:
        0 -10px 40px rgba(0, 0, 0, 0.35);
}


body.dark-mode .home2-category {
    border-color: #26364A;
}


body.dark-mode .home2-category:hover {
    background: #1A293B;
}


body.dark-mode .home2-category > i {
    background: #1A293B;

    color: #F28C28;
}


body.dark-mode .home2-category strong {
    color: #E5EAF0;
}


body.dark-mode .home2-category span {
    color: #AAB4C0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .home2-banner {
        min-height: 650px;

        padding: 90px 25px 150px;
    }


    .home2-banner-content h1 {
        font-size: 50px;
    }


    .home2-banner-categories {
        grid-template-columns:
            repeat(2, 1fr);

        min-height: auto;
    }


    .home2-category {
        min-height: 85px;
    }


    .home2-category:nth-child(2) {
        border-right: none;
    }


    .home2-category:nth-child(1),
    .home2-category:nth-child(2) {
        border-bottom: 1px solid #E4E7EB;
    }


    body.dark-mode .home2-category:nth-child(1),
    body.dark-mode .home2-category:nth-child(2) {
        border-bottom-color: #26364A;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .home2-banner {
        min-height: 700px;

        padding:
            80px 18px 275px;

        background-position: center;
    }


    .home2-banner-overlay {
        background:
            rgba(23, 43, 77, 0.88);
    }


    body.dark-mode .home2-banner-overlay {
        background:
            rgba(11, 20, 33, 0.92);
    }


    .home2-banner-label {
        font-size: 9px;

        letter-spacing: 2.5px;
    }


    .home2-banner-content h1 {
        font-size: 39px;

        line-height: 1.12;
    }


    .home2-banner-content p {
        font-size: 13px;

        line-height: 1.8;
    }


    .home2-banner-buttons {
        flex-direction: column;

        width: 100%;
    }


    .home2-banner-btn-primary,
    .home2-banner-btn-outline {
        width: 100%;

        box-sizing: border-box;
    }


    .home2-banner-categories {
        width: calc(100% - 30px);

        grid-template-columns: 1fr;

        border-radius: 10px 10px 0 0;
    }


    .home2-category {
        min-height: 72px;

        border-right: none;

        border-bottom: 1px solid #E4E7EB;
    }


    .home2-category:last-child {
        border-bottom: none;
    }


    body.dark-mode .home2-category {
        border-bottom-color: #26364A;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .home2-banner {
        min-height: 680px;

        padding:
            65px 15px 265px;
    }


    .home2-banner-content h1 {
        font-size: 33px;
    }


    .home2-banner-content p {
        font-size: 12px;
    }


    .home2-category {
        padding: 16px;
    }

}

/* =========================================
   HOME 2 - FEATURED PARTS COLLECTION
========================================= */

.home2-featured-parts {
    width: 100%;
    padding: 115px 20px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.home2-featured-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.home2-featured-header {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.home2-featured-heading {
    max-width: 600px;
}

.home2-featured-label {
    display: inline-block;
    margin-bottom: 16px;
    color: #F28C28;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home2-featured-heading h2 {
    margin: 0;
    color: #172B4D;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.home2-featured-heading h2 strong {
    color: #F28C28;
    font-weight: 800;
}

.home2-featured-intro {
    max-width: 400px;
    padding-bottom: 5px;
}

.home2-featured-intro p {
    margin: 0 0 22px;
    color: #727982;
    font-size: 14px;
    line-height: 1.9;
}

.home2-featured-view {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #172B4D;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: color 0.3s ease;
}

.home2-featured-view i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.home2-featured-view:hover {
    color: #F28C28;
}

.home2-featured-view:hover i {
    transform: translateX(5px);
}


/* =========================================
   MAIN GRID
========================================= */

.home2-featured-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.825fr 0.825fr;
    grid-template-rows: 390px 145px;
    gap: 18px;
}


/* =========================================
   COMMON CARD
========================================= */

.home2-featured-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    border-radius: 4px;
    box-sizing: border-box;
}


/* =========================================
   LARGE BRAKE CARD
========================================= */

.home2-featured-large {
    grid-row: span 2;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;

    background: #F5F7F9;
}


/* =========================================
   LARGE IMAGE CONTAINER
========================================= */

.home2-featured-image {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;
    overflow: hidden;

    background: #EEF1F4;
}


/* Decorative circles */

.home2-featured-image::before {
    content: "";

    position: absolute;

    width: 270px;
    height: 270px;

    border: 1px solid rgba(23, 43, 77, 0.10);

    border-radius: 50%;
}

.home2-featured-image::after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    border: 1px solid rgba(242, 140, 40, 0.16);

    border-radius: 50%;
}


/* Main Image */

.home2-featured-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    display: block;

    transition: transform 0.45s ease;
}

.home2-featured-large:hover
.home2-featured-image img {
    transform: scale(1.05);
}


/* =========================================
   LARGE CARD CONTENT
========================================= */

.home2-featured-content {
    padding: 25px 28px 28px;

    background: #FFFFFF;
}

.home2-featured-content > span:first-child {
    display: block;

    margin-bottom: 10px;

    color: #F28C28;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.home2-featured-content h3 {
    margin: 0 0 9px;

    color: #172B4D;

    font-size: 25px;
    line-height: 1.15;

    font-weight: 800;
}

.home2-featured-content p {
    max-width: 390px;

    margin: 0 0 16px;

    color: #727982;

    font-size: 11px;
    line-height: 1.7;
}

.home2-featured-link {
    display: inline-flex !important;
    align-items: center;

    gap: 7px;

    margin: 0 !important;

    color: #172B4D !important;

    font-size: 10px !important;

    letter-spacing: 0 !important;

    transition: color 0.3s ease;
}

.home2-featured-large:hover
.home2-featured-link {
    color: #F28C28 !important;
}


/* =========================================
   SMALL CARDS
========================================= */

.home2-featured-small {
    display: flex;
    flex-direction: column;

    padding: 20px;

    background: #F8F9FB;

    border: 1px solid #E7EAED;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.home2-featured-small:hover {
    transform: translateY(-5px);

    border-color: #F28C28;
}


/* Small Card Top */

.home2-featured-small-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home2-featured-small-top span {
    color: #F28C28;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.home2-featured-small-top i {
    color: #172B4D;
    font-size: 11px;
}


/* =========================================
   SMALL CARD IMAGE CONTAINER
========================================= */

.home2-featured-small-image {
    flex: 1;

    width: 100%;
    min-height: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    box-sizing: border-box;
    overflow: hidden;
}


/* Small Image */

.home2-featured-small-image img {
    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    object-position: center;

    display: block;

    transition: transform 0.4s ease;
}

.home2-featured-small:hover
.home2-featured-small-image img {
    transform: scale(1.08);
}


/* Small Card Content */

.home2-featured-small-content h3 {
    margin: 0 0 5px;

    color: #172B4D;

    font-size: 15px;
    font-weight: 800;
}

.home2-featured-small-content p {
    margin: 0;

    color: #727982;

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================
   WIDE BOTTOM CARD
========================================= */

.home2-featured-wide {
    grid-column: 2 / 4;

    display: flex;
    align-items: center;

    gap: 25px;

    padding: 22px 28px;

    background: #172B4D;
    color: #FFFFFF;

    text-decoration: none;

    border-radius: 4px;

    overflow: hidden;

    transition: background 0.3s ease;
}

.home2-featured-wide:hover {
    background: #1E3A63;
}


/* Number */

.home2-featured-wide-number {
    flex-shrink: 0;

    color: #F28C28;

    font-size: 28px;
    font-weight: 800;
}


/* Text */

.home2-featured-wide-text {
    flex: 1;
}

.home2-featured-wide-text span {
    display: block;

    margin-bottom: 6px;

    color: #F28C28;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.home2-featured-wide-text h3 {
    margin: 0;

    color: #FFFFFF;

    font-size: 19px;
    line-height: 1.25;

    font-weight: 800;
}


/* Arrow */

.home2-featured-wide-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    color: #FFFFFF;

    font-size: 12px;

    transition: all 0.3s ease;
}

.home2-featured-wide:hover
.home2-featured-wide-icon {
    background: #F28C28;

    border-color: #F28C28;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .home2-featured-parts {
        padding: 90px 20px;
    }

    .home2-featured-header {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .home2-featured-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            420px
            330px
            135px;
    }

    .home2-featured-large {
        grid-row: 1 / 3;
    }

    .home2-featured-wide {
        grid-column: 1 / 3;
    }

    .home2-featured-image img {
        width: 100%;
        height: 100%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .home2-featured-parts {
        padding: 75px 16px;
    }

    .home2-featured-header {
        margin-bottom: 35px;
    }

    .home2-featured-heading h2 {
        font-size: 36px;
    }

    .home2-featured-intro p {
        font-size: 13px;
    }


    /* Change grid to vertical */

    .home2-featured-grid {
        display: flex;
        flex-direction: column;

        gap: 14px;
    }


    /* Large card */

    .home2-featured-large {
        min-height: 520px;
    }

    .home2-featured-image {
        min-height: 340px;
    }

    .home2-featured-image img {
        width: 100%;
        height: 100%;

        max-width: 100%;
        max-height: 100%;
    }


    /* Small cards */

    .home2-featured-small {
        min-height: 320px;
    }

    .home2-featured-small-image {
        min-height: 210px;
    }

    .home2-featured-small-image img {
        width: 100%;
        height: 100%;

        max-width: 100%;
        max-height: 100%;
    }


    /* Wide card */

    .home2-featured-wide {
        min-height: 145px;

        padding: 22px;
    }

    .home2-featured-wide-text h3 {
        font-size: 17px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .home2-featured-heading h2 {
        font-size: 31px;
    }


    .home2-featured-large {
        min-height: 480px;
    }

    .home2-featured-image {
        min-height: 310px;
    }

    .home2-featured-content h3 {
        font-size: 22px;
    }


    .home2-featured-small {
        min-height: 300px;
    }

    .home2-featured-small-image {
        min-height: 190px;
    }


    .home2-featured-wide {
        gap: 14px;

        padding: 18px;
    }

    .home2-featured-wide-number {
        font-size: 22px;
    }

    .home2-featured-wide-icon {
        width: 36px;
        height: 36px;
    }

}

/* =========================================
   HOME 2 - VEHICLE COMPATIBILITY
========================================= */

.home2-compatibility {
    width: 100%;
    padding: 115px 20px;
    background: #F5F7F9;
    box-sizing: border-box;
}

.home2-compatibility-inner {
    width: 100%;
    max-width: 1180px;
    min-height: 600px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    background: #172B4D;
    border-radius: 8px;

    overflow: hidden;
}


/* =========================================
   LEFT CONTENT
========================================= */

.home2-compatibility-content {
    position: relative;

    padding: 65px 55px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-sizing: border-box;
}

.home2-compatibility-content::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    bottom: -150px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.home2-compatibility-content::after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -95px;
    bottom: -95px;

    border: 1px solid rgba(242, 140, 40, 0.18);

    border-radius: 50%;

    pointer-events: none;
}


/* Label */

.home2-compatibility-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;
}


/* Heading */

.home2-compatibility-content h2 {
    max-width: 480px;

    margin: 0 0 20px;

    color: #FFFFFF;

    font-size: 46px;
    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1px;
}

.home2-compatibility-content h2 strong {
    display: block;

    color: #F28C28;

    font-weight: 800;
}


/* Description */

.home2-compatibility-content > p {
    max-width: 470px;

    margin: 0 0 35px;

    color: #C9D1DC;

    font-size: 13px;
    line-height: 1.85;
}


/* =========================================
   STEPS
========================================= */

.home2-compatibility-steps {
    width: 100%;
    max-width: 480px;

    display: flex;
    flex-direction: column;

    gap: 18px;

    margin-bottom: 35px;
}

.home2-compatibility-step {
    display: flex;
    align-items: center;

    gap: 15px;
}

.home2-compatibility-step > span {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    color: #F28C28;

    font-size: 9px;
    font-weight: 800;
}

.home2-compatibility-step div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.home2-compatibility-step strong {
    color: #FFFFFF;

    font-size: 12px;
    font-weight: 700;
}

.home2-compatibility-step small {
    color: #9FAABA;

    font-size: 10px;
}


/* =========================================
   MAIN BUTTON
========================================= */

.home2-compatibility-button {
    width: fit-content;

    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 20px;

    background: #F28C28;
    color: #FFFFFF;

    border-radius: 5px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    transition: all 0.3s ease;
}

.home2-compatibility-button:hover {
    background: #FFFFFF;
    color: #172B4D;
}

.home2-compatibility-button i {
    transition: transform 0.3s ease;
}

.home2-compatibility-button:hover i {
    transform: translateX(4px);
}


/* =========================================
   RIGHT FINDER
========================================= */

.home2-compatibility-finder {
    position: relative;

    padding: 45px;

    background: #FFFFFF;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Top */

.home2-compatibility-finder-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 30px;
}

.home2-compatibility-finder-top span {
    color: #F28C28;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}

.home2-compatibility-finder-top i {
    color: #172B4D;

    font-size: 18px;
}


/* =========================================
   CAR INFO
========================================= */

.home2-compatibility-car {
    display: flex;
    align-items: center;

    gap: 17px;

    padding-bottom: 28px;

    margin-bottom: 28px;

    border-bottom: 1px solid #E5E8EC;
}

.home2-compatibility-car-circle {
    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFF0DF;

    border-radius: 50%;

    color: #F28C28;

    font-size: 22px;
}

.home2-compatibility-car div:last-child {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.home2-compatibility-car strong {
    color: #172B4D;

    font-size: 17px;
    font-weight: 800;
}

.home2-compatibility-car span {
    color: #727982;

    font-size: 10px;
}


/* =========================================
   FORM FIELDS
========================================= */

.home2-compatibility-fields {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-bottom: 18px;
}

.home2-compatibility-field {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.home2-compatibility-field label {
    color: #172B4D;

    font-size: 10px;
    font-weight: 800;
}

.home2-compatibility-field select {
    width: 100%;
    height: 48px;

    padding: 0 13px;

    background: #F7F8FA;

    border: 1px solid #E1E5E9;

    border-radius: 5px;

    color: #727982;

    font-family: inherit;

    font-size: 11px;

    outline: none;

    cursor: pointer;

    box-sizing: border-box;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.home2-compatibility-field select:focus {
    border-color: #F28C28;

    background: #FFFFFF;
}


/* =========================================
   FIND BUTTON
========================================= */

.home2-compatibility-find {
    width: 100%;
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    box-sizing: border-box;

    background: #172B4D;
    color: #FFFFFF;

    border-radius: 5px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;

    transition: all 0.3s ease;
}

.home2-compatibility-find:hover {
    background: #F28C28;
}

.home2-compatibility-find i {
    transition: transform 0.3s ease;
}

.home2-compatibility-find:hover i {
    transform: translateX(4px);
}


/* =========================================
   NOTE
========================================= */

.home2-compatibility-note {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 17px;
}

.home2-compatibility-note i {
    color: #F28C28;

    font-size: 11px;
}

.home2-compatibility-note span {
    color: #727982;

    font-size: 9px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .home2-compatibility {
        padding: 90px 20px;
    }

    .home2-compatibility-inner {
        grid-template-columns: 1fr;
    }

    .home2-compatibility-content {
        padding: 60px 45px;
    }

    .home2-compatibility-finder {
        padding: 40px 45px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .home2-compatibility {
        padding: 70px 16px;
    }

    .home2-compatibility-content {
        padding: 50px 25px;
    }

    .home2-compatibility-content h2 {
        font-size: 36px;
    }

    .home2-compatibility-content > p {
        font-size: 12px;
    }

    .home2-compatibility-finder {
        padding: 35px 25px;
    }

    .home2-compatibility-fields {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .home2-compatibility-field select {
        height: 50px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .home2-compatibility-content {
        padding: 45px 20px;
    }

    .home2-compatibility-content h2 {
        font-size: 31px;
    }

    .home2-compatibility-finder {
        padding: 30px 20px;
    }

    .home2-compatibility-car strong {
        font-size: 15px;
    }

}

/* =========================================
   HOME 2 - QUALITY PROMISE
========================================= */

.home2-quality {
    width: 100%;
    padding: 115px 20px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.home2-quality-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.home2-quality-header {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    column-gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.home2-quality-label {
    grid-column: 1 / -1;

    display: inline-block;

    margin-bottom: 15px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;
}

.home2-quality-header h2 {
    margin: 0;

    color: #172B4D;

    font-size: 46px;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1px;
}

.home2-quality-header h2 strong {
    display: block;

    color: #F28C28;

    font-weight: 800;
}

.home2-quality-header p {
    max-width: 380px;

    margin: 0;

    color: #727982;

    font-size: 13px;
    line-height: 1.85;
}


/* =========================================
   QUALITY LIST
========================================= */

.home2-quality-list {
    width: 100%;

    border-top: 1px solid #E4E7EB;
}


/* =========================================
   QUALITY ITEM
========================================= */

.home2-quality-item {
    min-height: 125px;

    display: grid;

    grid-template-columns:
        55px
        55px
        1fr
        35px;

    align-items: center;

    gap: 22px;

    padding: 20px 10px;

    box-sizing: border-box;

    border-bottom: 1px solid #E4E7EB;

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.home2-quality-item:hover {
    padding-left: 20px;
    padding-right: 20px;

    background: #F8F9FB;
}


/* Number */

.home2-quality-number {
    color: #A7ADB5;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* Icon */

.home2-quality-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFF0DF;

    border-radius: 50%;

    color: #F28C28;

    font-size: 16px;
}


/* Content */

.home2-quality-content h3 {
    margin: 0 0 7px;

    color: #172B4D;

    font-size: 16px;
    font-weight: 800;
}

.home2-quality-content p {
    max-width: 560px;

    margin: 0;

    color: #727982;

    font-size: 11px;
    line-height: 1.7;
}


/* Arrow */

.home2-quality-arrow {
    color: #172B4D;

    font-size: 12px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.home2-quality-item:hover
.home2-quality-arrow {
    color: #F28C28;

    transform: translateX(5px);
}


/* =========================================
   BOTTOM STATEMENT
========================================= */

.home2-quality-bottom {
    min-height: 110px;

    margin-top: 30px;

    padding: 25px 30px;

    display: flex;
    align-items: center;

    gap: 22px;

    box-sizing: border-box;

    background: #172B4D;

    border-radius: 5px;
}


/* Number */

.home2-quality-bottom-number {
    color: #F28C28;

    font-size: 35px;
    line-height: 1;

    font-weight: 800;
}


/* Text */

.home2-quality-bottom-text {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.home2-quality-bottom-text strong {
    color: #FFFFFF;

    font-size: 14px;
    font-weight: 800;
}

.home2-quality-bottom-text span {
    color: #AEB9C7;

    font-size: 10px;
}


/* Button */

.home2-quality-bottom-button {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 18px;

    background: #F28C28;
    color: #FFFFFF;

    border-radius: 4px;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;

    transition: all 0.3s ease;
}

.home2-quality-bottom-button:hover {
    background: #FFFFFF;
    color: #172B4D;
}

.home2-quality-bottom-button i {
    transition: transform 0.3s ease;
}

.home2-quality-bottom-button:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .home2-quality {
        padding: 90px 20px;
    }

    .home2-quality-header {
        grid-template-columns: 1fr;

        row-gap: 18px;
    }

    .home2-quality-header p {
        max-width: 600px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .home2-quality {
        padding: 75px 16px;
    }

    .home2-quality-header {
        margin-bottom: 40px;
    }

    .home2-quality-header h2 {
        font-size: 35px;
    }

    .home2-quality-header p {
        font-size: 12px;
    }


    .home2-quality-item {
        min-height: 110px;

        grid-template-columns:
            35px
            45px
            1fr
            20px;

        gap: 12px;

        padding: 18px 5px;
    }

    .home2-quality-item:hover {
        padding-left: 10px;
        padding-right: 10px;
    }

    .home2-quality-icon {
        width: 42px;
        height: 42px;

        font-size: 14px;
    }

    .home2-quality-content h3 {
        font-size: 13px;
    }

    .home2-quality-content p {
        font-size: 9px;
    }

    .home2-quality-bottom {
        flex-wrap: wrap;

        gap: 15px;

        padding: 22px;
    }

    .home2-quality-bottom-text {
        min-width: 150px;
    }

    .home2-quality-bottom-button {
        width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .home2-quality-header h2 {
        font-size: 30px;
    }

    .home2-quality-item {
        grid-template-columns:
            28px
            40px
            1fr
            15px;

        gap: 9px;
    }

    .home2-quality-icon {
        width: 38px;
        height: 38px;

        font-size: 12px;
    }

    .home2-quality-content h3 {
        font-size: 12px;
    }

    .home2-quality-content p {
        font-size: 8px;
    }

    .home2-quality-bottom-number {
        font-size: 29px;
    }

}

/* =========================================
   HOME 2 - CUSTOMER EXPERIENCE
========================================= */

.home2-customer {
    width: 100%;
    padding: 115px 20px;
    background: #F5F7F9;
    box-sizing: border-box;
}

.home2-customer-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    gap: 80px;

    align-items: center;
}


/* =========================================
   LEFT VISUAL
========================================= */

.home2-customer-visual {
    position: relative;

    width: 100%;
    height: 560px;

    overflow: visible;
}

.home2-customer-visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 6px;
}


/* =========================================
   RATING CARD
========================================= */

.home2-customer-rating {
    position: absolute;

    right: -30px;
    bottom: 35px;

    width: 175px;

    padding: 20px;

    box-sizing: border-box;

    background: #FFFFFF;

    border-radius: 5px;

    box-shadow: 0 18px 45px rgba(23, 43, 77, 0.15);
}

.home2-customer-stars {
    display: flex;

    gap: 3px;

    margin-bottom: 9px;

    color: #F28C28;

    font-size: 10px;
}

.home2-customer-rating strong {
    display: block;

    margin-bottom: 3px;

    color: #172B4D;

    font-size: 22px;
    font-weight: 800;
}

.home2-customer-rating span {
    color: #727982;

    font-size: 9px;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.home2-customer-content {
    max-width: 570px;
}

.home2-customer-label {
    display: inline-block;

    margin-bottom: 17px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;
}

.home2-customer-content h2 {
    margin: 0 0 30px;

    color: #172B4D;

    font-size: 46px;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1px;
}

.home2-customer-content h2 strong {
    display: block;

    color: #F28C28;

    font-weight: 800;
}


/* =========================================
   QUOTE
========================================= */

.home2-customer-quote {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: #FFF0DF;

    border-radius: 50%;

    color: #F28C28;

    font-size: 15px;
}

.home2-customer-content blockquote {
    margin: 0 0 25px;

    color: #29313A;

    font-size: 17px;
    line-height: 1.8;

    font-weight: 500;
}


/* =========================================
   AUTHOR
========================================= */

.home2-customer-author {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 40px;
}

.home2-customer-author img {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 50%;
}

.home2-customer-author div {
    display: flex;
    flex-direction: column;

    gap: 3px;
}

.home2-customer-author strong {
    color: #172B4D;

    font-size: 11px;
    font-weight: 800;
}

.home2-customer-author span {
    color: #727982;

    font-size: 9px;
}


/* =========================================
   STATS
========================================= */

.home2-customer-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #DDE1E6;

    padding-top: 25px;
}

.home2-customer-stat {
    display: flex;
    flex-direction: column;

    gap: 5px;

    padding-right: 20px;

    border-right: 1px solid #DDE1E6;
}

.home2-customer-stat:last-child {
    padding-right: 0;

    padding-left: 20px;

    border-right: none;
}

.home2-customer-stat:nth-child(2) {
    padding-left: 20px;
}

.home2-customer-stat strong {
    color: #172B4D;

    font-size: 22px;
    font-weight: 800;
}

.home2-customer-stat span {
    color: #727982;

    font-size: 9px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .home2-customer {
        padding: 90px 20px;
    }

    .home2-customer-inner {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .home2-customer-visual {
        max-width: 700px;
        height: 500px;

        margin: 0 auto;
    }

    .home2-customer-content {
        max-width: 700px;
        margin: 0 auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .home2-customer {
        padding: 75px 16px;
    }

    .home2-customer-inner {
        gap: 50px;
    }

    .home2-customer-visual {
        height: 420px;
    }

    .home2-customer-rating {
        right: 15px;
        bottom: 20px;

        width: 155px;

        padding: 17px;
    }

    .home2-customer-content h2 {
        font-size: 35px;
    }

    .home2-customer-content blockquote {
        font-size: 14px;
        line-height: 1.75;
    }

    .home2-customer-stats {
        gap: 0;
    }

    .home2-customer-stat {
        padding-right: 10px;
    }

    .home2-customer-stat:nth-child(2) {
        padding-left: 10px;
    }

    .home2-customer-stat:last-child {
        padding-left: 10px;
    }

    .home2-customer-stat strong {
        font-size: 18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .home2-customer-visual {
        height: 350px;
    }

    .home2-customer-rating {
        width: 140px;

        right: 8px;
        bottom: 12px;
    }

    .home2-customer-rating strong {
        font-size: 19px;
    }

    .home2-customer-content h2 {
        font-size: 30px;
    }

    .home2-customer-content blockquote {
        font-size: 13px;
    }

    .home2-customer-stat strong {
        font-size: 16px;
    }

    .home2-customer-stat span {
        font-size: 8px;
    }

}

/* =========================================
   HOME 2 - CATEGORY EXPLORER
========================================= */

.home2-category-explorer {
    width: 100%;
    padding: 115px 20px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.home2-category-explorer-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;

    align-items: center;
}


/* =========================================
   LEFT INTRO
========================================= */

.home2-category-intro {
    max-width: 410px;
}

.home2-category-label {
    display: inline-block;
    margin-bottom: 18px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home2-category-intro h2 {
    margin: 0 0 22px;

    color: #172B4D;

    font-size: 45px;
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: -1px;
}

.home2-category-intro h2 strong {
    display: block;
    color: #F28C28;
    font-weight: 800;
}

.home2-category-intro p {
    max-width: 390px;
    margin: 0;

    color: #727982;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================
   MAIN BUTTON
========================================= */

.home2-category-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    min-height: 48px;

    margin-top: 30px;
    padding: 0 20px;

    background: #172B4D;
    color: #FFFFFF;

    border-radius: 6px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.home2-category-main-btn:hover {
    background: #F28C28;
    color: #FFFFFF;
}

.home2-category-main-btn i {
    transition: transform 0.3s ease;
}

.home2-category-main-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   CATEGORY LIST
========================================= */

.home2-category-list {
    width: 100%;

    border-top: 1px solid #DDE1E6;
}


/* =========================================
   CATEGORY ITEM
========================================= */

.home2-category-item {
    position: relative;

    width: 100%;
    min-height: 125px;

    display: grid;
    grid-template-columns: 45px 58px 1fr 35px;
    align-items: center;

    gap: 20px;

    padding: 18px 5px;

    box-sizing: border-box;

    border-bottom: 1px solid #DDE1E6;

    text-decoration: none;

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.home2-category-item:hover {
    padding-left: 18px;
    padding-right: 18px;

    background: #F8F9FB;
}


/* =========================================
   NUMBER
========================================= */

.home2-category-number {
    color: #AAB1BA;

    font-size: 11px;
    font-weight: 700;
}


/* =========================================
   ICON
========================================= */

.home2-category-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #FFF0DF;
    color: #F28C28;

    border-radius: 8px;

    font-size: 16px;

    transition: all 0.3s ease;
}

.home2-category-item:hover .home2-category-icon {
    background: #F28C28;
    color: #FFFFFF;
}


/* =========================================
   CONTENT
========================================= */

.home2-category-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.home2-category-content > span {
    color: #F28C28;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.home2-category-content h3 {
    margin: 0;

    color: #172B4D;

    font-size: 18px;
    font-weight: 800;
}

.home2-category-content p {
    margin: 0;

    color: #727982;

    font-size: 10px;
    line-height: 1.6;
}


/* =========================================
   ARROW
========================================= */

.home2-category-arrow {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #DDE1E6;
    border-radius: 50%;

    color: #172B4D;

    font-size: 10px;

    transition: all 0.3s ease;
}

.home2-category-item:hover .home2-category-arrow {
    background: #F28C28;
    border-color: #F28C28;
    color: #FFFFFF;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .home2-category-explorer {
        padding: 90px 20px;
    }

    .home2-category-explorer-inner {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .home2-category-intro {
        max-width: 650px;
    }

    .home2-category-intro h2 {
        font-size: 42px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .home2-category-explorer {
        padding: 75px 16px;
    }

    .home2-category-explorer-inner {
        gap: 40px;
    }

    .home2-category-intro h2 {
        font-size: 35px;
    }

    .home2-category-intro p {
        font-size: 13px;
    }

    .home2-category-item {
        min-height: 110px;

        grid-template-columns: 30px 48px 1fr 30px;

        gap: 12px;

        padding: 15px 0;
    }

    .home2-category-item:hover {
        padding-left: 8px;
        padding-right: 8px;
    }

    .home2-category-icon {
        width: 44px;
        height: 44px;

        font-size: 14px;
    }

    .home2-category-content h3 {
        font-size: 15px;
    }

    .home2-category-content p {
        font-size: 9px;
    }

    .home2-category-arrow {
        width: 28px;
        height: 28px;

        font-size: 9px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .home2-category-explorer {
        padding: 65px 14px;
    }

    .home2-category-intro h2 {
        font-size: 30px;
    }

    .home2-category-item {
        grid-template-columns: 25px 42px 1fr 28px;
        gap: 9px;
    }

    .home2-category-number {
        font-size: 9px;
    }

    .home2-category-icon {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .home2-category-content h3 {
        font-size: 13px;
    }

    .home2-category-content p {
        font-size: 8px;
    }

    .home2-category-content > span {
        font-size: 7px;
    }

}

/* =========================================
   HOME 2 - PREMIUM BRAND SPOTLIGHT
========================================= */

.home2-brand-spotlight {
    width: 100%;
    padding: 115px 20px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.home2-brand-spotlight-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.home2-brand-spotlight-header {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.home2-brand-spotlight-label {
    display: inline-block;
    margin-bottom: 17px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home2-brand-spotlight-header h2 {
    margin: 0;

    color: #172B4D;

    font-size: 45px;
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: -1px;
}

.home2-brand-spotlight-header h2 strong {
    display: block;
    color: #F28C28;
}

.home2-brand-spotlight-header > p {
    max-width: 390px;
    margin: 0 0 3px;

    color: #727982;

    font-size: 13px;
    line-height: 1.9;
}


/* =========================================
   MAIN
========================================= */

.home2-brand-spotlight-main {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;

    min-height: 535px;
}


/* =========================================
   FEATURED BRAND
========================================= */

.home2-brand-featured {
    position: relative;

    min-height: 535px;

    padding: 40px;

    overflow: hidden;

    background: #172B4D;

    border-radius: 8px;

    box-sizing: border-box;
}

.home2-brand-featured-bg {
    position: absolute;

    width: 360px;
    height: 360px;

    right: -100px;
    top: -100px;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

.home2-brand-featured-bg::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    left: 65px;
    top: 65px;

    border: 1px solid rgba(242,140,40,0.18);

    border-radius: 50%;
}

.home2-brand-featured-tag {
    position: relative;
    z-index: 2;

    display: inline-block;

    color: #F28C28;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* LOGO */

.home2-brand-featured-logo {
    position: relative;
    z-index: 2;

    width: 260px;
    height: 100px;

    margin: 55px 0 35px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    background: #FFFFFF;

    border-radius: 7px;

    padding: 15px 25px;

    box-sizing: border-box;
}

.home2-brand-featured-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* CONTENT */

.home2-brand-featured-content {
    position: relative;
    z-index: 2;

    max-width: 430px;
}

.home2-brand-featured-content > span {
    color: #AAB7C7;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 2px;
}

.home2-brand-featured-content h3 {
    margin: 8px 0 12px;

    color: #FFFFFF;

    font-size: 36px;
    font-weight: 800;
}

.home2-brand-featured-content p {
    max-width: 390px;
    margin: 0;

    color: #CBD3DD;

    font-size: 12px;
    line-height: 1.8;
}

.home2-brand-featured-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 24px;

    color: #FFFFFF;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;
}

.home2-brand-featured-content a i {
    color: #F28C28;
    transition: transform 0.3s ease;
}

.home2-brand-featured-content a:hover i {
    transform: translateX(5px);
}


/* BADGE */

.home2-brand-featured-badge {
    position: absolute;

    right: 35px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 13px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 5px;

    color: #FFFFFF;

    font-size: 9px;
}

.home2-brand-featured-badge i {
    color: #F28C28;
}


/* =========================================
   MINI GRID
========================================= */

.home2-brand-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


/* =========================================
   MINI CARD
========================================= */

.home2-brand-mini {
    position: relative;

    min-height: 257px;

    display: flex;
    flex-direction: column;

    padding: 24px;

    background: #F5F7F9;

    border: 1px solid #E4E7EB;
    border-radius: 8px;

    text-decoration: none;

    overflow: hidden;

    transition: all 0.35s ease;
}

.home2-brand-mini:hover {
    transform: translateY(-5px);

    background: #FFFFFF;

    border-color: #F28C28;

    box-shadow: 0 15px 35px rgba(23,43,77,0.08);
}


/* NUMBER */

.home2-brand-mini-number {
    color: #AAB1BA;

    font-size: 9px;
    font-weight: 800;
}


/* LOGO */

.home2-brand-mini-logo {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px 5px;
}

.home2-brand-mini-logo img {
    width: 145px;
    height: 75px;

    object-fit: contain;

    display: block;

    transition: transform 0.35s ease;
}

.home2-brand-mini:hover .home2-brand-mini-logo img {
    transform: scale(1.08);
}


/* BOTTOM */

.home2-brand-mini-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 15px;

    border-top: 1px solid #DDE1E6;
}

.home2-brand-mini-bottom span {
    color: #727982;

    font-size: 9px;
    font-weight: 600;
}

.home2-brand-mini-bottom i {
    color: #172B4D;

    font-size: 9px;

    transition: color 0.3s ease;
}

.home2-brand-mini:hover .home2-brand-mini-bottom i {
    color: #F28C28;
}


/* =========================================
   VIEW ALL
========================================= */

.home2-brand-view-all {
    min-height: 257px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 28px;

    background: #F28C28;

    border-radius: 8px;

    text-decoration: none;

    box-sizing: border-box;

    transition: all 0.35s ease;
}

.home2-brand-view-all:hover {
    background: #172B4D;
}

.home2-brand-view-all div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.home2-brand-view-all span {
    color: #FFFFFF;

    font-size: 36px;
    font-weight: 800;
}

.home2-brand-view-all strong {
    color: #FFFFFF;

    font-size: 11px;
}

.home2-brand-view-all > i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.15);

    border-radius: 50%;

    color: #FFFFFF;

    font-size: 11px;

    transition: transform 0.3s ease;
}

.home2-brand-view-all:hover > i {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .home2-brand-spotlight {
        padding: 90px 20px;
    }

    .home2-brand-spotlight-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home2-brand-spotlight-header > p {
        max-width: 650px;
    }

    .home2-brand-spotlight-main {
        grid-template-columns: 1fr;
    }

    .home2-brand-featured {
        min-height: 500px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .home2-brand-spotlight {
        padding: 75px 16px;
    }

    .home2-brand-spotlight-header {
        margin-bottom: 40px;
    }

    .home2-brand-spotlight-header h2 {
        font-size: 35px;
    }

    .home2-brand-spotlight-header > p {
        font-size: 12px;
    }

    .home2-brand-featured {
        min-height: 470px;
        padding: 28px;
    }

    .home2-brand-featured-logo {
        width: 210px;
        height: 80px;

        margin: 45px 0 28px;

        padding: 12px 18px;
    }

    .home2-brand-featured-content h3 {
        font-size: 30px;
    }

    .home2-brand-featured-content p {
        font-size: 11px;
    }

    .home2-brand-featured-badge {
        right: 20px;
        bottom: 20px;
    }

    .home2-brand-mini-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .home2-brand-mini {
        min-height: 190px;
        padding: 17px;
    }

    .home2-brand-mini-logo img {
        width: 100px;
        height: 55px;
    }

    .home2-brand-view-all {
        min-height: 170px;
        padding: 20px;
    }

    .home2-brand-view-all span {
        font-size: 29px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .home2-brand-spotlight {
        padding: 65px 14px;
    }

    .home2-brand-spotlight-header h2 {
        font-size: 30px;
    }

    .home2-brand-featured {
        min-height: 430px;
        padding: 22px;
    }

    .home2-brand-featured-logo {
        width: 180px;
        height: 70px;

        margin: 38px 0 25px;
    }

    .home2-brand-featured-content h3 {
        font-size: 27px;
    }

    .home2-brand-featured-content p {
        font-size: 10px;
    }

    .home2-brand-featured-badge {
        position: static;
        width: fit-content;
        margin-top: 20px;
    }

    .home2-brand-mini {
        min-height: 165px;
        padding: 14px;
    }

    .home2-brand-mini-logo img {
        width: 80px;
        height: 45px;
    }

    .home2-brand-view-all {
        min-height: 150px;
    }

}

/* =========================================
   HOME 2 - WHY CHOOSE US
========================================= */

.home2-why {
    width: 100%;
    padding: 115px 20px;
    background: #F5F7F9;
    box-sizing: border-box;
}

.home2-why-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.home2-why-heading {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 80px;
    align-items: end;

    margin-bottom: 65px;
}

.home2-why-label {
    display: inline-block;
    margin-bottom: 17px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home2-why-heading h2 {
    margin: 0;

    color: #172B4D;

    font-size: 46px;
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: -1px;
}

.home2-why-heading h2 strong {
    display: block;
    color: #F28C28;
    font-weight: 800;
}

.home2-why-heading > p {
    max-width: 400px;
    margin: 0 0 3px;

    color: #727982;

    font-size: 13px;
    line-height: 1.9;
}


/* =========================================
   BENEFITS
========================================= */

.home2-why-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #DDE1E6;
    border-bottom: 1px solid #DDE1E6;
}

.home2-why-benefit {
    position: relative;

    min-height: 300px;

    padding: 32px 28px;

    box-sizing: border-box;

    border-right: 1px solid #DDE1E6;

    transition: background 0.3s ease;
}

.home2-why-benefit:last-child {
    border-right: none;
}

.home2-why-benefit:hover {
    background: #FFFFFF;
}


/* NUMBER */

.home2-why-number {
    display: block;
    margin-bottom: 38px;

    color: #AAB1BA;

    font-size: 10px;
    font-weight: 800;
}


/* ICON */

.home2-why-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: #FFF0DF;
    color: #F28C28;

    border-radius: 7px;

    font-size: 15px;

    transition: all 0.3s ease;
}

.home2-why-benefit:hover .home2-why-icon {
    background: #F28C28;
    color: #FFFFFF;
}


/* TITLE */

.home2-why-benefit h3 {
    margin: 0 0 12px;

    color: #172B4D;

    font-size: 17px;
    font-weight: 800;
}


/* TEXT */

.home2-why-benefit p {
    max-width: 210px;
    margin: 0;

    color: #727982;

    font-size: 10px;
    line-height: 1.8;
}


/* =========================================
   STATS
========================================= */

.home2-why-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 40px;

    padding: 0 10px;
}

.home2-why-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;

    padding-left: 25px;

    border-left: 1px solid #DDE1E6;
}

.home2-why-stat:first-child {
    padding-left: 0;
    border-left: none;
}

.home2-why-stat strong {
    color: #172B4D;

    font-size: 25px;
    font-weight: 800;
}

.home2-why-stat span {
    color: #727982;

    font-size: 9px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .home2-why {
        padding: 90px 20px;
    }

    .home2-why-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home2-why-heading > p {
        max-width: 650px;
    }

    .home2-why-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .home2-why-benefit:nth-child(2) {
        border-right: none;
    }

    .home2-why-benefit:nth-child(1),
    .home2-why-benefit:nth-child(2) {
        border-bottom: 1px solid #DDE1E6;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .home2-why {
        padding: 75px 16px;
    }

    .home2-why-heading {
        margin-bottom: 45px;
    }

    .home2-why-heading h2 {
        font-size: 35px;
    }

    .home2-why-heading > p {
        font-size: 12px;
    }

    .home2-why-benefits {
        grid-template-columns: 1fr;
    }

    .home2-why-benefit {
        min-height: auto;
        padding: 28px 22px;

        border-right: none;
        border-bottom: 1px solid #DDE1E6;
    }

    .home2-why-benefit:last-child {
        border-bottom: none;
    }

    .home2-why-benefit:nth-child(2) {
        border-bottom: 1px solid #DDE1E6;
    }

    .home2-why-number {
        margin-bottom: 22px;
    }

    .home2-why-icon {
        margin-bottom: 18px;
    }

    .home2-why-benefit p {
        max-width: 100%;
    }

    .home2-why-stats {
        grid-template-columns: 1fr 1fr;
        gap: 25px 0;

        margin-top: 35px;
    }

    .home2-why-stat {
        padding-left: 18px;
    }

    .home2-why-stat:nth-child(3) {
        padding-left: 0;
        border-left: none;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .home2-why {
        padding: 65px 14px;
    }

    .home2-why-heading h2 {
        font-size: 30px;
    }

    .home2-why-benefit {
        padding: 25px 18px;
    }

    .home2-why-benefit h3 {
        font-size: 15px;
    }

    .home2-why-stat strong {
        font-size: 21px;
    }

}

/* =========================================
   HOME 2 - COMPATIBILITY CTA
========================================= */

.home2-fit-cta {
    position: relative;

    width: 100%;
    min-height: 470px;

    display: flex;
    align-items: center;

    padding: 85px 20px;

    background: #172B4D;

    box-sizing: border-box;

    overflow: hidden;
}

.home2-fit-cta-inner {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 0.8fr;

    align-items: center;

    gap: 60px;
}


/* =========================================
   BACKGROUND CIRCLES
========================================= */

.home2-fit-cta-bg-circle {
    position: absolute;

    border: 1px solid rgba(255,255,255,0.07);

    border-radius: 50%;

    pointer-events: none;
}

.home2-fit-cta-circle-one {
    width: 600px;
    height: 600px;

    right: -170px;
    top: -210px;
}

.home2-fit-cta-circle-two {
    width: 420px;
    height: 420px;

    right: -80px;
    top: -120px;

    border-color: rgba(242,140,40,0.13);
}


/* =========================================
   CONTENT
========================================= */

.home2-fit-cta-content {
    max-width: 620px;
}

.home2-fit-cta-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 3px;
}

.home2-fit-cta-content h2 {
    margin: 0 0 20px;

    color: #FFFFFF;

    font-size: 48px;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1px;
}

.home2-fit-cta-content h2 strong {
    display: block;

    color: #F28C28;

    font-weight: 800;
}

.home2-fit-cta-content p {
    max-width: 540px;

    margin: 0;

    color: #CBD3DD;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================
   ACTIONS
========================================= */

.home2-fit-cta-actions {
    display: flex;
    align-items: center;

    gap: 25px;

    margin-top: 30px;
}

.home2-fit-cta-primary {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    background: #F28C28;
    color: #FFFFFF;

    border-radius: 6px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.home2-fit-cta-primary:hover {
    background: #FFFFFF;
    color: #172B4D;
}

.home2-fit-cta-primary i {
    transition: transform 0.3s ease;
}

.home2-fit-cta-primary:hover i {
    transform: translateX(5px);
}


/* NOTE */

.home2-fit-cta-note {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #D8DEE6;

    font-size: 9px;
}

.home2-fit-cta-note i {
    color: #F28C28;
}


/* =========================================
   VEHICLE VISUAL
========================================= */

.home2-fit-cta-visual {
    position: relative;

    min-height: 350px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home2-fit-cta-car-ring {
    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 50%;
}

.home2-fit-cta-car-ring::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: 39px;
    top: 39px;

    border: 1px dashed rgba(242,140,40,0.35);

    border-radius: 50%;
}

.home2-fit-cta-car {
    position: relative;
    z-index: 2;

    width: 190px;
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;

    color: #FFFFFF;

    font-size: 82px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}


/* =========================================
   FLOATING BADGES
========================================= */

.home2-fit-cta-floating {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 11px 14px;

    background: #FFFFFF;

    border-radius: 5px;

    box-shadow: 0 15px 35px rgba(0,0,0,0.20);

    color: #172B4D;

    font-size: 9px;
    font-weight: 800;
}

.home2-fit-cta-floating i {
    color: #F28C28;
}

.home2-fit-cta-floating-top {
    right: 10px;
    top: 55px;
}

.home2-fit-cta-floating-bottom {
    left: 15px;
    bottom: 55px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .home2-fit-cta {
        padding: 80px 20px;
    }

    .home2-fit-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home2-fit-cta-content {
        max-width: 700px;
    }

    .home2-fit-cta-visual {
        min-height: 300px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .home2-fit-cta {
        min-height: auto;
        padding: 70px 16px;
    }

    .home2-fit-cta-content h2 {
        font-size: 35px;
    }

    .home2-fit-cta-content p {
        font-size: 12px;
    }

    .home2-fit-cta-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .home2-fit-cta-visual {
        min-height: 260px;
    }

    .home2-fit-cta-car-ring {
        width: 230px;
        height: 230px;
    }

    .home2-fit-cta-car-ring::after {
        width: 170px;
        height: 170px;

        left: 29px;
        top: 29px;
    }

    .home2-fit-cta-car {
        width: 145px;
        height: 145px;

        font-size: 58px;
    }

    .home2-fit-cta-floating {
        padding: 9px 11px;
        font-size: 8px;
    }

    .home2-fit-cta-floating-top {
        right: 0;
        top: 25px;
    }

    .home2-fit-cta-floating-bottom {
        left: 0;
        bottom: 25px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .home2-fit-cta {
        padding: 60px 14px;
    }

    .home2-fit-cta-content h2 {
        font-size: 30px;
    }

    .home2-fit-cta-visual {
        min-height: 230px;
    }

    .home2-fit-cta-car-ring {
        width: 200px;
        height: 200px;
    }

    .home2-fit-cta-car-ring::after {
        width: 145px;
        height: 145px;

        left: 26px;
        top: 26px;
    }

    .home2-fit-cta-car {
        width: 125px;
        height: 125px;

        font-size: 48px;
    }

}

/* =========================================
   HOME 2 - FAQ
========================================= */

.home2-faq {
    width: 100%;
    padding: 115px 20px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.home2-faq-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;

    align-items: start;
}


/* =========================================
   INTRO
========================================= */

.home2-faq-intro {
    position: sticky;
    top: 110px;

    max-width: 390px;
}

.home2-faq-label {
    display: inline-block;
    margin-bottom: 17px;

    color: #F28C28;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home2-faq-intro h2 {
    margin: 0 0 22px;

    color: #172B4D;

    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;

    letter-spacing: -1px;
}

.home2-faq-intro h2 strong {
    display: block;
    color: #F28C28;
}

.home2-faq-intro > p {
    margin: 0;

    color: #727982;

    font-size: 13px;
    line-height: 1.9;
}


/* =========================================
   CONTACT BUTTON
========================================= */

.home2-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    min-height: 47px;

    margin-top: 28px;
    padding: 0 19px;

    background: #172B4D;
    color: #FFFFFF;

    border-radius: 6px;

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.home2-faq-contact:hover {
    background: #F28C28;
}

.home2-faq-contact i {
    transition: transform 0.3s ease;
}

.home2-faq-contact:hover i {
    transform: translateX(4px);
}


/* =========================================
   FAQ LIST
========================================= */

.home2-faq-list {
    width: 100%;

    border-top: 1px solid #DDE1E6;
}


/* =========================================
   FAQ ITEM
========================================= */

.home2-faq-item {
    border-bottom: 1px solid #DDE1E6;
}

.home2-faq-item summary {
    min-height: 85px;

    display: grid;
    grid-template-columns: 40px 1fr 30px;
    align-items: center;

    gap: 20px;

    padding: 10px 5px;

    box-sizing: border-box;

    cursor: pointer;

    list-style: none;
}

.home2-faq-item summary::-webkit-details-marker {
    display: none;
}

.home2-faq-item summary > span {
    color: #AAB1BA;

    font-size: 10px;
    font-weight: 800;
}

.home2-faq-item summary strong {
    color: #172B4D;

    font-size: 13px;
    font-weight: 700;
}

.home2-faq-item summary i {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #DDE1E6;
    border-radius: 50%;

    color: #172B4D;

    font-size: 9px;

    transition: all 0.3s ease;
}

.home2-faq-item[open] summary i {
    transform: rotate(45deg);

    background: #F28C28;
    border-color: #F28C28;

    color: #FFFFFF;
}


/* =========================================
   ANSWER
========================================= */

.home2-faq-answer {
    padding: 0 55px 25px;
}

.home2-faq-answer p {
    max-width: 650px;

    margin: 0;

    color: #727982;

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .home2-faq {
        padding: 90px 20px;
    }

    .home2-faq-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home2-faq-intro {
        position: static;
        max-width: 650px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .home2-faq {
        padding: 75px 16px;
    }

    .home2-faq-inner {
        gap: 38px;
    }

    .home2-faq-intro h2 {
        font-size: 35px;
    }

    .home2-faq-intro > p {
        font-size: 12px;
    }

    .home2-faq-item summary {
        min-height: 75px;

        grid-template-columns: 28px 1fr 28px;

        gap: 10px;
    }

    .home2-faq-item summary strong {
        font-size: 12px;
        line-height: 1.5;
    }

    .home2-faq-answer {
        padding: 0 38px 22px;
    }

    .home2-faq-answer p {
        font-size: 11px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .home2-faq {
        padding: 65px 14px;
    }

    .home2-faq-intro h2 {
        font-size: 30px;
    }

    .home2-faq-item summary {
        grid-template-columns: 22px 1fr 26px;
        gap: 8px;
    }

    .home2-faq-item summary strong {
        font-size: 11px;
    }

    .home2-faq-answer {
        padding: 0 30px 20px;
    }

}