/*
* Ribero Gru - Main Stylesheet
* Modern, Professional Transport Company Website
* Colori: Nero e Rosso (come da logo aziendale)
*/

/* ============================
   CSS Variables
   ============================ */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #e10713;
    --accent-hover: #b8050f;
    --accent-light: #ff1a26;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-accent: linear-gradient(135deg, #e10713 0%, #ff1a26 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ============================
   Base Styles
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

/* ============================
   Top Bar
   ============================ */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar a {
    color: var(--white);
}

.top-bar a:hover {
    color: var(--accent-color);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 10px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* ============================
   Navbar
   ============================ */
.navbar {
    background: var(--white);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    max-height: 45px;
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.logo-img {
    margin-right: 10px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 40px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    border-color: var(--text-dark);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-preventivo {
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
}

/* ============================
   Hero Section
   ============================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(40, 40, 40, 0.75) 100%);
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: url('../img/hero/hero-bg.jpg') center center / cover no-repeat;
    background-color: var(--secondary-color);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================
   Section Headers
   ============================ */
.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ============================
   About Section
   ============================ */
.about-image-wrapper {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-features {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature-item i {
    font-size: 1.25rem;
    margin-right: 12px;
}

.feature-item span {
    font-weight: 500;
}

/* ============================
   Services Section
   ============================ */
.services-section {
    background: var(--gradient-dark);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png') repeat;
    opacity: 0.05;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.service-card:hover .service-icon {
    background: var(--accent-color);
}

.service-card:hover .service-icon i {
    color: var(--primary-color);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ============================
   Why Choose Us
   ============================ */
.why-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 25px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.why-card h5 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

/* ============================
   Automezzi Section
   ============================ */
.mezzo-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
}

.mezzo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mezzo-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.mezzo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    background: var(--light-bg);
}

.mezzo-card:hover .mezzo-img img {
    transform: scale(1.1);
}

.mezzo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.mezzo-card:hover .mezzo-overlay {
    opacity: 1;
}

.mezzo-info {
    padding: 20px;
}

.mezzo-info h5 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.mezzo-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================
   CTA Section
   ============================ */
.cta-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--accent-color);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.cta-section .container {
    position: relative;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.cta-section .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
}

/* ============================
   Page Header (Subpages)
   ============================ */
.page-header {
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 120px 0 60px;
    margin-top: -76px;
    padding-top: 150px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(40, 40, 40, 0.8) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header .page-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.page-header .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.page-header .breadcrumb-item a:hover {
    color: var(--accent-color);
}

.page-header .breadcrumb-item.active {
    color: var(--accent-color);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================
   Certifications
   ============================ */
.certification-logo {
    max-height: 100px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.certification-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ============================
   Footer
   ============================ */
.footer {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    z-index: 2;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand h4 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer-top h5 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-top h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* ============================
   Scroll to Top
   ============================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-5px);
}

/* ============================
   Buttons
   ============================ */
.btn-accent {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
}

.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
}

.btn-warning {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
}

.btn-warning:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
}

.btn-dark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-dark:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-light:hover {
    color: var(--primary-color);
}

/* ============================
   Responsive Styles
   ============================ */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-section {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Navbar Mobile */
    .navbar .container {
        position: relative;
    }
    
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
    
    .navbar-toggler {
        border: none;
        padding: 8px;
        z-index: 2;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar .btn-accent {
        padding: 8px 15px;
        font-size: 0.85rem;
        z-index: 2;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
        border: 1px solid rgba(0,0,0,0.1);
        border-top: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        z-index: 1000;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-link {
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .cta-section::before {
        display: none;
    }
    
    .cta-section .text-lg-end {
        margin-top: 30px;
    }
    
    .experience-badge {
        right: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn:last-child {
        margin-left: 0 !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-image-wrapper {
        margin-bottom: 50px;
    }
    
    .experience-badge {
        bottom: -10px;
        right: 10px;
        padding: 20px;
    }
    
    .experience-badge .years {
        font-size: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .cta-section .btn:last-child {
        margin-left: 0 !important;
    }
    
    .footer-top {
        padding: 50px 0 30px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .brand-text {
        font-size: 1.25rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}

/* ============================
   Utility Classes
   ============================ */
.rounded-4 {
    border-radius: 20px !important;
}

/* Automezzi Section Features List */
.automezzi-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.automezzi-features li {
    padding: 8px 0;
    font-size: 1.05rem;
}

.automezzi-features li i {
    margin-right: 10px;
}

.automezzi-image {
    position: relative;
}

.text-warning {
    color: var(--accent-color) !important;
}

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

/* ============================
   Admin Login Button (optional)
   ============================ */
.admin-login {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0.5;
    transition: var(--transition);
    z-index: 999;
}

.admin-login:hover {
    opacity: 1;
    background: var(--primary-color);
    color: var(--white);
}
/* ============================
   Pagina Dettaglio Mezzo
   ============================ */
.mezzo-image-wrapper {
    position: relative;
}

.mezzo-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mezzo-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-bg);
}

.mezzo-info .badge.bg-accent {
    background: var(--accent-color) !important;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 16px;
}

.mezzo-title {
    font-weight: 700;
    color: var(--text-dark);
}

.mezzo-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-bg);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    flex: 1;
    min-width: 200px;
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.spec-content {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.spec-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.mezzo-description h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.mezzo-actions .btn {
    padding: 12px 24px;
}

.specifiche-box {
    border-left: 4px solid var(--accent-color);
}

.specifiche-box h4 {
    font-weight: 700;
}

.specifiche-content {
    white-space: pre-line;
    line-height: 1.8;
}

/* Vehicle Card (per correlati) */
.vehicle-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.vehicle-image {
    height: 200px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-placeholder {
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
}

.vehicle-body {
    padding: 20px;
}

.vehicle-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.vehicle-specs {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .mezzo-specs {
        flex-direction: column;
    }
    
    .spec-item {
        min-width: 100%;
    }
    
    .mezzo-placeholder {
        height: 250px;
    }
}