/* ===================================
   KITCHEN PAGE - HERO BANNER
   =================================== */
.kitchen-hero {
    position: relative;
    min-height: 100px;
    max-width: 700px;
    margin: 2rem auto;
    background-image: url('../assets/img/kitchen/fondito.jpg'); /* Asegúrate de tener esta imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.kitchen-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.kitchen-hero-title-white {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 2px;
}

/* ===================================
   GRID DE TRABAJOS (4 COLUMNAS)
   =================================== */
.kitchen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    background: #f4f4f4;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.swiper, .swiper-slide img, .inner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(0,0,0,0.3);
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 14px !important;
}
/* Icono de Play para videos en el carrusel */
.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    pointer-events: none;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .kitchen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .kitchen-grid { grid-template-columns: 1fr; }
}