Css: /* style.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* SIDEBAR */
.sidebar {
    width: 260px;
    height: 100vh;
    color: white;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px;
    box-sizing: border-box;
}

.sidebar img {
    width: 100%;
    
}


/* ========================================= */
/* ESTILO PARA IMÁGENES SELECCIONADAS */
/* ========================================= */

/* Check flotante en esquina superior derecha */
.item.selected::after {
  content: "✓";
  position: absolute;
  top: 5px;
  right: 5px;
  background: #ef4444;
  color: #fff;
  font-size: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(239,68,68,0.7);
  z-index: 10;
}


.sidebar a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 12px 8px;
    margin-bottom: 8px;
    border-radius: 6px;
}

.sidebar a:hover {
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    z-index: 3;
}

.sidebar.open ~ .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.mensaje-categoria {
    background: #f6f6f6;
    
    text-align: center;
    margin-bottom: 15px;
    border-radius: 8px;
margin-left:var(--sidebar-width);
}
.mensaje-categoria h2 {
    
}

.bloque-navid {
        width: 100%;
        max-width: 100%;
        font-family: Arial, sans-serif;
        
       
    }

    .fila-full {
        width: 100%;
        padding: 25px 10px 0 10px;
        background: #f7f7f7;
        border-radius: 6px;
        margin-bottom: 5px;
        box-sizing: border-box;
    }
		.bloque-transparente{
		background:transparent;
        color:#fff;

}

.back-button-whats, , .back-button-what {
    display: none; /* Oculto por defecto */
}

.back-button-whats.visible {
    display: inline-flex !important;
}
, .back-button-what.visible {
    display: inline-flex !important;
}

    .fila-tres {
        display: flex;
        width: 100%;
        gap: 20px;
    	margin-top: 30px;
        margin-bottom: 0px;
        box-sizing: border-box;
    	padding: 0 25px;
    }

    .col-33 {
        width: 33.3%;
        padding: 15px;
        background: #fafafa;
        border-radius: 6px;
        box-sizing: border-box;
    }
	.rojo {
        background: #f1d3d3;
       }
	.verde{
        background: #dcf1d3;
       }

	.azul {
        background: #d3eef1;
       }


    /* RESPONSIVE */
    @media(max-width: 700px){
        .fila-dos {
            flex-direction: column;
        }
        .col-50 {
            width: 100%;
        }
    }


/* CONTENIDO PRINCIPAL */
.main {
    margin-left: 280px;
    padding: 20px;
    box-sizing: border-box;
}

/* BLOQUES DEL INICIO */
/* CONTENEDOR DE 2 BLOQUES VERTICALES QUE OCUPAN TODA LA ALTURA */
.blocks-vertical {
    display: grid;
    grid-template-columns: 1fr 1fr; /* dos columnas */
    height: 100vh; /* === OCUPAR TODA LA PANTALLA === */
    margin: 0px;
    padding: 0px;
	gap: 20px; /* ← separación entre TAZAS y PLAYERAS */
    padding: 20px; /* separa interiormente del borde */
}

/* BLOQUES */
.vertical-block {
    position: relative;
    height: 100%; /* cada bloque llena su mitad */
    border-radius: 0; /* sin bordes para una división limpia */
    overflow: hidden;
    color: #fff !important; 
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    text-shadow: 0 3px 10px rgba(0,0,0,0.8);
z-index: 2; /* ← texto arriba del overlay */
}

/* Contenedor del texto */
.block-text {
    color: #ffffff !important; /* ← blanco real */
    font-size: 50px;
    font-weight: bold;
    position: relative;
    z-index: 5; /* ← ENCIMA DE TODO */
}

/* Logo solo para móvil */
.logo-movil {
    text-align: center;
    padding: 15px 0;
    display: none; /* Oculto por defecto */
}

.logo-movil img {
    max-width: 170px;
    width: 60%;
    height: auto;
}




/* Capa oscura */
.vertical-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.vertical-block:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
}


/* Capa oscura para mejorar el contraste */
.vertical-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.vertical-block:hover {
    transform: scale(1.02);
    transition: 0.2s ease;
}

/* LIGHTBOX */

/* --- ZOOM LIGHTBOX --- */
.lb-img-wrapper {
    position: relative;
    overflow: hidden;
    touch-action: none;
}

#lb-img {
    transition: transform 0.25s ease;
    will-change: transform;
    cursor: grab;
}
#lb-img:active {
    cursor: grabbing;
}


/* Lightbox general */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
  overflow: auto;
}

#lightbox.show { display: flex; }

