/* ============================================
   styles.css - Estilos globales Rancho Sonora
   ============================================ */

/* ============================================
   VARIABLES GLOBALES
   ============================================ */
:root {
    --sky: #eaf4f6;
    --sky-deep: #2f6f7a;
    --sky-deep-dark: #245660;
    --pasture: #4c8c68;
    --pasture-dark: #2f6b49;
    --pasture-light: #dcefe1;
    --leaf: #5aa24a;
    --leaf-dark: #3d7f34;
    --wheat: #e3ac4c;
    --wheat-dark: #c1872c;
    --barn: #c1554a;
    --barn-dark: #9c3f36;
    --ink: #26332c;
    --ink-soft: #5c6b62;
    --cloud: #ffffff;
    --soil-light: #dde6de;
    --paper: #f6f8f4;
    --shadow: rgba(47, 107, 73, 0.12);
    --radius: 22px;
    --radius-sm: 16px;
    --radius-xs: 10px;
    --transition: 0.15s;
}

/* ============================================
   RESET Y BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #dcf0f2 0%, #eaf4ee 40%, #f6f8f4 100%);
    display: flex;
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
}

/* ============================================
   APP CONTAINER - OCUPA 100%
   ============================================ */
.app {
    max-width: 100%;          /* ← OCUPA EL 100% EN TABLET */
    width: 100%;
    background: var(--cloud);
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid var(--soil-light);
    box-shadow: 0 16px 40px var(--shadow);
    position: relative;
}

/* ============================================
   HEADER
   ============================================ */
.app-header {
    margin-bottom: 10px;
}

.app-header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--pasture-dark);
    display: flex;
    align-items: center;
    gap: 14px;
}

