/* ====== DESIGN TOKENS ====== */
:root {
    /* Colors */
    --bg-base: #ffffff;
    --bg-darker: #f5f5f5;
    --bg-glass: rgba(255, 26, 26, 0.05);
    --bg-glass-hover: rgba(255, 26, 26, 0.1);
    --border-glass: rgba(255, 26, 26, 0.2);
    
    --primary-color: #ff1a1a; /* Vibrant Red */
    --primary-glow: rgba(255, 26, 26, 0.4);
    --secondary-color: #cc0000; /* Darker Red */
    --secondary-glow: rgba(204, 0, 0, 0.4);
    
    --text-main: #333333;
    --text-muted: #666666;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ====== RESET & BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(to bottom, #ffffff 0%, #f0f2f5 100%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    line-height: 1.2;
    overflow-wrap: break-word;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 6rem 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.text-light { color: var(--text-muted); }

/* ====== UTILITIES & COMPONENTS ====== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--primary-glow);
    background-color: #e60000;
}

.btn-secondary {
    background-color: var(--bg-glass);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: var(--bg-glass-hover);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

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

.btn-block {
    display: block;
    width: 100%;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.align-center { align-items: center; }

/* ====== NAVBAR ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.navbar.scrolled .btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

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

.logo img {
    height: 35px;
    width: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.navbar.scrolled .logo-text {
    color: var(--text-main);
}

.navbar.scrolled .logo img {
    filter: invert(1) brightness(0.2);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    transition: var(--transition-fast);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.navbar .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .btn-secondary {
    color: var(--text-main);
    border-color: var(--border-glass);
    background: var(--bg-glass);
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-fast);
}

.navbar.scrolled .menu-toggle .bar {
    background-color: var(--text-main);
}

/* ====== HERO ====== */
.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;
    overflow: hidden;
    background-image: url('img/hero_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.7) 50%, rgba(10, 10, 12, 0.95) 100%);
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}

.orb-1 {
    width: 40vw;
    height: 40vw;
    background: var(--primary-color);
    top: -10vw;
    right: -10vw;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: var(--secondary-color);
    bottom: -20vw;
    left: -10vw;
    animation-delay: -5s;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ====== SECTION HEADERS ====== */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* ====== UNIFORMES ====== */
.price-tag {
    display: flex;
    align-items: flex-start;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.price-tag .currency {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.price-tag .amount {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.price-tag .mxn {
    font-size: 1rem;
    align-self: flex-end;
    margin-bottom: 1rem;
    margin-left: 0.5rem;
}

.price-tag.large .amount {
    font-size: 6rem;
}

.minimum-order {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.feature-list .icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.perspective-container {
    perspective: 1000px;
}

.image-glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 2rem;
    position: relative;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.image-glass-card:hover {
    transform: rotateY(0) rotateX(0);
}

.placeholder-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background: linear-gradient(45deg, #ffe6e6, #ffcccc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.5rem;
    overflow: hidden;
    position: relative;
}

.placeholder-image::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

.uniform-placeholder {
    background-image: url('img/uniforme_rojo.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
}

.floating-badge {
    position: absolute;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.badge-top-right {
    top: -15px;
    right: -15px;
}

/* ====== KITS DE CARRERAS ====== */
.kit-highlight-card {
    background: linear-gradient(135deg, rgba(255,26,26,0.1) 0%, rgba(255,255,255,0.01) 100%), url('img/kit_carrera.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

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

.kit-highlight-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%);
    z-index: 0;
}

.kit-content, .kit-features {
    position: relative;
    z-index: 1;
}

.kit-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.kit-content p {
    color: rgba(255, 255, 255, 0.85);
}

.kit-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    background: linear-gradient(145deg, #ffffff 0%, #f1f3f5 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

/* ====== OTROS PRODUCTOS ====== */
.product-card {
    background: linear-gradient(145deg, #ffffff 0%, #f1f3f5 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,255,136,0.1);
}

.card-image {
    height: 200px;
    background-color: #ffeeee;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medal-bg { background-image: url('img/medalla.webp'); }
.number-bg { background-image: url('img/numero.webp'); }
.shirt-bg { background-image: url('img/playera.webp'); }

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

/* ====== POR QUÉ NUYO ====== */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
}

.benefit-item h4 { margin-bottom: 0.25rem;}
.benefit-item p { color: var(--text-muted); font-size: 0.95rem;}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #ffffff 0%, #f1f3f5 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 20px;
}

.translate-y {
    transform: translateY(30px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====== RESEÑAS ====== */
.reviews-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none; /* Firefox */
}

.reviews-slider::-webkit-scrollbar { display: none; } /* Chrome */

.review-card {
    min-width: 350px;
    background: linear-gradient(145deg, #ffffff 0%, #f1f3f5 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    scroll-snap-align: start;
}

.stars {
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.reviewer-name {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.reviewer-team {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ====== NUESTROS TRABAJOS ====== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1; /* Makes them crisp squares */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #222; /* Placeholder color before img loads */
}

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

.portfolio-item:hover img {
    transform: scale(1.08); /* Nice visual pop */
}

/* ====== CONTACTO ====== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
}

.contact-info {
    padding: 4rem;
    background: linear-gradient(135deg, rgba(255,26,26,0.1) 0%, transparent 100%);
    border-right: 1px solid var(--border-glass);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details p {
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-form-container {
    padding: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255,26,26,0.2);
}

/* ====== WHATSAPP BUTTON ====== */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-normal);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

/* ====== ANIMATIONS ====== */
footer {
    background: var(--primary-color);
    color: #ffffff;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-glass);
}
footer h2, footer h3, footer p, footer a, footer .logo-text, footer .social-icon {
    color: #ffffff !important;
}

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

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h3, .footer-social h3 {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

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

.social-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition-fast);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-glass);
}

/* ====== ANIMATIONS ====== */
@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

@keyframes shine {
    100% { left: 200%; }
}

/* ====== FOOTER ====== */
footer {
    background: var(--primary-color);
    color: #ffffff;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-glass);
}

/* JS Init Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up.delay-1 { transition-delay: 0.2s; }
.animate-fade-up.delay-2 { transition-delay: 0.4s; }

.animate-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.delay-1 { transition-delay: 0.2s; }
.animate-on-scroll.delay-2 { transition-delay: 0.4s; }

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
    .kit-highlight-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info { border-right: none; border-bottom: 1px solid var(--border-glass); padding: 2rem; }
    .contact-form-container { padding: 2rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    .nav-links {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transition: 0.4s ease;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .menu-toggle { display: flex; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stat-card.translate-y { transform: translateY(0); }
    
    .footer-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand p { margin: 1rem auto; }
    .social-icons { justify-content: center; }
}

@media (max-width: 480px) {
    .price-tag .amount { font-size: 3.5rem; }
    .price-tag.large .amount { font-size: 4rem; }
    .section { padding: 4rem 0; }
    .kit-features { grid-template-columns: 1fr; }
    
    .stats-grid { gap: 0.5rem; }
    .stat-card { padding: 1.2rem 0.5rem; min-width: 0; overflow: hidden; }
    .stat-number { font-size: 2.2rem; }
    .stat-label { font-size: 0.8rem; word-break: break-word; }
    
    .review-card { min-width: 80vw; padding: 1.5rem; }
}
