/*
 Theme Name:   Storefront Child
 Description:  Tema hijo personalizado para replicar mockups UX.
 Author:       Tu Nombre o Empresa
 Template:     storefront
 Version:      1.0.0
*/


/* ==========================================
   1. CINTILLO ROJO (ESTILO IKEA)
   ========================================== */
.ikea-notice-banner {
    background-color: #cc0008; /* El color rojo corporativo de la oferta */
    color: #ffffff;
    width: 100%;
    margin-bottom: 40px;
}
.notice-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 4%;
}
.notice-product {
    flex: 1;
    font-size: 12px;
    border-right: 1px solid rgba(255,255,255,0.3);
    padding-right: 20px;
}
.product-tag {
    display: block;
    font-weight: bold;
    font-size: 14px;
}
.product-price strong {
    font-size: 20px;
}
.notice-main-text {
    flex: 2;
    padding-left: 30px;
}
.notice-main-text h2 {
    color: #ffffff !important;
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 700;
    margin: 0 0 5px 0;
}
.notice-main-text p {
    margin: 0;
    font-size: clamp(12px, 1.2vw, 16px);
}
.notice-arrow {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* ==========================================
   2. CUADRÍCULA DE CATEGORÍAS (GRID RESPONSIVO)
   ========================================== */
.ikea-categories-grid {
    width: 100%;
    margin-bottom: 50px;
}
.ikea-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
    /* Autogrid: Crea columnas automáticamente si tienen espacio mínimo de 150px */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}
.ikea-cat-item {
    text-decoration: none !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}
.ikea-cat-item:hover {
    transform: translateY(-3px);
}
.ikea-cat-image-wrapper {
    background-color: #f5f5f5; /* Fondo gris claro de IKEA */
    width: 130px;
    height: 130px;
    border-radius: 4px; /* Cuadrados con bordes muy suaves */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}
.ikea-cat-image-wrapper img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}
.ikea-cat-item h3 {
    font-size: 13px !important;
    color: #111111 !important;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
}

/* ==========================================
   3. SECCIÓN TEXTO BIENVENIDA
   ========================================== */
.ikea-welcome-section {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 0 4%;
}
.ikea-welcome-section h1 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: #111111;
}

/* ==========================================
   ADAPTACIÓN MÓVIL (MEDIA QUERIES)
   ========================================== */
@media (max-width: 768px) {
    .notice-container {
        flex-direction: column; /* Apila el aviso rojo en vertical para celulares */
        text-align: center;
        gap: 15px;
    }
    .notice-product {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding-right: 0;
        padding-bottom: 15px;
        width: 100%;
    }
    .notice-main-text {
        padding-left: 0;
    }
    .ikea-grid-container {
        /* En teléfonos muy chicos, reducimos el mínimo de columna para que quepan 2 por fila */
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 15px;
    }
    .ikea-cat-image-wrapper {
        width: 100px;
        height: 100px;
    }
}
