:root {
    /* 🎨 Colores */
    --color-bg-card: #B9A590;
    --color-text: #36302A;

    /* 🅰️ Tipografías */
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Raleway', sans-serif;

    /* 📏 Tamaños base */
    --gap-row: 30px;
    --radius-card: 15px;
    --shadow-normal: 
        0 5px 8px rgba(0, 0, 0, 0.2), 
        0 8px 14px rgba(0, 0, 0, 0.15), 
        0 12px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 
        0 8px 12px rgba(0, 0, 0, 0.25), 
        0 12px 18px rgba(0, 0, 0, 0.2), 
        0 16px 24px rgba(0, 0, 0, 0.15);
}

/* ===== CONTENEDOR DE CATÁLOGOS ===== */
.catalogos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 8vw;
    row-gap: var(--gap-row);
}

/* ===== TARJETA DE PRODUCTO ===== */
.card-product {
    padding: 10px;
    box-shadow: var(--shadow-normal);
    transition: box-shadow 0.3s ease;
    font-family: var(--font-secondary);
    font-weight: 500;
    background-color: var(--color-bg-card);
    border-radius: var(--radius-card);
    width: fit-content;
    cursor: pointer;
}

.card-product:hover {
    box-shadow: var(--shadow-hover);
}

/* ===== IMAGEN DEL PRODUCTO ===== */
.img-card-custom {
    width: 19vw;
    height: 19vw;
    border-radius: 10px;
    margin-bottom: 1em;
}

/* ===== TEXTOS ===== */
.card-title,
.text,
.text strong,
.text-medida,
.text-price {
    font-family: var(--font-primary);
    color: var(--color-text);
}

.card-title {
    font-size: 1.4vw;
    font-weight: 700;
    margin-bottom: 1vw;
}

.text {
    font-size: 1vw;
    font-weight: 500;
    margin-bottom: 1vw;
}

.text strong {
    font-size: 1.1vw;
    font-weight: 700;
}

.text-medida {
    font-size: 1.11vw;
    font-weight: 500;
    margin-bottom: 1vw;
}

.text-price {
    font-size: 1.2vw;
    font-weight: 500;
}

/* ===== MEDIAS QUERIES ===== */
@media (max-width: 1920px) {
    .img-card-custom {
        width: 22vw;
        height: 22vw;
    }
}

@media (max-width: 1440px) {
    .card-title { font-size: 1.6vw; }
    .text,
    .text strong,
    .text-medida { font-size: 1.2vw; }
    .text-price { font-size: 1.4vw; }
}

@media (max-width: 900px) {
    .img-card-custom {
        width: 35vw;
        height: 35vw;
    }
    .card-title { font-size: 3vw; }
    .text,
    .text strong,
    .text-medida { font-size: 2.2vw; }
    .text-price { font-size: 3vw; }
}

@media (max-width: 700px) {
    .img-card-custom {
        width: 40vw;
        height: 40vw;
    }
    .card-title { font-size: 3.7vw; }
    .text,
    .text strong,
    .text-medida { font-size: 2.9vw; }
    .text-price { font-size: 3.7vw; }
}

@media (max-width: 500px) {
    .img-card-custom {
        width: 38vw;
        height: 38vw;
    }
    .card-title { font-size: 3.5vw; }
    .text,
    .text strong,
    .text-medida { font-size: 2.7vw; }
    .text-price { font-size: 3.5vw; }
}
