:root {
    --blue: #1D3D5D;
    --orange: #E68A2E;
    --light: #f4f7f9;
    --white: #ffffff;
    --gray: #666;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Segoe UI', sans-serif; background: var(--light); color: var(--blue); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: var(--white); padding: 10px 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 45px; }
.main-title {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--blue);
    letter-spacing: 0.03em;
    display: block;
}
.subtitle {
    font-family: 'Segoe UI', sans-serif;
    color: var(--orange);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 1px;
}

.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--blue); font-weight: 600; font-size: 0.9rem; }

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.menu-toggle .bar {
    width: 24px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

html {
    scroll-padding-top: 80px; /* Evita que el contenido quede oculto tras el header fijo */
}

section {
    scroll-margin-top: 90px; /* Ancla de secciones visible bajo el header */
}

/* --- Mejoras al Hero con Imagen de Fondo --- */
.hero {
    background-image: linear-gradient(to right, rgba(29, 61, 93, 0.95) 30%, rgba(29, 61, 93, 0.3) 100%), 
                      url('https://images.unsplash.com/photo-1516937941344-00b4e0337589?q=80&w=1600');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    max-width: 850px;
    z-index: 2;
    position: relative; /* Asegura que el contenido esté sobre el fondo */
}

/* El resto de los estilos internos del hero se mantienen igual para la legibilidad */
.hero .badge {
    background: var(--orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--white); /* Texto principal en blanco */
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Estilo para la palabra 'highlight' (Compromiso) dentro del H1 */
.hero h1 .highlight {
    color: var(--orange); /* O el color que prefieras resaltar */
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin: 25px 0 40px;
    color: #e0e0e0; /* Gris muy claro para legibilidad */
    max-width: 700px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Botones del hero para que resalten */
.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--blue);
}

/* --- Sección de Compromiso --- */
.commitment-section {
    padding: 100px 0;
    background: var(--white);
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    color: var(--orange);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.commitment-text h3 {
    font-size: 2.2rem;
    color: var(--blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-blue { color: var(--blue); border-bottom: 3px solid var(--orange); }

.pillar {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.pillar-icon {
    font-size: 1.5rem;
    color: var(--orange);
    background: #fff5eb;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.pillar-info h4 {
    color: var(--blue);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.pillar-info p {
    color: #555;
    font-size: 0.95rem;
}

/* --- Mejora de la imagen de compromiso --- */
.commitment-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.commitment-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--orange); /* Cambiado a naranja para resaltar */
}

/* Badge flotante sobre la imagen para dar autoridad */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 5;
}

.experience-badge span {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.8rem;
    margin: 0;
    font-weight: 600;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .commitment-image img {
        height: 300px;
        box-shadow: 10px 10px 0px var(--light);
    }
    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 10px;
    }
}

/* Responsividad para el Hero y Compromiso */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.active {
        max-height: 260px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        text-align: center;
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    header { padding: 8px 0; }

    .hero { text-align: center; justify-content: center; padding-top: 70px; height: calc(100vh - 70px); }
    .hero h1 { font-size: 2.5rem; }
    .commitment-grid { grid-template-columns: 1fr; }
    .commitment-image { order: -1; } /* Imagen arriba en móviles */

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .modern-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .feature {
        flex: 1;
        min-width: 140px;
        padding: 8px 0;
    }
}

/* Catálogo Estilo Ecommerce */
.catalog-section { padding: 80px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 40px; }

.catalog-note {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--orange);
}

.catalog-note p {
    margin: 0;
    color: var(--blue);
    font-size: 0.95rem;
    line-height: 1.5;
}

.catalog-note .contact-link {
    color: var(--orange);
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.catalog-note .contact-link:hover {
    border-bottom-color: var(--orange);
}

.catalog-container { display: flex; flex-direction: column; align-items: center; }

.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px)); 
    gap: 25px; 
    justify-content: center; /* Centra los items si hay pocos */
    width: 100%;
}

.product-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.product-card img {
    width: 180px; /* Imagen más pequeña */
    height: 180px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
}

.product-card h3 { font-size: 1rem; margin-bottom: 10px; min-height: 40px; }
.btn-ws-card { 
    background: #25d366; 
    color: white; 
    padding: 10px; 
    border-radius: 6px; 
    text-decoration: none; 
    font-weight: bold; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px;
    font-size: 0.9rem;
}

/* Paginación */
.pagination { margin-top: 40px; display: flex; gap: 10px; }
.page-btn { 
    padding: 8px 16px; 
    border: 1px solid var(--blue); 
    background: white; 
    color: var(--blue); 
    cursor: pointer; 
    border-radius: 4px; 
    font-weight: bold;
}
.page-btn.active { background: var(--blue); color: white; }

/* Contacto & Footer */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue) 0%, #0a2540 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.02"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.02"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, #e0e6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.feature i {
    color: var(--orange);
    font-size: 1.2rem;
    width: 20px;
}

.feature span {
    font-weight: 500;
    opacity: 0.95;
}

/* Formulario Moderno */
.modern-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--orange);
    font-size: 1rem;
    z-index: 2;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-wrapper.focused input,
.input-wrapper.focused textarea {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(230, 138, 46, 0.1);
}

