:root {
    --red: #D42B2B;
    --red-dark: #A81F1F;
    --red-glow: #FF3333;
    --black: #0A0A0A;
    --dark: #fff;
    --dark2: #fff;
    --dark3: #222222;
    --grey: #888;
    --light-grey: #CCCCCC;
    --white: #FFFFFF;
    --gold: #C9A227;
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --container: 1440px;
    --section-pad: 80px 0;
}

html {
    font-size: 16px;
    background: var(--black);
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 48px;
    }
}

.tag {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
}

.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    /* font-weight: 700; */
    font-size: 17px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 15px;
    border: none;
    cursor: pointer;
    /* clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%); */
    transition: all .2s ease-in-out;
    text-decoration: none;
    border-radius: 25px;
}

.btn-primary {
    background: #D42B2B;
    color: #fff;
}

.btn-primary:hover {
    background: var(--red-dark);
    /* transform: translateY(-2px); */
    border-radius: 25px;
    overflow: hidden;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .35);
    padding: 10.5px 28px;
}

.btn-outline:hover {
    border-color: var(--red);
    background: rgba(212, 43, 43, 0.1);
    transform: translateY(-2px);
}

.section-eyebrow {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1.1;
    color: #333;
    margin-bottom: 16px;
    letter-spacing: 1px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 30px;
    }
}

.section-sub {
    font-size: 17px;
    color: #000;
    line-height: 1.7;
    max-width: 560px;
}

.divider-red {
    width: 48px;
    height: 3px;
    background: var(--red);
    margin: 16px 0 24px;
}

.topbar {
    background: var(--red);
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 0;
}

.topbar .container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: center;
    align-items: center;
}

.topbar-item {
    font-family: var(--font-heading);
    font-size: 15px;
    /* font-weight: 600; */
    color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .5px;
}

.topbar-item svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.topbar-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
}

.social-icon svg {
    width: 12px;
    height: 12px;
    fill: white;
}

@media (min-width: 992px) {
    .topbar .container {
        flex-direction: row;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

header.header {
    background: var(--dark);
    min-height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    position: sticky;
    z-index: 100;
    top: 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-box {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%); */
    flex-shrink: 0;
}

.logo-text-gba {
    font-family: var(--font-display);
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-brand-name {
    margin-left: 10px;
}

.logo-brand-name .name {
    font-family: var(--font-display);
    font-size: 20px;
    color: #fff;
    line-height: 1;
    letter-spacing: 1px;
}

.logo-brand-name .sub {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

nav.nav-desktop {
    display: none;
    gap: 4px;
    align-items: center;
}

.nav-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    padding: 28px 14px;
    cursor: pointer;
    position: relative;
    transition: color .2s;
}

.nav-item:hover, .nav-item.active {
    color: var(--red);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--red);
}

.nav-item.has-drop::after {
    content: '';
    display: inline-block;
    margin-left: 2px;
    font-size: 11px;
    color: inherit;
}

.nav-item a {
    color: #333;
}

.desktop-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark2);
    border-top: 2px solid var(--red);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    list-style: none;
    padding: 8px 0;
}

.desktop-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.desktop-dropdown-menu li a:hover {
    background: var(--red);
    color: #fff;
    padding-left: 24px;
}

.nav-item:hover .desktop-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-actions {
    display: none;
    gap: 16px;
    align-items: center;
}

.header-search {
    width: 200px;
    height: 38px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
}

.header-search input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    width: 100%;
    font-family: var(--font-body);
}

.header-search input::placeholder {
    color: var(--grey);
}

.header-search svg {
    width: 14px;
    height: 14px;
    fill: var(--grey);
    flex-shrink: 0;
}

.btn-hotline {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    padding: 8px 16px;
    border-radius: 4px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
    text-decoration: none;
}

.btn-hotline .ph {
    font-family: var(--font-heading);
    font-size: 11px;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.btn-hotline .num {
    font-family: var(--font-display);
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    z-index: 105;
    padding: 90px 24px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.6);
    transition: right 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
    overflow-y: auto;
}

.nav-mobile.open {
    right: 0;
}

.nav-mobile-item {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
}

.mobile-drop-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    color: #fff;
    cursor: pointer;
}

.mobile-drop-btn::after {
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾';
    font-size: 12px;
    color: var(--red);
}

.mobile-dropdown {
    display: none;
    list-style: none;
    padding-left: 16px;
    background: rgba(0, 0, 0, 0.15);
    margin-top: 5px;
}

