/* ================================
   MÓDULO: PRODUCT CATEGORY
   Estilos para categorías de productos
   ================================ */

/* Reset específico del módulo */
.product-category,
.product-category * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container principal */
.product-category {
    width: 100%;
    padding: 5rem 0;
    background: #fff;
}

.product-category--alt {
    background: #FAF8F5;
}

.product-category__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header de categoría */
.product-category__header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Tag */
.product-category__tag {
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #A67B5B;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Título */
.product-category__title {
    font-family: 'Georgia', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* Descripción */
.product-category__description {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: #6B5B52;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ================================
   RESPONSIVE: TABLET
   ================================ */
@media screen and (max-width: 968px) {
    .product-category {
        padding: 4rem 0;
    }

    .product-category__title {
        font-size: 2.5rem;
    }

    .product-category__description {
        font-size: 1rem;
    }
}

/* ================================
   RESPONSIVE: MÓVIL
   ================================ */
@media screen and (max-width: 768px) {
    .product-category {
        padding: 3.5rem 0;
    }

    .product-category__container {
        padding: 0 1.5rem;
    }

    .product-category__header {
        margin-bottom: 2.5rem;
    }

    .product-category__tag {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .product-category__title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .product-category__description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media screen and (max-width: 480px) {
    .product-category {
        padding: 3rem 0;
    }

    .product-category__container {
        padding: 0 1rem;
    }

    .product-category__header {
        margin-bottom: 2rem;
    }

    .product-category__title {
        font-size: 1.8rem;
    }

    .product-category__description {
        font-size: 0.9rem;
    }
}