.lb-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 20px;
  color: white;
}

.lb-close {
  font-size: 24px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

.lb-close-text {
  margin-left: 10px;
  font-size: 16px;
}

/* Contenedor principal */
.lb-content {
  display: flex;
  flex-direction: row;
  width: 70%;
  max-width: 1000px;
  padding: 20px;
  border-radius: 10px;
  gap: 20px;
}

/* Imagen */
.lb-img-container {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lb-img-container img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 32px;
  width: 40px;
  height: 60px;
  cursor: pointer;
  z-index: 10;
}

.lb-prev { left: 0; }
.lb-next { right: 0; }

/* Info lateral */
.lb-info {
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lb-info label {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lb-counter-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lb-counter-wrapper input {
  width: 50px;
  text-align: center;
}

.lb-info textarea {
  width: 100%;
  height: 100px;
  resize: none;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}



/* GALERÍA */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

/* Miniatura */
.item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer; /* imagen abre lightbox */
}

/* Imagen dentro de la miniatura */
.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Checkbox de selección grande */
.select-img {
    width: 40px;           /* tamaño grande */
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    accent-color: #ef4444; /* color del check */
    padding: 15px;           /* área de toque extra */
}

/* Efecto visual al marcar */
.select-img:checked + img {
    border: 4px solid #ef4444;
    box-shadow: 0 0 12px rgba(239,68,68,0.7);
}

/* Contenedor del checkbox flotante */
.checkbox-wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 10;
    background: #ef4444; /* fondo rojo */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkbox real, oculto visualmente */
.checkbox-wrapper input.select-img {
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    position: absolute;
    z-index: 20;
}

/* Checkmark visual */
.checkmark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    opacity: 0; /* se activa al marcar */
    transition: 0.2s;
    z-index: 15;
}

/* Cuando está seleccionado */
.checkbox-wrapper input.select-img:checked + .checkmark {
    opacity: 1;
}

/* Resaltar miniatura al seleccionar */
.select-img:checked ~ img {
    border: 4px solid #ef4444;
    box-shadow: 0 0 12px rgba(239,68,68,0.7);
}

/* style.css - estilos globales */
:root{
  --sidebar-width:260px;
  --gap:20px;
  --accent:#ef4444;
  --bg:#f5f5f7;
  --text:#111;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,Arial,Helvetica,sans-serif;color:var(--text);background:var(--bg);}

/* SIDEBAR */
.sidebar{
  width:var(--sidebar-width);
  background:#111;
  color:#fff;
  position:fixed;
  left:0; top:0; bottom:0;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:40;
}
.sidebar .logo{width:90%;margin:8px 40px 8px 40px;}
.sidebar .logo img{width:70%;height:auto;display:block;text-align:center;}
.sidebar nav a{
  display:block;padding:12px 10px;border-radius:8px;color:#fff;text-decoration:none;background:#1f1f1f;margin-bottom:6px;
}
.sidebar nav a:hover{background:#2b2b2b}

/* MOBILE TOGGLE BUTTON */
.menu-toggle{
  display:none;
  position:fixed; right:12px; top:12px; z-index:60;
  background: #000; color:#fff;border:none;padding:10px;border-radius:8px;cursor:pointer;
  width:35px;
}

/* MAIN */
.main{
  margin-left:var(--sidebar-width);
  padding:24px;
  min-height:100vh;
}

/* HOME split blocks vertical, fill screen */
.blocks-vertical{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:var(--gap);
  height:100vh;
  margin:0;
  padding:20px;
}
.vertical-block{
  position:relative;
  height:100%;
  overflow:hidden;
  color:#fff;
  font-size:48px;
  font-weight:700;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  background-size:cover;background-position:center;
}
.vertical-block::before{
  content:""; position:absolute; inset:0; background:rgba(0,0,0,0.35); z-index:1;
}
.block-text{position:relative; z-index:5; color:#fff; text-align:center; padding:12px;}

/* Separation with padding + gap */
.blocks-vertical{padding:20px}

/* Collections listing (galeria.php) */
.collection-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}
.collection-tile{position:relative; overflow:hidden; aspect-ratio:1/1;border-radius:8px;background:#eee;cursor:pointer}
.collection-tile img{width:100%;height:100%;object-fit:cover;display:block}

/* For collection title above grid */
.collection-title{padding:0px 0 26px 0;font-size:20px;font-weight:700;text-align:center;}

/* Images inside a collection */
.galeria-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.item{aspect-ratio:1/1;overflow:hidden;border-radius:8px;background:#fafafa}
.item img{width:100%;height:100%;object-fit:cover;display:block}


.lb-counter-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lb-counter-wrapper button {
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
}

.lb-counter-wrapper input {
    width: 50px;
    text-align: center;
}

#lb-text {
    width: 100%;
    min-height: 50px;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 6px;
}

/* ------------------------------------ */
/* Hover y cursor para colecciones */
.collection-tile {
    cursor: pointer;               /* Cambia el cursor al pasar sobre la miniatura */
    transition: transform 0.3s ease;
}

.collection-tile:hover {
    transform: scale(1.05);        /* Aumenta ligeramente la miniatura */
}

/* Hover y cursor para imágenes de galería */
.item img {
    cursor: pointer;               /* Cambia el cursor al pasar sobre la imagen */
    transition: transform 0.3s ease;
}

.item:hover img {
    transform: scale(1.05);        /* Zoom ligero al pasar el cursor */
}

.item { position: relative; }
.item .select-img {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    width: 20px;
    height: 20px;
    cursor: pointer;
	border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;

}


.back-button {
    display: inline-block;
    padding: 10px 18px;
    margin-bottom: 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
    background-color: #d63636; /* un rojo más oscuro al pasar el mouse */
    transform: scale(1.05);
}

.back-button-whats, .back-button-what {
    display: inline-block;
    padding: 10px 18px;
    margin-bottom: 20px;
    background-color: #0c7854;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.back-button-whats:hover {
    background-color: #d63636; /* un rojo más oscuro al pasar el mouse */
    transform: scale(1.05);
}
.back-button-what:hover {
    background-color: #d63636; /* un rojo más oscuro al pasar el mouse */
    transform: scale(1.05);
}

/* Responsive */
@media(max-width:1000px){
  .collection-grid{grid-template-columns:repeat(3,1fr)}
  .galeria-grid{grid-template-columns:repeat(3,1fr)}
  .vertical-block{font-size:36px}
}
@media(max-width:720px){

.fila-tres {
        width: 100%;
		display:block;
    	margin-top: 30px;
        margin-bottom: 0px;
        box-sizing: border-box;
    	padding: 0 25px;
    }
 .col-33 {
        width: 100%;
        padding: 15px;
        background: #fafafa;
        border-radius: 6px;
        box-sizing: border-box;
    }
.rojo {
        background: #f1d3d3;
       }
	.verde{
        background: #dcf1d3;
       }

	.azul {
        background: #d3eef1;
       }
  .sidebar{transform:translateX(-110%); transition:transform .25s ease; position:fixed}
  .sidebar.open{transform:translateX(0)}
  .menu-toggle{display:block}
  .main{margin-left:0;padding-top:24px}
  .blocks-vertical{grid-template-columns:1fr; height:auto}
  .vertical-block{height:50vh;font-size:28px}
  .collection-grid,.galeria-grid{grid-template-columns:repeat(2,1fr)}
.checkbox-wrapper {
        width: 30px;
        height: 30px;
        top: 12px;
        right: 12px;
    }
    .checkmark {
        width: 16px;
        height: 16px;
    }

#lb-checkbox-wrapper {
        position: absolute;
        top: 20px;
        left: 20px;
        padding: 8px 12px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 1000;
        font-size: 16px;
        color: #fff;
    }

    #lb-checkbox-wrapper input[type="checkbox"] {
        width: 24px;
        height: 24px;
        accent-color: #000;
    }

    #lb-checkbox-wrapper label {
        cursor: pointer;
       
    }
.mensaje-categoria {
    background: #f6f6f6;
    text-align: center;
    border-radius: 8px;
	margin-left:0px;
}
	

}



    



/* simple contact form */
.contact-form{max-width:640px;background:#fff;padding:20px;border-radius:10px;box-shadow:0 6px 18px rgba(0,0,0,0.06)}
.contact-form input,.contact-form textarea{width:100%;padding:10px;margin-bottom:10px;border:1px solid #ddd;border-radius:6px}
.contact-form button{background:var(--accent);color:#fff;border:0;padding:12px 16px;border-radius:8px;cursor:pointer}


@media(max-width: 768px) {
    .blocks-vertical {
        grid-template-columns: 1fr; /* una columna en móvil */
    }

    .vertical-block {
        height: 280px;
        font-size: 32px;
    }
	.lb-content {
    flex-direction: column;
    width: 95%;
  }
	.lb-info{
	width: 100%;
  	display: flex;
  	flex-direction: column;
  	gap: 10px;
}
 .logo-movil {
        display: block;
 pointer:none;
    }


}