.mobile-dropdown li a {
    display: block;
    padding: 10px 0;
    color: var(--light-grey);
    text-decoration: none;
    font-size: 14px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

@media (min-width: 992px) {
    nav.nav-desktop {
        display: flex;
    }

    .header-actions {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .nav-mobile {
        display: none;
    }
}

@media (min-width: 1200px) {
    .header-search {
        width: 220px;
    }

    .btn-hotline .num {
        font-size: 18px;
    }
}

.hero {
    width: 100%;
    padding: 40px 0 60px;
    background: linear-gradient(105deg, #0A0A0A 0%, #1a0505 40%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 119px, rgba(255, 255, 255, .018) 120px);
    pointer-events: none;
}

.hero-diagonal {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(110deg, transparent 20%, rgba(212, 43, 43, .12) 60%, rgba(212, 43, 43, .06) 100%);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 5;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-eyebrow-line {
    width: 36px;
    height: 2px;
    background: var(--red);
}

.hero-eyebrow-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 54px;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 16px;
}

.hero-title .accent {
    color: var(--red);
    display: block;
}

.hero-title .outline {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, .3);
    color: transparent;
}

.hero-desc {
    font-size: 15px;
    color: var(--light-grey);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 500px;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--red);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--grey);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.car-placeholder-box {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 640/360;
    background: linear-gradient(135deg, rgba(212, 43, 43, .08) 0%, rgba(212, 43, 43, .02) 100%);
    border: 1px solid rgba(212, 43, 43, .2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.car-placeholder-box svg {
    width: 90%;
    height: auto;
}

.hero-car-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(212, 43, 43, .5) 0%, transparent 70%);
    filter: blur(12px);
    pointer-events: none;
}

@media (min-width: 992px) {
    .hero {
        min-height: 640px;
        padding: 0;
    }

    .hero-content .container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 84px;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
    }
}

.notice-bar {
    background: var(--dark2);
    border-top: 1px solid rgba(212, 43, 43, .3);
    border-bottom: 1px solid rgba(212, 43, 43, .3);
    min-height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.notice-bar .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.notice-label {
    /* background: var(--red); */
    padding: 5px 0px;
    display: inline-flex;
    align-items: center;
    /* font-family: var(--font-display); */
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--red);
    text-transform: uppercase;
    white-space: nowrap;
    /* clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 0 100%); */
}

.notice-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
}

.notice-item {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .notice-bar .container {
        flex-direction: row;
        align-items: center;
    }

    .notice-items {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .notice-items::-webkit-scrollbar {
        height: 0;
    }
}

.promo-strip {
    padding: 40px 0;
    background: #A81F1F;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.promo-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 6px;
    border-left: 3px solid #fff;
}

.promo-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 43, 43, .1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promo-item-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--red);
    stroke-width: 2;
}

.promo-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
}

.promo-item-sub {
    font-size: 16px;
    color: var(--grey);
    line-height: 1.5;
}

@media (min-width: 576px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .promo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cat-section {
    padding: var(--section-pad);
    background: var(--dark);
}

.cat-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.cat-card {
    /* background: var(--dark2); */
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
    padding: 24px 12px;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.cat-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

.cat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform .3s;
}

.cat-card:hover::before {
    transform: scaleX(1);
}

.cat-icon {
    /* width: 56px; */
    /* height: 56px; */
    background: rgba(212, 43, 43, .1);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--red);
}

.cat-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: #333;
    letter-spacing: .5px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.cat-count {
    font-size: 15px;
    color: var(--grey);
}

