@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,600;0,800;1,700&family=Inter:wght@400;500;600&display=swap');

:root {
    --bg-black: #050505;
    --bg-dark: #121212;
    --bg-card: #1C1C1E;
    --bg-hover: #2A2A2D;
    --text-light: #F2F2F2;
    --text-muted: #A1A1AA;
    --accent-red: #E60000;
    --accent-dark-red: #B30000;

    --font-heading: 'Barlow', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --border-light: rgba(255, 255, 255, 0.1);
    --border-med: rgba(255, 255, 255, 0.2);
    --border-strong: rgba(255, 255, 255, 0.3);

    --header-bg: #ffffff;
    --hero-overlay: linear-gradient(90deg, rgba(5, 5, 5, 1) 0%, rgba(5, 5, 5, 0.6) 50%, rgba(5, 5, 5, 0) 100%);
    --page-header-overlay: rgba(18, 18, 18, 0.95);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --color-white: #fff;
    --color-absolute-white: #fff;
    --warn-bg: rgba(255, 165, 0, 0.1);
    --logo-filter: none;
}

[data-theme="light"] {
    --bg-black: #ffffff;
    --bg-dark: #f0f0f0;
    --bg-card: #f9f9f9;
    --bg-hover: #e8e8e8;
    --text-light: #121212;
    --text-muted: #555555;

    --border-light: rgba(0, 0, 0, 0.08);
    --border-med: rgba(0, 0, 0, 0.15);
    --border-strong: rgba(0, 0, 0, 0.25);

    --header-bg: rgba(255, 255, 255, 0.9);
    --hero-overlay: linear-gradient(90deg, rgba(230, 230, 230, 1) 0%, rgba(230, 230, 230, 0.6) 50%, rgba(230, 230, 230, 0) 100%);
    --page-header-overlay: rgba(255, 255, 255, 0.95);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    --color-white: #121212;
    --color-absolute-white: #fff;
    --warn-bg: rgba(255, 165, 0, 0.15);
    --logo-filter: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

.text-accent {
    color: var(--accent-red);
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

/* Layout & Utils */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 6rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-lg {
    padding: 8rem 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: right;
    transform: scaleX(0);
}

.btn:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--color-white);
    border: 1px solid var(--accent-red);
}

.btn-primary::before {
    background-color: var(--color-white);
}

.btn-primary:hover {
    color: var(--accent-red);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--border-strong);
}

.btn-outline::before {
    background-color: var(--color-white);
}

.btn-outline:hover {
    color: var(--bg-black);
    border-color: var(--color-white);
}

.btn-wa {
    background-color: #25D366;
    color: var(--color-white);
}

.btn-wa::before {
    background-color: #1FAF53;
}

/* Sticky Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000 !important;
    letter-spacing: -0.02em;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 2rem;
}

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000000 !important;
    position: relative;
    padding: 0.5rem 0;
}

#theme-toggle {
    color: #121212 !important;
    background: rgba(0, 0, 0, 0.05) !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    overflow: visible; /* Prevent clipping of nav items */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-shrink: 0;
    flex-wrap: nowrap; /* Keep all items on one line */
    overflow: visible;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #121212;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-icon {
    width: 30px;
    height: 2px;
    background: #121212;
    position: relative;
    transition: 0.3s;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #121212;
    transition: 0.3s;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

#menu-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    height: 0;
    width: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    max-width: 650px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    transform: scale(1.02);
    transition: var(--transition-smooth);
    background-color: #fff;
}

.hero-image img:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(230, 0, 0, 0.15);
    border-color: var(--accent-red);
}

.hero-sub {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Page Header (Inner Pages) */
.page-header {
    padding: 12rem 0 6rem;
    background-color: var(--bg-dark);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Brand Bar */
.brand-bar {
    background-color: var(--bg-dark);
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.brand-track {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
    opacity: 0.6;
}

.brand-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.brand-item:hover {
    color: var(--accent-red);
    opacity: 1;
}

/* Feature Cards (Highlights) */
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card {
    background-color: var(--bg-card);
    padding: 3rem 2rem;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: var(--bg-hover);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1.5rem;
}

/* Catalog Grid & Cards */
.catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 10px 40px rgba(230, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #222;
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-red);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
}

.product-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-family: var(--font-heading);
    color: var(--accent-red);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.product-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.product-spec {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.product-note {
    font-size: 0.85rem;
    color: #FFA500;
    margin-top: auto;
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Modal UI */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.modal-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
    background-color: var(--bg-dark);
}

.modal-header h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-red);
}

.modal-header p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    color: var(--text-muted);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    color: var(--accent-red);
    transform: scale(1.1);
}

.gallery-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    gap: 1.5rem;
}

.gallery-main {
    position: relative;
    background-color: var(--bg-black);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60vh;
    overflow: hidden;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(28, 28, 30, 0.8);
    border: 1px solid var(--border-med);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 5;
}

.gallery-arrow:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.prev-arrow {
    left: 1rem;
}

.next-arrow {
    right: 1rem;
}

.gallery-thumbs {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-red) var(--bg-dark);
}