.app-header h1 .badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(150deg, var(--leaf), var(--pasture-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 10px rgba(47, 107, 73, 0.35);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.app-header h1 small {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.68rem;
    color: var(--sky-deep);
    letter-spacing: 1.5px;
    margin-left: auto;
    background: var(--sky);
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.horizon-divider {
    height: 4px;
    margin: 2px 0 20px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--leaf), var(--wheat), var(--sky-deep));
}

/* ============================================
   NAVEGACIÓN (TABS)
   ============================================ */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.tab {
    background: var(--paper);
    border: 1.5px solid var(--soil-light);
    padding: 10px 18px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.tab i {
    color: var(--pasture);
}

.tab:hover {
    border-color: var(--pasture);
    color: var(--ink);
}

.tab.active {
    background: var(--pasture-dark);
    color: #fff;
    border-color: var(--pasture-dark);
    box-shadow: 0 4px 10px rgba(47, 107, 73, 0.25);
}

.tab.active i {
    color: #fff;
}

/* ============================================
   CONTENEDOR DE PÁGINAS
   ============================================ */
.page-container {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0.6;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================
   BLOQUES Y TARJETAS
   ============================================ */
.bloque {
    background: var(--paper);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    border: 1px solid var(--soil-light);
    margin-bottom: 22px;
}

.bloque h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.bloque h3 i {
    color: var(--pasture);
}

.bloque h3 span {
    background: var(--pasture-light);
    color: var(--pasture-dark);
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: auto;
    font-weight: 700;
}

/* ============================================
   CAMPOS DE FORMULARIO
   ============================================ */
.campo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-bottom: 12px;
}

.campo label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
    min-width: 110px;
}

.campo input,
.campo select,
.campo textarea {
    flex: 1;
    min-width: 140px;
    background: #fff;
    border: 1.5px solid var(--soil-light);
    border-radius: var(--radius-xs);
    padding: 10px 14px;
    font-size: 0.9rem;
    outline: 0;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.campo input:focus,
.campo select:focus,
.campo textarea:focus {
    border-color: var(--pasture);
    box-shadow: 0 0 0 3px rgba(76, 140, 104, 0.15);
}

.campo textarea {
    resize: vertical;
    min-height: 60px;
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
    background: var(--pasture-dark);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 12px;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    background: #255a3c;
    transform: scale(1.01);
}

.btn:active {
    transform: scale(0.98);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.75rem;
    width: auto;
    margin: 0;
    border-radius: 20px;
}

.btn-success {
    background: var(--leaf);
}

.btn-success:hover {
    background: var(--leaf-dark);
}

.btn-primary {
    background: var(--sky-deep);
}

.btn-primary:hover {
    background: var(--sky-deep-dark);
}

.btn-warning {
    background: var(--wheat);
    color: var(--ink);
}

.btn-warning:hover {
    background: var(--wheat-dark);
}

.btn-danger {
    background: var(--barn);
}

.btn-danger:hover {
    background: var(--barn-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--pasture-dark);
    color: var(--pasture-dark);
}

.btn-outline:hover {
    background: var(--pasture-dark);
    color: #fff;
}

.btn-big {
    font-size: 1.4rem;
    padding: 20px 24px;
    border-radius: 20px;
    font-weight: 800;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================
   TABLAS
   ============================================ */
.tabla {
    background: var(--paper);
    border-radius: var(--radius-sm);
    border: 1px solid var(--soil-light);
    overflow: hidden;
    margin-top: 6px;
}

.tabla-scroll {
    overflow-x: auto;
    padding: 4px 2px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

th {
    text-align: left;
    padding: 12px 12px 8px;
    color: #fff;
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--pasture-dark);
}

td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--soil-light);
    color: var(--ink);
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) td {
    background: rgba(76, 140, 104, 0.04);
}

tr:hover td {
    background: rgba(76, 140, 104, 0.08);
}

.empty {
    text-align: center;
    color: #9aa79f;
    padding: 20px 0;
    font-style: italic;
}

/* ============================================
   BOTONES DE ACCIÓN EN TABLAS
   ============================================ */
.btn-icon {
    background: 0;
    border: none;
    color: var(--barn);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-icon:hover {
    background: rgba(193, 85, 74, 0.1);
}

.btn-icon-success {
    color: var(--leaf);
}

.btn-icon-success:hover {
    background: rgba(90, 162, 74, 0.1);
}

.btn-icon-primary {
    color: var(--sky-deep);
}

.btn-icon-primary:hover {
    background: rgba(47, 111, 122, 0.1);
}

/* ============================================
   INGREDIENTES (RECETAS)
   ============================================ */
.ingredientes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--soil-light);
    margin: 6px 0 10px;
    min-height: 44px;
}

.ingredientes span {
    background: var(--pasture-light);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--pasture-dark);
    font-weight: 600;
}

.ingredientes span .btn-icon {
    color: var(--barn);
    font-size: 0.7rem;
    padding: 0 4px;
}

/* ============================================
   FLEX UTILITIES
   ============================================ */
.flex {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.flex .btn {
    width: auto;
}

.flex-space {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pasture-dark);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    z-index: 9999;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 6px 16px rgba(47, 107, 73, 0.35);
    animation: fadeInUp 0.3s ease;
    font-family: 'Inter', sans-serif;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--pasture-dark);
    margin-bottom: 16px;
}

.modal .campo {
    margin-bottom: 16px;
}

.modal .campo label {
    min-width: 80px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.modal-actions .btn {
    width: auto;
    flex: 1;
}

.modal .detalle-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--soil-light);
    font-size: 0.85rem;
}

.modal .detalle-item .label {
    color: var(--ink-soft);
}

.modal .detalle-item .value {
    font-weight: 600;
    color: var(--ink);
}

/* ============================================
   CONFIGURACIÓN
   ============================================ */
.config-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.config-actions .btn {
    width: auto;
    padding: 10px 20px;
}

/* ============================================
   AUTO INDICATOR (Surtido)
   ============================================ */
.auto-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--leaf);
    animation: pulse 1s infinite;
    margin-right: 8px;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

/* ============================================
   INVENTARIO
   ============================================ */