@media (min-width: 768px) {
    .cat-header {
        flex-direction: row;
        align-items: flex-end;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1200px) {
    .cat-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.products-section {
    padding: var(--section-pad);
    /* background: #fff; */
}

.sec-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .sec-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.tab-bar {
    display: flex;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 32px;
    overflow-x: auto;
    width: 100%;
    white-space: nowrap;
    padding-bottom: 0px;
}

.tab-bar::-webkit-scrollbar {
    height: 3px;
}

.tab-bar::-webkit-scrollbar-thumb {
    background: var(--red);
}

.tab {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey);
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all .2s;
}

.tab.active {
    color: var(--red);
    border-color: var(--red);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.prod-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    flex-direction: column;
}

.prod-card:hover {
    border-color: rgba(212, 43, 43, .5);
    box-shadow: 0 8px 32px rgba(212, 43, 43, .15);
}

.prod-img {
    width: 100%;
    height: 200px;
    background: var(--dark3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prod-img-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.prod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    color: #fff;
    padding: 3px 10px;
    border-radius: 2px;
    z-index: 2;
}

.prod-badge.new {
    background: #1a7a3a;
    left: auto;
    right: 12px;
}

.prod-badge.discount {
    left: 55px;
}

.prod-body {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prod-sku {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--grey);
    letter-spacing: 2px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.prod-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.35;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.prod-name a {
    color: #333;
}

.prod-meta {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    overflow-x: auto;
}

.prod-tag {
    font-size: 18px;
    background: rgba(255, 255, 255, .06);
    color: #232323;
    padding: 3px 8px;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, .08);
    /* font-weight: 600; */
}

.prod-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.prod-price {
    font-family: var(--font-display);
    font-size: 25px;
    color: var(--red);
    line-height: 1;
}

.prod-price-old {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--grey);
    text-decoration: line-through;
    margin-top: 4px;
}

.prod-btn {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.prod-btn:hover {
    background: var(--red-dark);
}

.prod-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

@media (min-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brands-section {
    padding: 32px 0;
    /* background: var(--dark3); */
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.brands-section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.brands-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 25px;
    letter-spacing: 3px;
    color: var(--grey);
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
}

.brands-list-box {
    width: 100%;
    position: relative;
}

.brands-list {
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* gap: 24px; */
    /* align-items: center; */
    /* justify-content: center; */
    width: calc(100% - 50px);
}

.brand-logo {
    font-family: var(--font-display);
    font-size: 18px;
    color: rgba(255, 255, 255, .2);
    letter-spacing: 2px;
    transition: color .2s;
    cursor: pointer;
}

.brand-logo:hover {
    color: rgba(255, 255, 255, .6);
}

@media (min-width: 768px) {
    .brands-section .container {
        flex-direction: row;
        gap: 0;
    }

    .brands-label {
        margin-right: 20px;
        padding-right: 20px;
        border-right: 1px solid rgba(255, 255, 255, .1);
        text-align: left;
        box-sizing: border-box;
        color: #910000;
    }

    .brands-list {
        /* justify-content: space-between; */
        /* flex: 1; */
        /* gap: 16px; */
    }

    .brand-logo {
        font-size: 22px;
    }
}

.services-section {
    padding: var(--section-pad);
    background: var(--dark2);
    position: relative;
    overflow: hidden;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}

.serv-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    cursor: pointer;
    transition: all .2s;
    position: relative;
}

.serv-item:hover, .serv-item.active {
    padding-left: 12px;
}

.serv-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--red);
}

.serv-num {
    font-family: var(--font-display);
    font-size: 17px;
    color: rgba(212, 43, 43, .3);
    line-height: 1;
    min-width: 36px;
}

.serv-item.active .serv-num {
    color: var(--red);
}

.serv-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.serv-desc {
    font-size: 16px;
    color: var(--grey);
    line-height: 1.6;
}

.services-right {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    overflow: hidden;
}

.serv-preview {
    padding: 24px;
}

.serv-preview-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #2a0a0a);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 43, 43, .15);
}

.serv-preview-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.serv-preview-text {
    font-size: 16px;
    color: var(--light-grey);
    line-height: 1.6;
    margin-bottom: 24px;
}

.serv-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

@media (min-width: 480px) {
    .serv-features {
        grid-template-columns: 1fr 1fr;
    }
}

.serv-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--light-grey);
}

.serv-feat::before {
    content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ';
    color: var(--red);
    font-weight: 700;
}

.serv-price-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--dark2);
    padding: 2px 16px;
    border-radius: 6px;
    border: 1px solid rgba(212, 43, 43, .2);
}

