/* =====================================================
   MERCADO NEB — style.css
   ===================================================== */

/* --- VARIÁVEIS E BASE --- */
:root {
    --primary: #1d4ed8;
    --primary-dark: #1e40af;
    --secondary: #f8fafc;
    --accent: #fbbf24;
    --success: #2e7d32;
    --text: #0f172a;
    --text-light: #64748b;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f5f9;
    color: var(--text);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* =====================================================
   HEADER
   ===================================================== */
header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
}

nav ul { display: flex; list-style: none; gap: 15px; align-items: center; }

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    position: relative;
    transition: var(--transition);
}

nav ul li a:hover { color: var(--primary); transform: scale(1.05); }

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

<<<<<<< HEAD
/* Botão Mais Vendidos */
.nav-link-destaque {
    background-color: var(--accent);
    color: var(--text) !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-weight: 800 !important;
=======
/* Botão Início */
.nav-inicio {
    background-color: #eff6ff;
    color: var(--primary) !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-weight: 700 !important;
>>>>>>> caad060
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
<<<<<<< HEAD
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

=======
    border: 1px solid #bfdbfe;
}

.nav-inicio:hover {
    background-color: var(--primary);
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(29, 78, 216, 0.2);
}

.nav-inicio::after { display: none; }

/* Botão Mais Vendidos */
.nav-link-destaque {
    background-color: var(--accent);
    color: var(--text) !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-weight: 800 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

>>>>>>> caad060
.nav-link-destaque i {
    color: #f59e0b;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-link-destaque::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 200%; height: 200%;
    background: conic-gradient(transparent, rgba(255,255,255,0.8), transparent 30%);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotateGlow 3s linear infinite;
    z-index: -1;
}

@keyframes rotateGlow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.nav-link-destaque:hover {
    transform: scale(1.05);
    background-color: #fcd34d;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.nav-link-destaque:hover::before {
    animation-duration: 1.5s;
    background: conic-gradient(transparent, rgba(29,78,216,0.8), transparent 30%);
}

.nav-link-destaque:hover i { transform: scale(1.2) rotate(10deg); color: var(--primary); }

/* Botão Buscar no ML */
.nav-busca-ml {
    background: #0f172a;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-weight: 800 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
}

.nav-busca-ml:hover { background: #1e293b; transform: scale(1.05); }
.nav-busca-ml::after { display: none; }

/* Botão WhatsApp */
.nav-whatsapp { color: #25d366 !important; }
.nav-whatsapp:hover { color: #128c7e !important; }
.nav-whatsapp::after { background: #25d366 !important; }

/* =====================================================
   CARROSSEL
   ===================================================== */
.carousel { position: relative; height: 400px; overflow: hidden; background: #000; }

.slide {
    position: absolute;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active { opacity: 1; }

.slide-content { text-align: center; color: white; padding: 0 25px; max-width: 900px; }
.slide-content h1 { font-size: 3rem; font-weight: 800; margin-bottom: 15px; line-height: 1.1; }
.slide-content p { font-size: 1.2rem; line-height: 1.4; opacity: 0.9; }

.slide-1 { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.slide-2 { background: linear-gradient(135deg, #059669, #10b981); }
.slide-3 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.slide-2-texto { font-size: 1.5rem; font-weight: 600; }

/* =====================================================
   BUSCA E FILTROS (index.html)
   ===================================================== */
.search-section { margin: 40px auto 20px; }

.search-box {
    background: white;
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.search-box:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(29,78,216,0.1); }
.search-box input { border: none; outline: none; width: 100%; margin-left: 15px; font-size: 1.1rem; color: var(--text); }

.filter-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 15px 0;
    scrollbar-width: none;
}
.filter-wrapper::-webkit-scrollbar { display: none; }

.filter-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 8px 18px;
    border-radius: 20px;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    color: var(--text-light);
}

.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.filter-btn:hover:not(.active) { background: #f8fafc; border-color: var(--primary); }

.btn-fav-filter i { color: #ef4444 !important; margin-right: 5px; transition: var(--transition); }
.btn-fav-filter.active { background: var(--primary) !important; color: white !important; }

/* Filtro de preço */
.price-filter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 10px 0 30px;
    position: relative;
}

.btn-filter-toggle {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 101;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-panel {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 280px;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 100;
    border: 1px solid #e2e8f0;
}

.price-panel.hidden { display: none !important; }

/* =====================================================
   GRID E CARDS (index.html)
   ===================================================== */
.grid-offers {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
<<<<<<< HEAD
    margin-bottom: 60px;
=======
    margin-bottom: 25px;
>>>>>>> caad060
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    animation: fadeInCard 0.5s ease backwards;
    scroll-margin-top: 100px;
}

@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15); }

.card-img {
    width: 100%;
    height: 220px;
    padding: 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

.card-img img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.5s ease; }

.highlight-card {
    box-shadow: 0 0 20px rgba(255,217,0,0.781);
    transform: scale(1.02);
    transition: all 0.5s ease;
}

/* Etiquetas de loja */
.badge-loja {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-loja.amazon { background: #ff9900; color: #000; }
.badge-loja.mercadolivre { background: #fff159; color: #333; }

.card-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }

.card-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
    min-height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

<<<<<<< HEAD
.card-info p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 15px; flex-grow: 1; }
=======
.card-info p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 8px; flex-grow: 1; }
>>>>>>> caad060

/* Preço */
.price-container {
    margin-bottom: 8px;
    color: var(--success);
    font-weight: 800;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    transition: all 0.3s ease;
}

.price-label { font-size: 0.9rem; }
.price-value { font-size: 1.5rem; transition: all 0.3s ease; }

<<<<<<< HEAD
=======
/* Alerta de Preço DENTRO do Card (NOVO) */
.card-alert {
    background-color: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
    padding: 6px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-alert i {
    font-size: 0.85rem;
    color: #f59e0b;
}

>>>>>>> caad060
/* Botões de ação */
.card-actions { display: flex; gap: 10px; align-items: center; margin-top: auto; }

.btn-buy {
    flex-grow: 1;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-buy:hover { background: var(--primary-dark); transform: scale(1.02); }

.btn-buy i { font-size: 1rem; }

.btn-buy-mercadolivre { background: #3483fa; color: white !important; }
.btn-buy-mercadolivre:hover { background: #2968c8 !important; }

.btn-buy-amazon { background: #ff9900; color: #000 !important; }
.btn-buy-amazon:hover { background: #e68900 !important; }

.btn-share {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Botão favorito */
.btn-favorite {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 10;
    color: #cbd5e1;
}

.btn-favorite.active i,
.btn-favorite.active { color: #ef4444 !important; }

.btn-favorite.active { animation: heartBeat 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

@keyframes heartBeat {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* =====================================================
   PAGINAÇÃO (index.html)
   ===================================================== */
#paginacao-produtos {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0 50px;
}

#paginas-numeradas { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }

.btn-pag {
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #1d4ed8;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.btn-pag:hover:not(:disabled) { background: #1d4ed8; color: #fff; border-color: #1d4ed8; }
.btn-pag:disabled { opacity: 0.35; cursor: default; }

.btn-pag-numero {
    width: 38px; height: 38px;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #1d4ed8;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.btn-pag-numero.ativo { background: #1d4ed8; color: #fff; border-color: #1d4ed8; cursor: default; }

/* =====================================================
   TOAST (NOTIFICAÇÕES)
   ===================================================== */
#toast-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.toast {
    background: rgba(15,23,42,0.9);
    backdrop-filter: blur(8px);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: slideUpToast 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
               fadeOutToast 0.5s ease 2.5s forwards;
    white-space: nowrap;
}

.toast i { color: #ef4444 !important; font-size: 1.1rem; }

@keyframes slideUpToast {
    from { opacity: 0; transform: translateY(40px) scale(0.8); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeOutToast {
    to { opacity: 0; transform: translateY(-20px); }
}

/* =====================================================
   CARDS ML (busca.html / mais_vendidos.html)
   ===================================================== */
.ml-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ml-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1.5px solid transparent;
    position: relative;
}

.ml-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.13);
    border-color: #3483fa;
}

.ml-card-img {
    width: 100%;
    height: 185px;
    object-fit: contain;
    background: #f8f9fb;
    padding: 14px;
}

.ml-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 5px; }

.ml-card-titulo {
    font-size: 0.87rem;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1e293b;
}

.ml-card-preco { font-size: 1.25rem; font-weight: 800; color: #0f172a; margin-top: auto; }
.ml-card-original { font-size: 0.78rem; color: #94a3b8; text-decoration: line-through; }

.ml-card-desconto {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 5px;
}

.ml-card-frete { font-size: 0.74rem; font-weight: 600; color: #16a34a; }

.ml-badge-novo {
    position: absolute;
    top: 10px; left: 10px;
    background: #3483fa;
    color: #fff;
    font-size: 0.63rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Loading / Erro ML */
.ml-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
    gap: 16px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
}

.ml-spinner {
    width: 44px; height: 44px;
    border: 4px solid #e2e8f0;
    border-top-color: #3483fa;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.ml-erro {
    text-align: center;
    padding: 50px 20px;
    color: #dc2626;
    background: #fef2f2;
    border-radius: 14px;
    font-size: 0.95rem;
    border: 1px solid #fecaca;
}

/* Paginação ML */
.ml-paginacao {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 12px;
}

.ml-paginacao button {
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #3483fa;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.ml-paginacao button:hover:not(:disabled) {
    background: #3483fa;
    color: #fff;
    border-color: #3483fa;
    transform: scale(1.03);
}

.ml-paginacao button:disabled { opacity: 0.35; cursor: default; }
.ml-paginacao span { font-size: 0.88rem; color: #64748b; font-weight: 600; }

/* =====================================================
   BARRA DE CATEGORIAS (busca.html / mais_vendidos.html)
   ===================================================== */
.categoria-bar {
    background: #fff;
    border-bottom: 1.5px solid #e2e8f0;
    position: sticky;
    top: 65px;
    z-index: 90;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    width: 100%;
}

.categoria-bar .container {
    max-width: 100% !important;
    padding: 0 8px !important;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categoria-bar .container::-webkit-scrollbar { display: none; }

.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.cat-btn:hover { color: #1d4ed8; background: #f8fafc; }
.cat-btn.active { color: #1d4ed8; border-bottom-color: #1d4ed8; background: #eff6ff; }
.cat-btn span, .cat-btn .cat-emoji { font-size: 1rem; }

/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: white;
    padding: 40px;
    text-align: center;
    border-top: 1px solid #e2e8f0;
    color: var(--text-light);
}

.footer-destaque { font-weight: 800; margin-top: 10px; color: var(--primary); }

/* =====================================================
   RESPONSIVIDADE
   ===================================================== */
@media (max-width: 768px) {
    .grid-offers { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .ml-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .categoria-bar { top: 58px; }
    .cat-btn { padding: 12px 13px; font-size: 0.8rem; gap: 5px; }

    .busca-hero h1 { font-size: 1.8rem; }
    .hero-search-wrap input { padding: 15px 16px; font-size: 0.9rem; }
    .hero-search-wrap button { padding: 0 20px; font-size: 0.88rem; }
    .resultados-header { flex-direction: column; align-items: flex-start; gap: 8px; }

    .mais-vendidos-hero h1 { font-size: 1.9rem; }
    .vitrine-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .ml-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ml-card-img { height: 120px; }
    .ml-card-body { padding: 10px; }
    .ml-card-titulo { font-size: 0.8rem; }
    .ml-card-preco { font-size: 1.05rem; }

    .categoria-bar { top: 56px; }
    .cat-btn { padding: 11px 10px; font-size: 0.75rem; gap: 4px; }
    .cat-btn span, .cat-btn .cat-emoji { font-size: 0.85rem; }

    .busca-hero { padding: 28px 0 24px; }
    .busca-hero h1 { font-size: 1.4rem; }
    .busca-hero p { font-size: 0.85rem; margin-bottom: 16px; }
    .hero-search-wrap { border-radius: 12px; }
    .hero-search-wrap input { padding: 14px 14px; font-size: 0.88rem; }
    .hero-search-wrap button { padding: 0 16px; font-size: 0.82rem; }
    .resultados-header { flex-direction: column; align-items: flex-start; gap: 6px; }

    .mais-vendidos-hero h1 { font-size: 1.5rem; }

    .ml-header { flex-direction: column; align-items: flex-start; }
    .ml-filtros { width: 100%; }
    .ml-filtros input { width: 100% !important; }
    .ml-filtros select { width: 100%; }
}

@media (max-width: 480px) {
    .header-content { justify-content: center; flex-direction: column; gap: 15px; }
    .logo { font-size: 1.3rem; }
    nav ul { gap: 8px; }
    nav ul li a { font-size: 0.8rem; padding: 5px 8px; }
    .carousel { height: 200px !important; }
    .slide-content h1 { font-size: 1.6rem !important; margin-bottom: 8px; line-height: 1.2; }
    .slide-content p { font-size: 0.9rem !important; line-height: 1.3; }
    .grid-offers { grid-template-columns: 1fr; padding: 0 10px; }
    .filter-btn { font-size: 0.8rem; padding: 6px 14px; }
    .nav-link-destaque { padding: 6px 12px !important; font-size: 0.85rem !important; }
    .toast { padding: 10px 20px; font-size: 0.8rem; gap: 8px; }
    .toast i { font-size: 0.9rem; }
}

@media (max-width: 380px) {
    .cat-btn { padding: 10px 9px; font-size: 0.72rem; }
    .ml-grid { gap: 8px; }
    .ml-card-img { height: 100px; padding: 8px; }
}