.gallery-thumbs::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background-color: var(--accent-red);
    border-radius: 4px;
}

.gallery-thumb-img {
    height: 80px;
    width: 120px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.gallery-thumb-img:hover {
    opacity: 0.9;
}

.gallery-thumb-img.active {
    border-color: var(--accent-red);
    opacity: 1;
}

/* Filters UI */
.filter-bar {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-input,
.filter-select {
    width: 100%;
    background-color: var(--bg-black);
    color: var(--color-white);
    border: 1px solid var(--border-med);
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--accent-red);
}

/* Fitment Steps */
.step-card {
    display: flex;
    gap: 2rem;
    background-color: var(--bg-card);
    padding: 3rem;
    border: 1px solid var(--border-light);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-red);
    line-height: 1;
    opacity: 0.8;
}

/* Contact Grid */
.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--accent-red);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background-color: var(--border-light);
    border: 1px solid var(--border-med);
    color: var(--color-white);
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-red);
    background-color: var(--border-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Callout Box */
.warning-box {
    background-color: var(--warn-bg);
    border-left: 4px solid #FFA500;
    padding: 2rem;
    margin-bottom: 2rem;
}

.warning-box h4 {
    color: #FFA500;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations & Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revealAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Tablet Responsive (992px to 1400px) */
@media (min-width: 992px) and (max-width: 1400px) {
    .logo img {
        height: 50px !important;
    }

    .logo span {
        font-size: 1.1rem !important;
        letter-spacing: -0.01em;
    }

    .logo {
        gap: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .nav-menu {
        gap: 1rem !important; /* Tight gap to fit all items */
    }

    .nav-link {
        font-size: 0.82rem !important;
        letter-spacing: 0.01em;
    }

    /* Compact WhatsApp button */
    .nav-menu > a.btn-primary {
        padding: 0.5rem 0.7rem !important;
        font-size: 0.8rem !important;
        gap: 0.3rem;
        white-space: nowrap;
    }

    /* Compact theme toggle */
    #theme-toggle {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.85rem !important;
    }

    .nav-container {
        height: 80px !important;
    }
}

/* Mobile Responsive (max-width: 991px) */
@media (max-width: 991px) {
    .hero-bg img {
        opacity: 0.3;
    }

    .hero-overlay {
        background: var(--header-bg);
    }

    .nav-menu {
        position: absolute !important;
        top: 100px !important; /* Match header height */
        left: 0 !important;
        width: 100% !important;
        background-color: #ffffff !important;
        border-bottom: 2px solid var(--accent-red) !important;
        flex-direction: column !important;
        padding: 2rem 5% !important;
        gap: 1.5rem !important;
        display: none !important; /* Hidden by default on mobile */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
        z-index: 999 !important;
    }

    #menu-check:checked ~ .nav-menu {
        display: flex !important; /* Show when toggled */
    }

    #menu-check:checked~.menu-toggle .menu-icon {
        background: transparent;
    }

    #menu-check:checked~.menu-toggle .menu-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    #menu-check:checked~.menu-toggle .menu-icon::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem; /* Reduced gap */
        margin-top: 1rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        gap: 1rem !important; /* Vertical gap */
    }

    .hero-actions .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .logo {
        gap: 0.15rem; /* Reduced gap for narrow screens */
    }

    .logo img {
        height: 35px !important;
    }

    .logo span {
        font-size: 1rem !important; /* Slightly smaller for mobile */
        white-space: nowrap; /* Keep on one line if possible */
        letter-spacing: -0.01em;
    }
    
    @media (max-width: 360px) {
        .logo span {
            font-size: 0.85rem !important;
        }
    }

    .section {
        padding: 3.5rem 0; /* Tighter padding for mobile */
    }

    .page-header {
        padding: 8rem 0 4rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Make grid in about.html and services.html 1fr on mobile */
    .grid[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .timeline::before {
        left: 0 !important;
    }

    .timeline-item {
        width: 100% !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }

    .timeline-item.right {
        left: 0 !important;
    }

    .timeline-icon {
        left: 0 !important;
        transform: translateX(-50%) !important;
    }

    .brand-track {
        gap: 2rem;
    }
}

/* Reviews Marquee Animation */
@keyframes slideLeftToRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.reviews-marquee {
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0;
    overflow: hidden;
}

.reviews-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-container::before,
.reviews-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-card) 0%, transparent 100%);
}

.reviews-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-card) 0%, transparent 100%);
}

.reviews-track {
    display: inline-flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    /* width: max-content; handled by JS */
    padding-left: 2rem;
}

.review-card {
    background: var(--bg-black);
    border: 1px solid var(--border-med);
    padding: 2rem;
    border-radius: 12px;
    width: 400px;
    white-space: normal;
    flex-shrink: 0;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
}

.review-card .stars {
    color: #FFD700;
    font-size: 0.9rem;
    display: flex;
    gap: 0.2rem;
}

.review-card h4 {
    color: var(--accent-red);
    margin-bottom: 0;
    font-size: 1.2rem;
}

.review-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}