@media (min-width: 480px) {
    .serv-price-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.serv-price-label {
    /* font-family: var(--font-disp); */
    font-size: 15px;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.serv-price-val {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--red);
    font-weight: 300;
}

@media (min-width: 992px) {
    .services-layout {
        grid-template-columns: 35% 56%;
        gap: 80px;
    }

    .serv-preview {
        padding: 40px;
    }

    .serv-preview-img {
        height: 280px;
    }

    .serv-preview-title {
        font-size: 20px;
    }
}

.why-section {
    padding: var(--section-pad);
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.why-visual {
    position: relative;
    width: 100%;
    /* max-width: 420px; */
    /* margin: 0 auto; */
}

.why-main-box {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #1a0505 0%, #0a0a0a 100%);
    border: 1px solid rgba(212, 43, 43, .2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.why-stat-float {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--red);
    padding: 16px 20px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.why-stat-float .big {
    font-family: var(--font-display);
    font-size: 36px;
    color: #fff;
    line-height: 1;
    display: block;
}

.why-stat-float .small {
    font-family: var(--font-heading);
    font-size: 11px;
    color: rgba(255, 255, 255, .8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 15px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 6px;
    border-left: 3px solid var(--red);
    transition: all .2s;
    margin-bottom: 15px;
}

.why-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 43, 43, .12);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--red);
}

.why-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: #000;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.why-text {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

@media (min-width: 992px) {
    .why-grid {
        grid-template-columns: 35% 64%;
        gap: 80px;
    }

    .why-main-box {
        height: 440px;
    }

    .why-stat-float {
        bottom: -20px;
        right: -20px;
        padding: 20px 24px;
    }

    .why-stat-float .big {
        font-size: 42px;
    }

    .why-items {
        gap: 24px;
    }
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(110deg, #1a0505 0%, var(--red) 50%, #1a0505 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 119px, rgba(255, 255, 255, .03) 120px);
    pointer-events: none;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
}

.cta-left .cta-title {
    font-family: var(--font-display);
    font-size: 38px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
}

.cta-left .cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
    max-width: 480px;
    line-height: 1.6;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
}

.cta-phone-big {
    font-family: var(--font-display);
    font-size: 36px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1;
}

.cta-time {
    font-family: var(--font-heading);
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cta-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.cta-contact-row .btn-primary, .cta-contact-row .btn-outline {
    flex-grow: 1;
    max-width: 200px;
}

@media (min-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-section .container {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .cta-left .cta-title {
        font-size: 56px;
    }

    .cta-right {
        align-items: flex-end;
        width: auto;
    }

    .cta-phone-big {
        font-size: 42px;
    }

    .cta-contact-row {
        justify-content: flex-end;
    }
}

.footer {
    background: #891010;
    border-top: 1px solid rgba(212, 43, 43, .3);
    background: linear-gradient(to right, #ffffff, #891010);
}

.footer-main {
    /* padding: 0px 0; */
    padding-top: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.footer-grid > div:nth-child(2),.footer-grid > div:nth-child(3) {
	padding-top: 30px;
} 
.footer-logo-box {
    /* width: 64px; */
    /* height: 64px; */
    /* background: var(--red); */
    /* clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 32px;
    max-width: 100px;
    color: #fff;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 15px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

.footer-social:hover {
    background: var(--red);
    border-color: var(--red);
}

.footer-social svg {
    width: 14px;
    height: 14px;
    fill: var(--grey);
}

.footer-social:hover svg {
    fill: #fff;
}

.footer-col-title {
    font-family: var(--font-heading);
    /* font-weight: 700; */
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 15px;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color .2s;
}
.footer-link a{color: #fff;}
.footer-link:hover {
    color: var(--red);
}
.footer-link:hover a{
    color: #ff0
}

.footer-link::before {
    content: '';
    color: var(--red);
    font-size: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.fc-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 43, 43, .1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--red);
}

.fc-text {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}

.fc-text strong {
    color: #fff;
    display: block;
    /* font-family: var(--font-heading); */
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.footer-copy {
    font-size: 15px;
    color: #000;
    line-height: 1.5;
    font-weight: 600;
}

.footer-copy span {
    color: var(--red);
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-policy-link {
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-weight: 200;
}

.footer-policy-link:hover {
    color: #ff0;
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 400px 1fr 1fr 1.2fr;
        gap: 50px;
    }

    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.float-hotline {
    position: fixed;
    right: 16px;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
    transition: transform .2s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.phone {
    background: var(--red);
}

.float-btn.zalo {
    background: #0068FF;
}

.float-btn svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 24px;
    width: 40px;
    height: 40px;
    background: var(--dark3);
    border: 1px solid rgba(212, 43, 43, .4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    transition: all .2s;
}

.back-to-top:hover {
    background: var(--red);
}

.back-to-top:hover svg {
    fill: white;
}

.back-to-top svg {
    width: 16px;
    height: 16px;
    fill: var(--red);
}

@media (min-width: 768px) {
    .float-hotline {
        right: 28px;
        bottom: 100px;
        gap: 12px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
    }

    .back-to-top {
        right: 28px;
        bottom: 28px;
        width: 44px;
        height: 44px;
    }
}

.section-line-deco {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.section-line-deco .l1 {
    width: 40px;
    height: 3px;
    background: var(--red);
}

.section-line-deco .l2 {
    width: 12px;
    height: 3px;
    background: rgba(212, 43, 43, .4);
}

.section-line-deco .l3 {
    width: 6px;
    height: 3px;
    background: rgba(212, 43, 43, .2);
}
.bg-group{
	/* background: linear-gradient(to right, #ffffff, #686868); */
	background: linear-gradient(
180deg, #ffffff, #686868);
}
.none-desktop{display: none}


@media(max-width:768px) {
	.footer{
    	background: linear-gradient(180deg, #ffffff, #891010);
	}
	.social-contact-box{display: none !important}
	.notice-item{font-weight: 300}
	.none-mobile{display: none}
	.none-desktop{display: block;}
	.section-title{font-size: 27px;}
	.btn-outline{
	    padding: 2.5px 10px;
	    font-size: 14px;
	}
	.bg-group .btn-primary{
		font-size: 13px;
		background:none;
		border:1px solid var(--red);
		color: var(--red);
	}
	.tab{
		font-family: var(--font-heading);
	    font-size: 14px;
	    letter-spacing: 1px;
	    text-transform: uppercase;
	    color: #000;
	    padding: 12px 7px;
	    cursor: pointer;
	    border-bottom: 2px solid transparent;
	    transition: all .2s;
	            font-weight: normal;
	}
	.logo-box{width: 90px;}
}