/* ── Variables ── */
:root {
    --bg: #0d0d0d;
    --surface: #141414;
    --accent: #ff3c3c;
    --accent-glow: rgba(255, 60, 60, 0.35);
    --text: #f5f5f5;
    --text-muted: #999;
    --radius: 16px;
    --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) var(--bg);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── Custom Scrollbar (WebKit) ── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ── Selection ── */
::selection {
    background: var(--accent);
    color: #fff;
}
::-moz-selection {
    background: var(--accent);
    color: #fff;
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1200px;
}

.accent {
    color: var(--accent);
}

/* ── Accessibility: Skip Link ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    z-index: 200;
    font-weight: 700;
    font-size: 0.9rem;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 1rem;
}

/* ── Accessibility: Focus Visible ── */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.service-card:focus-visible,
iframe:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ── Touch & Interaction ── */
a, button, .btn, .service-card {
    touch-action: manipulation;
}

.nav-socials a,
.social-icons a,
.phone-link,
.nav-phone,
.brand-item {
    cursor: pointer;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-primary:hover {
    background: #fff;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--accent-glow);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* Active/Press feedback */
.btn:active {
    transform: scale(0.96);
    transition-duration: 0.1s;
}

.btn-outline-hero {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    background: transparent;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.btn-outline-hero:hover {
    border-color: #fff;
    background: #fff;
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px var(--accent-glow); }
    50% { box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(255, 60, 60, 0.15); }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.2;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent);
}

.nav-socials {
    display: flex;
    gap: 0.5rem;
}

.nav-socials a {
    font-size: 1.3rem;
    color: var(--text);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
}

.nav-socials a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.nav-socials a:active,
.social-icons a:active {
    transform: scale(0.85);
    transition-duration: 0.1s;
}

/* Social brand colors on hover */
.nav-socials a[href*="facebook"]:hover,
.social-icons a[href*="facebook"]:hover {
    color: #1877F2;
}
.nav-socials a[href*="instagram"]:hover,
.social-icons a[href*="instagram"]:hover {
    color: #E4405F;
}
.nav-socials a[href*="tiktok"]:hover,
.social-icons a[href*="tiktok"]:hover {
    color: #00f2ea;
}

.nav-phone {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--accent);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 1rem;
    letter-spacing: 0.5px;
}

.nav-phone i {
    color: var(--accent);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.nav-phone:hover {
    color: #fff;
}

.nav-phone:hover i {
    color: #fff;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
    background: url('assets/images/hero_tyre.png') center center / cover no-repeat;
}

#particles-js {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.8) 0%,
        rgba(13, 13, 13, 0.8) 70%,
        rgba(13, 13, 13, 1) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.badge:hover {
    border-color: rgba(255, 60, 60, 0.3);
}

.badge i {
    color: var(--accent);
    margin-right: 0.4rem;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subheading {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

/* ── Trust Bar ── */
.trust-bar {
    padding: 5rem 0;
    position: relative;
}

.trust-bar::before {
    display: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.counter-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
}

.counter {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text);
}

.trust-plus {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.3;
}

/* ── Social Proof ── */
.social-proof {
    padding: 5rem 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.google-icon {
    font-size: 2rem;
    color: #4285F4;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #FBBC05;
}

.score {
    font-size: 1.2rem;
}

.happy-customers {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.counter-small {
    font-weight: 700;
    color: var(--text);
}

/* Reviews Scroll */
.reviews-scroll-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-scroll {
    display: flex;
    gap: 1.5rem;
    animation: scrollReviews 30s linear infinite;
    width: max-content;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    min-width: 300px;
    max-width: 300px;
    padding: 2rem;
    flex-shrink: 0;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-top h4 {
    font-weight: 700;
}

.review-top .stars {
    font-size: 0.85rem;
}

.review-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.glass-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ── Services ── */
.services {
    padding: 6rem 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 60, 60, 0.15), transparent);
}

.services-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    opacity: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 60, 60, 0.06), transparent 70%);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 10px 40px rgba(255, 60, 60, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:active {
    transform: scale(0.98);
    transition-duration: 0.1s;
}

.free-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.icon-large {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tall-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ── Why Choose Us ── */
.why-choose-us {
    padding: 6rem 0;
}

.wcu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.massive-text {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
}

.text-stroke {
    -webkit-text-stroke: 2px var(--accent);
    color: transparent;
}

.wcu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wcu-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.wcu-icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 60, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    transition: var(--transition);
}

.wcu-list li:hover .wcu-icon-box {
    background: rgba(255, 60, 60, 0.2);
    transform: scale(1.05);
}

.wcu-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.wcu-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ── Gallery ── */
.gallery-section {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 60, 60, 0.15), transparent);
}