.input-wrapper.error input,
.input-wrapper.error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.input-wrapper.success input,
.input-wrapper.success textarea {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Mensaje de envío */
.sending-message {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    animation: slideInUp 0.5s ease-out;
    position: relative;
}

.sending-message i {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.sending-message h3 {
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.sending-message p {
    margin: 0;
    opacity: 0.95;
    font-size: 1rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #adb5bd;
    opacity: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--orange) 0%, #d67a1a 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: none;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 20px rgba(214, 122, 26, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 138, 46, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit i {
    font-size: 1rem;
}

/* Animaciones de entrada */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-form {
    animation: slideInUp 0.6s ease-out;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.btn-submit { animation-delay: 0.5s; }

.form-group,
.btn-submit {
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

footer { background: #11263a; color: #ccc; padding: 30px 0; text-align: center; }
.footer-socials { margin-top: 15px; display: flex; justify-content: center; gap: 20px; }
.ws-link { color: #25d366; text-decoration: none; font-weight: bold; }

.btn-primary { background: var(--orange); color: white; border: none; padding: 12px 25px; border-radius: 5px; cursor: pointer; font-weight: bold; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Evita que el header tape el inicio de la sección */
}

/* Botón flotante WhatsApp */
.fab-whatsapp {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #1dc56d 0%, #24c76e 35%, #13a34e 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    box-shadow: 0 12px 28px rgba(25, 140, 74, 0.38), 0 0 0 0 rgba(37, 211, 102, 0.35);
    z-index: 2000;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    animation: pulseWhatsApp 2.2s infinite ease-in-out;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.fab-whatsapp::after {
    content: '';
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: ringWhatsApp 2.5s infinite ease-out;
    opacity: 0;
}

.fab-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 16px 32px rgba(25, 140, 74, 0.45), 0 0 0 6px rgba(37, 211, 102, 0.18);
    filter: brightness(1.05);
    animation: none;
}

@keyframes pulseWhatsApp {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.03); }
}

@keyframes ringWhatsApp {
    0% { transform: scale(0.7); opacity: 0.65; }
    70% { transform: scale(1.4); opacity: 0.0; }
    100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 540px) {
    .fab-whatsapp {
        right: 12px;
        bottom: 12px;
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

/* ====== GALERÍA MODAL ====== */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.gallery-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.gallery-close:hover {
    color: var(--orange);
    transform: scale(1.2);
}

.gallery-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    padding: 30px 0;
    gap: 20px;
}

#main-image {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--orange);
    color: white;
    border: none;
    font-size: 28px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    z-index: 5;
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-nav:hover {
    background: #d67a1a;
    transform: translateY(-50%) scale(1.1);
}

.gallery-info {
    padding: 30px;
    text-align: center;
}

.gallery-info h3 {
    color: var(--blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: 0.3s;
    opacity: 0.6;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.active {
    border-color: var(--orange);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive para tabletas */
@media (max-width: 768px) {
    .gallery-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .gallery-wrapper {
        padding: 15px 0;
        gap: 10px;
    }

    #main-image {
        max-height: 350px;
    }

    .gallery-nav {
        padding: 10px 15px;
        font-size: 22px;
    }

    .gallery-nav:before {
        content: attr(data-label);
    }

    .gallery-info {
        padding: 15px;
    }

    .gallery-info h3 {
        font-size: 1.3rem;
    }

    .gallery-thumb {
        width: 60px;
        height: 60px;
    }
}

/* Responsive para móviles */
@media (max-width: 480px) {
    .gallery-modal-content {
        width: 98%;
        margin: 20% auto;
        border-radius: 10px;
    }

    .gallery-close {
        right: 10px;
        top: 10px;
        font-size: 28px;
    }

    .gallery-wrapper {
        padding: 10px 5px;
        gap: 5px;
    }

    #main-image {
        max-height: 250px;
    }

    .gallery-nav {
        padding: 8px 12px;
        font-size: 20px;
    }

    .gallery-prev {
        left: 5px;
    }

    .gallery-next {
        right: 5px;
    }

    .gallery-info {
        padding: 12px;
    }

    .gallery-info h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .gallery-thumb {
        width: 50px;
        height: 50px;
    }

    .gallery-thumbs {
        gap: 8px;
    }

    .btn-primary {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .modern-form {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .input-wrapper input,
    .input-wrapper textarea {
        padding: 12px 12px 12px 40px;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .contact-features {
        flex-direction: column;
        gap: 8px;
    }

    .feature {
        min-width: unset;
        padding: 6px 0;
    }
}

/* Responsive extra para navegación y catálogo */
@media (max-width: 820px) {
    .header-content { flex-wrap: wrap; gap: 10px; }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        background: rgba(17, 38, 58, 0.95);
        flex-direction: column;
        width: 210px;
        height: calc(100vh - 70px);
        padding: 20px;
        gap: 15px;
        transition: right 0.3s ease;
        display: flex;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: white;
        font-size: 1rem;
        width: 100%;
    }

    .menu-toggle { display: flex; cursor: pointer; }

    .product-card {
        width: 100%;
        max-width: 100%;
    }

    .product-card img { width: 100%; height: auto; }

    .contact-wrapper { display: flex; flex-direction: column; }

    .catalog-note p { font-size: 0.95rem; }
}