.inventario-total {
    background: var(--pasture-dark);
    color: #fff;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.inventario-total i {
    color: var(--wheat);
}

/* ============================================
   SURTIDO - PANEL DEL CHOFER
   ============================================ */
#surtidoDisplay .bloque {
    background: var(--paper);
}

#surtidoDisplay .bloque h3 {
    color: var(--ink);
}

.displays-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.producto-actual {
    border-radius: var(--radius-sm);
    padding: 16px;
    background: #fff;
    border: 1px solid var(--soil-light);
    border-left: 6px solid var(--wheat);
    min-height: 150px;
    transition: var(--transition);
}

.producto-actual .label {
    font-size: 0.65rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.producto-actual .top-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 8px 0;
}

.producto-actual .dial-wrap {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wheat);
    box-shadow: 0 4px 10px rgba(227, 172, 76, 0.35);
    transition: var(--transition);
}

.producto-actual .dial-wrap .dial-inner {
    font-size: 2rem;
    display: flex;
}

.producto-actual .nombre {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--ink);
    line-height: 1.15;
}

.producto-actual .peso {
    font-size: 1.05rem;
    color: var(--ink-soft);
    margin-top: 4px;
    font-weight: 700;
}

.producto-actual .barra {
    background: var(--soil-light);
    border-radius: 20px;
    height: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.producto-actual .barra .fill {
    height: 100%;
    border-radius: 20px;
    transition: width 0.35s ease;
}

.producto-actual .estado {
    font-size: 0.78rem;
    margin-top: 6px;
    font-weight: 700;
}

.producto-actual .estado.ok {
    color: var(--leaf-dark);
}

.producto-actual .estado.pendiente {
    color: var(--wheat-dark);
}

.producto-actual .estado.completado {
    color: var(--leaf-dark);
}

/* GÓNDOLA */
.gondola-card {
    border-radius: var(--radius-sm);
    padding: 18px;
    text-align: center;
    color: #fff;
    background: linear-gradient(160deg, var(--pasture), var(--pasture-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(47, 107, 73, 0.3);
}

.gondola-card .label {
    align-self: flex-start;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.gauge-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    margin: 8px auto 4px;
}

.gauge-fill {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#fff 0deg, #fff 0deg, rgba(255, 255, 255, 0.22) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
}

.gauge-center {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: var(--pasture-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gauge-center .value {
    font-size: 2.1rem;
    margin: 0;
    color: #fff;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.gauge-center .sub {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
    font-weight: 600;
}

.gondola-card .estado {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

/* BÁSCULA */
.bascula-panel {
    background: #fff;
    border-radius: 14px;
    padding: 10px 16px;
    margin-bottom: 12px;
    border: 1px solid var(--soil-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bascula-panel .bascula-label {
    font-size: 0.62rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.bascula-panel .bascula-hint {
    font-size: 0.68rem;
    color: var(--ink-soft);
    margin-top: 1px;
}

#pesoBasculaDisplay {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sky-deep);
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

#pesoBasculaUnidad {
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-weight: 600;
}

#estadoBascula {
    font-size: 0.72rem;
}

.bascula-btn-outline {
    background: var(--sky);
    border: 1px solid var(--sky-deep);
    color: var(--sky-deep-dark);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.7rem;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.bascula-btn-outline:hover {
    background: #d7ecef;
}

/* BOTÓN SIGUIENTE GRANDE */
.btn-siguiente-grande {
    background: var(--sky-deep);
    color: #fff;
    border: none;
    font-weight: 800;
    padding: 20px 24px;
    border-radius: 20px;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(47, 111, 122, 0.3);
    font-family: 'Inter', sans-serif;
}

.btn-siguiente-grande:hover {
    background: var(--sky-deep-dark);
    transform: scale(1.01);
}

.btn-siguiente-grande:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.btn-siguiente-grande.completado {
    background: var(--leaf);
}

.btn-siguiente-grande.completado:hover {
    background: var(--leaf-dark);
}

/* PRODUCTOS LISTA (chips) */
.productos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.producto-chip {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.76rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--paper);
    color: var(--ink-soft);
    border: 1px solid var(--soil-light);
    font-weight: 600;
}

.producto-chip.completado {
    background: var(--pasture-light);
    color: var(--pasture-dark);
    border-color: var(--pasture);
}

.producto-chip.actual {
    background: var(--wheat);
    color: var(--ink);
    border-color: var(--wheat-dark);
}

.producto-chip .pct {
    font-weight: 800;
    font-size: 0.7rem;
}

/* SURTIDO TOTALES */
.surtido-totales {
    margin-top: 10px;
    padding: 10px 14px;
    background: var(--paper);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--ink-soft);
    border: 1px solid var(--soil-light);
    font-weight: 600;
}

.surtido-totales strong {
    color: var(--ink);
    font-size: 1rem;
}

/* ============================================
   RESPONSIVE - TABLET Y MÓVIL
   ============================================ */

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .app {
        padding: 20px;
        border-radius: 18px;
    }

    .app-header h1 {
        font-size: 1.6rem;
    }

    .tab {
        padding: 10px 16px;
        font-size: 0.82rem;
    }

    .productos-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .displays-row {
        grid-template-columns: 1fr 1fr;
    }

    .gauge-wrap {
        width: 130px;
        height: 130px;
    }

    .gauge-center {
        width: 96px;
        height: 96px;
    }

    .gauge-center .value {
        font-size: 1.8rem;
    }

    #pesoBasculaDisplay {
        font-size: 2.2rem;
    }
}

/* Móvil (menos de 768px) */
@media (max-width: 768px) {
    .app {
        padding: 16px;
        border-radius: 16px;
    }

    .app-header h1 {
        font-size: 1.4rem;
        flex-wrap: wrap;
    }

    .app-header h1 small {
        margin-left: 0;
        font-size: 0.6rem;
    }

    .tab {
        padding: 8px 12px;
        font-size: 0.78rem;
    }

    .campo {
        flex-direction: column;
        align-items: stretch;
    }

    .campo label {
        min-width: auto;
    }

    .campo input,
    .campo select,
    .campo textarea {
        min-width: 100%;
    }

    .displays-row {
        grid-template-columns: 1fr;
    }

    .config-actions .btn {
        width: 100%;
    }

    #pesoBasculaDisplay {
        font-size: 1.8rem;
    }

    .btn-siguiente-grande {
        font-size: 1.2rem;
        padding: 16px;
    }

    .modal {
        padding: 20px;
        margin: 10px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }

    .inventario-total {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .surtido-totales {
        font-size: 0.75rem;
    }

    .surtido-totales strong {
        font-size: 0.85rem;
    }

    .gauge-wrap {
        width: 120px;
        height: 120px;
    }

    .gauge-center {
        width: 90px;
        height: 90px;
    }

    .gauge-center .value {
        font-size: 1.6rem;
    }

    .productos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Móvil pequeño (menos de 480px) */
@media (max-width: 480px) {
    .app {
        padding: 12px;
        border-radius: 12px;
    }

    .app-header h1 {
        font-size: 1.1rem;
    }

    .app-header h1 .badge-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .tab {
        font-size: 0.7rem;
        padding: 6px 10px;
        gap: 4px;
    }

    .bloque {
        padding: 12px 14px;
    }

    .btn {
        font-size: 0.8rem;
        padding: 10px 14px;
    }

    #pesoBasculaDisplay {
        font-size: 1.4rem;
    }

    .btn-siguiente-grande {
        font-size: 1rem;
        padding: 14px;
    }

    .producto-actual .nombre {
        font-size: 1.1rem;
    }

    .producto-actual .dial-wrap {
        width: 56px;
        height: 56px;
    }

    .producto-actual .dial-wrap .dial-inner {
        font-size: 1.5rem;
    }

    .productos-grid {
        grid-template-columns: 1fr;
    }
}