.gallery-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.gallery-row {
    display: flex;
    gap: 1rem;
    width: max-content;
}

.gallery-row-1 {
    animation: galleryScrollLeft 40s linear infinite;
}

.gallery-row-2 {
    animation: galleryScrollRight 40s linear infinite;
}

@keyframes galleryScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes galleryScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.gallery-item {
    flex-shrink: 0;
    width: 320px;
    height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(255, 60, 60, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

@media (max-width: 480px) {
    .gallery-item {
        width: 220px;
        height: 150px;
    }
}

/* ── Brands Scroll ── */
.brands-section {
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 60, 60, 0.15), transparent);
}

.brands-scroll-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    margin-top: 2rem;
}

.brands-scroll {
    display: flex;
    gap: 3rem;
    animation: scrollBrands 25s linear infinite;
    width: max-content;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
    transition: var(--transition);
}

.brand-item:hover {
    opacity: 1;
    color: var(--text);
}

.brands-note {
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ── Location / Contact ── */
.location-contact {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 6rem 0;
}

.map-iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.contact-card {
    width: 380px;
    padding: 2.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-detail i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.phone-link {
    font-weight: 600;
    transition: var(--transition);
}

.phone-link:hover {
    color: #fff;
}

.hours-table {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-row .time {
    font-weight: 600;
    color: var(--text);
}

.highlight-row {
    color: var(--accent) !important;
}

.highlight-row .time {
    color: var(--accent) !important;
}

/* ── Footer ── */
footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.footer-brand h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-contact h3,
.footer-socials h3 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.footer-contact a,
.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icons a {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
}

.social-icons a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ── Back to Top Button ── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    touch-action: manipulation;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #fff;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px var(--accent-glow);
}

.back-to-top:active {
    transform: scale(0.9);
    transition-duration: 0.1s;
}

.back-to-top:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .massive-text {
        font-size: 3rem;
    }

    .wcu-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wcu-list li {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .navbar {
        position: absolute;
    }

    .nav-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem 1rem;
    }

    .nav-left {
        display: none;
    }

    .nav-right {
        order: 2;
    }

    .nav-phone {
        font-size: 1rem;
        padding: 0.25rem 0.5rem;
    }

    .logo {
        text-align: center;
        width: 100%;
        order: 1;
    }

    .hero {
        padding-top: 80px;
        justify-content: center;
        text-align: center;
        background-position: center center;
    }

    .hero-content {
        margin: 0 auto;
        max-width: 100%;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(13, 13, 13, 0.85) 0%,
            rgba(13, 13, 13, 0.85) 70%,
            rgba(13, 13, 13, 1) 100%
        );
    }

    .hero h1 {
        font-size: 3rem;
    }

    .contact-card {
        width: 100%;
        border-radius: 12px;
    }

    .location-contact {
        padding: 4rem 0;
        min-height: auto;
        justify-content: center;
    }

    .contact-container {
        padding: 0 1rem;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .massive-text {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .trust-item::after {
        display: none;
    }

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

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }

    .pulse-effect {
        animation: none;
    }

    .reviews-scroll,
    .brands-scroll {
        animation: none;
        overflow-x: auto;
    }
}
