/* ===========================
   THEME FIX (BASES PERDIDAS)
   No toca diseño, solo normaliza
=========================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f6f8fb;
    color: #111827;
    font-family: "Quicksand", sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.6rem 0;
    font-weight: 800;
    color: #111827;
}

p {
    margin: 0 0 0.8rem 0;
}

/* Containers sin depender tanto del tema */
.container {
    width: min(1100px, 92%);
}

/* En móvil que no aplaste el contenido */
@media (max-width: 768px) {
    .container {
        width: 92%;
    }
}

/* Cards base */
.card,
.product-card,
.dashboard-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eef0f3;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

/* Botones base si se dañaron */
button,
.btn,
.btn-add,
.btn-hero {
    font-family: inherit;
}
