	/* ============================
	   RB3D · Tema visual moderno
	   Solo estética, sin tocar lógica
	   ============================ */

	/* 1. Tipografías y variables base */
	@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&family=Montserrat:wght@600;700&display=swap');

	:root {
	  --rb3d-green: #007a4d;
	  --rb3d-green-soft: #e1f5ec;
	  --rb3d-dark: #111827;
	  --rb3d-text: #1f2933;
	  --rb3d-muted: #6b7280;
	  --rb3d-border: #e5e7eb;
	  --rb3d-bg: #f4f5f7;

	  --rb3d-font-title: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	  --rb3d-font-base: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	}

	/* 2. Base de página */

	html {
	  box-sizing: border-box;
	  scroll-behavior: smooth;
	}

	*, *::before, *::after {
	  box-sizing: inherit;
	}

	body {
	  margin: 0;
	  padding: 0;
	  background: var(--rb3d-bg);
	  color: var(--rb3d-text);
	  font-family: var(--rb3d-font-base);
	  font-size: 15px;
	  line-height: 1.5;
	}

	/* Contenido centrado */
	body > .hero_area + section,
	body > section.food_section {
	  max-width: 1200px;
	  margin: 0 auto;
	}

	/* 3. Tipografías */

	h1, h2, h3, h4, h5, h6 {
	  font-family: var(--rb3d-font-title);
	  color: var(--rb3d-dark);
	  margin-top: 0;
	  letter-spacing: 0.01em;
	}

	/* 4. Navbar / cabecera */

	.header_section {
	  background: rgba(0,0,0,0.6);
	}

	.custom_nav-container .navbar-nav .nav-link {
	  font-weight: 500;
	  font-family: var(--rb3d-font-base);
	}

	/* Iconos de usuario / carrito / mail / WhatsApp */
	.user_option {
	  display: flex;
	  align-items: center;
	  gap: 10px;
	}

	.user_option .user_link {
	  color: #ffffff;
	  font-size: 18px;
	}

	.user_option .user_link:hover {
	  color: #d1fae5;
	}

	/* Botón carrito en navbar */
	#toggleCarrito.btn {
	  border-radius: 999px;
	  font-size: 16px;
	  padding: 6px 12px;
	}

	/* Buscador en la barra */
	.user_option form.form-inline {
	  margin-left: 10px;
	}

	.user_option .input-group .form-control {
	  border-radius: 20px 0 0 20px !important;
	  height: 34px;
	  padding: 4px 10px;
	  font-size: 14px;
	}

	.user_option .input-group .btn {
	  border-radius: 0 20px 20px 0 !important;
	  height: 34px;
	  padding: 4px 10px;
	  border: none;
	  background: var(--rb3d-green) !important;
	  color: #ffffff !important;
	}

	/* Evitar rarezas de Bootstrap en el botón Buscar */
	.user_option .input-group .btn:hover {
	  background: #005b38 !important;
	  color: #ffffff !important;
	}

	/* 5. Botones generales */

button,
input[type="submit"],
input[type="button"],
a.btn,
a.boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 14px;
  border-radius: 8px;   /* antes 999px */
  border: 1px solid transparent;
  background: var(--rb3d-green);
  color: #ffffff !important;
  font-family: var(--rb3d-font-base);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 122, 77, 0.35);
  transition: background-color 0.12s ease, box-shadow 0.12s ease;
}

	/* Sin “salto” al hacer hover */
	button:hover,
	input[type="submit"]:hover,
	input[type="button"]:hover,
	a.btn:hover,
	a.boton:hover {
	  background: #005b38;
	  box-shadow: 0 8px 22px rgba(0, 122, 77, 0.45);
	  text-decoration: none;
	}

	button:active,
	input[type="submit"]:active,
	input[type="button"]:active,
	a.btn:active,
	a.boton:active {
	  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
	}

	/* Sobrescribir estilos Bootstrap peligrosos para que no se vayan a blanco */
.btn,
.btn-default,
.btn-primary,
.btn-success,
.btn-warning {
  background: var(--rb3d-green) !important;
  color: #ffffff !important;
  border-color: var(--rb3d-green) !important;
  border-radius: 8px !important;   /* antes 999px */
  font-family: var(--rb3d-font-base);
  font-weight: 600;
}

	.btn:hover,
	.btn-default:hover,
	.btn-primary:hover,
	.btn-success:hover,
	.btn-warning:hover {
	  background: #005b38 !important;
	  color: #ffffff !important;
	}

	/* Botones pequeños tipo “Agregar” */
	.btn.btn-sm {
	  padding: 5px 10px;
	  font-size: 13px;
	}

	/* 6. Inputs / selects */

	input[type="text"],
	input[type="number"],
	input[type="email"],
	input[type="tel"],
	textarea,
	select {
	  font-family: var(--rb3d-font-base);
	  border-radius: 8px;
	  border: 1px solid var(--rb3d-border);
	  padding: 6px 10px;
	  font-size: 14px;
	  outline: none;
	  transition: border-color 0.12s ease, box-shadow 0.12s ease;
	}

	input[type="text"]:focus,
	input[type="number"]:focus,
	input[type="email"]:focus,
	input[type="tel"]:focus,
	textarea:focus,
	select:focus {
	  border-color: var(--rb3d-green);
	  box-shadow: 0 0 0 1px rgba(0, 122, 77, 0.25);
	}

	/* 7. Sección productos (“food_section”) */

	.food_section {
	  padding-top: 40px;
	  padding-bottom: 60px;
	}

	/* Card de producto base */
	.food_section .box {
	  background: #ffffff;
	  border-radius: 16px;
	  padding: 0;
	  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
	  border: 1px solid var(--rb3d-border);
	  overflow: hidden;
	  transition: transform 0.12s ease, box-shadow 0.12s ease;
	}

	.food_section .box > div {
	  /* el div anidado que envuelve img-box + detail-box */
	}

	/* Hover suave en la card */
	.food_section .box:hover {
	  transform: translateY(-2px);
	  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
	}

/* Imagen sin recuadro oscuro ni overlay */
.food_section .box .img-box {
  background: #ffffff !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

	.food_section .box .img-box img {
	  width: 100%;
	  display: block;
	  object-fit: cover;
	}

	/* Contenido (nombre, medidas, precio, botón) */
	.food_section .box .detail-box {
	  position: static !important;           /* anulamos overlay del template */
	  background: #ffffff !important;
	  padding: 10px 14px 12px;
	  text-align: left;
	}

	/* Título del producto */
	.food_section .box .detail-box .product-title,
	.food_section .box .detail-box h5 {
	  font-size: 15px;
	  font-weight: 700;
	  color: var(--rb3d-dark) !important;
	  margin-bottom: 4px;
	  background: transparent !important;
	  padding: 0;
	  border-radius: 0;
	  text-shadow: none;
	}

	/* Tamaño / medidas */
	.food_section .box .detail-box .product-size,
	.food_section .box .detail-box p.product-size {
	  font-size: 13px;
	  color: var(--rb3d-muted);
	  margin-bottom: 6px;
	}

	/* 8. Precio y “5+” alineados */

	.food_section .box .detail-box .price {
	  display: flex;
	  align-items: baseline;
	  gap: 8px;
	  margin-bottom: 6px;
	}

	.price-main {
	  font-size: 16px;
	  font-weight: 700;
	  color: var(--rb3d-dark);
	}

	.price-main span {
	  font-weight: inherit;
	}

	.price-badge {
	  font-size: 12px;
	  font-weight: 600;
	  padding: 2px 8px;
	  border-radius: 999px;
	  background: var(--rb3d-green-soft);
	  color: var(--rb3d-green);
	}

	/* 9. Bloque de opciones (colores / cantidad / botón) */

	.food_section .box .detail-box .options {
	  margin-top: 4px;
	}

	.food_section .box .detail-box form.d-flex {
	  gap: 6px;
	}

	/* Dropdown de colores */
	.dropdown .btn.btn-outline-secondary {
	  background: #ffffff !important;
	  color: var(--rb3d-text) !important;
	  border-color: var(--rb3d-border) !important;
	  border-radius: 8px !important;    /* acá está la magia */
	  font-size: 12px;
	  padding: 6px 10px;
	}

	.dropdown .btn.btn-outline-secondary:hover {
	  background: var(--rb3d-green-soft) !important;
	}

	/* Tabla del dropdown de colores */
	.colores-menu {
	  width: 100% !important;
	  min-width: 260px !important;
	  max-width: 320px !important;
	}

	.colores-menu table {
	  table-layout: fixed;
	  width: 100%;
	  font-size: 12px;
	}

	.colores-menu th,
	.colores-menu td {
	  padding: 3px 4px;
	}

	.colores-menu .qty {
	  width: 56px !important;
	  text-align: center;
	}

	/* Cantidad clásica (sin colores) */
	form.d-flex input[type="number"].form-control-sm {
	  width: 60px;
	}

	/* Botón Agregar */
	form.d-flex button[type="submit"] {
	  white-space: nowrap;
	}

	/* 10. Carrito (sección) */

	#carritoWrapper .food_section {
	  max-width: 900px;
	}

	#carritoWrapper .list-group-item {
	  font-size: 14px;
	}

	#carritoWrapper .list-group-item.bg-secondary {
	  background-color: #111827 !important;
	}

	/* Botón quitar item del carrito */
	#carritoWrapper .btn-danger.btn-sm {
	  background: #dc2626 !important;
	  border-color: #dc2626 !important;
	}

	/* 11. Carrusel de productos destacados */

	.carousel-wrapper {
	  background: #111827;
	  border-radius: 16px;
	  padding: 16px 12px 20px;
	  margin-top: 24px;
	}

	.titulo-destacado {
	  color: #ffffff;
	  font-weight: 700;
	  font-family: var(--rb3d-font-title);
	}

	#carousel-owl-productos .card {
	  background: transparent;
	  border: none;
	}

	#carousel-owl-productos .card img {
	  border-radius: 12px;
	  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
	}

	#carousel-owl-productos .card-body {
	  padding: 6px 4px 0;
	}

	#carousel-owl-productos .card-body h6 {
	  font-size: 13px;
	  color: #e5e7eb;
	}

	/* 12. Footer */

	.footer_section {
	  background: #020617;
	  color: #9ca3af;
	  padding: 18px 0;
	  font-size: 13px;
	}

	.footer_section p {
	  margin: 0;
	}

	/* 13. Toast carrito */
	#toastCarrito {
	  font-family: var(--rb3d-font-base);
	}

	/* 14. Mini-carrito drawer */

	.mc-drawer {
	  font-family: var(--rb3d-font-base);
	}

	/* 15. Responsive */

	@media (max-width: 991.98px) {
	  .user_option {
		margin-top: 10px;
		justify-content: flex-start;
		flex-wrap: wrap;
	  }

	  .user_option form.form-inline {
		width: 100%;
		margin-left: 0;
		margin-top: 6px;
	  }

	  .user_option .input-group {
		width: 100%;
	  }

	  .food_section .box {
		margin-bottom: 18px;
	  }
	}

	@media (max-width: 575.98px) {
	  .food_section {
		padding-top: 20px;
		padding-bottom: 40px;
	  }

	  .carousel-wrapper {
		margin-top: 16px;
	  }
	}


	/* =====================================
	   FIX GLOBAL CARDS DE PRODUCTO (RB3D)
	   Imagen arriba · texto abajo · sin overlay
	   ===================================== */

	/* La caja principal del producto */
	.food_section .box {
	  position: relative;
	  padding: 8px;
	  border-radius: 16px;
	  background: #ffffff;
	  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
	  border: 1px solid var(--rb3d-border);
	  overflow: hidden;
	}

	/* Forzamos que el contenido interno sea columna: imagen + detalle */
	.food_section .box > div {
	  display: flex;
	  flex-direction: column;
	  height: 100%;
	}

	/* Imagen: arriba, sin recortes raros */
	.food_section .box .img-box {
	  flex: 0 0 auto;
	  margin: 0;
	  background: #111827;
	  overflow: hidden;
	}

	.food_section .box .img-box img {
	  width: 100%;
	  display: block;
	  object-fit: cover;
	}

	/* Detalle: abajo, fondo blanco, nada de overlay */
	.food_section .box .detail-box {
	  flex: 1 0 auto;
	  position: static !important;
	  bottom: auto !important;
	  left: auto !important;
	  right: auto !important;
	  width: 100% !important;
	  background: #ffffff !important;
	  padding: 10px 8px 12px;
	  text-align: left;
	}

	/* Todo el texto del detalle en colores normales (no blanco de overlay) */
	.food_section .box .detail-box,
	.food_section .box .detail-box * {
	  color: var(--rb3d-text) !important;
	  text-shadow: none !important;
	}

	/* Título del producto bien legible */
	.food_section .box .detail-box .product-title,
	.food_section .box .detail-box h5 {
	  font-size: 15px;
	  font-weight: 700;
	  color: var(--rb3d-dark) !important;
	  margin-bottom: 4px;
	  background: transparent !important;
	  padding: 0;
	  border-radius: 0;
	}

	/* Medidas / tamaño */
	.food_section .box .detail-box .product-size {
	  font-size: 13px;
	  color: var(--rb3d-muted) !important;
	  margin-bottom: 6px;
	}

	/* Precio + 5+ alineados en la misma línea */
	.food_section .box .detail-box .price {
	  display: flex;
	  align-items: baseline;
	  gap: 8px;
	  margin-bottom: 6px;
	}

	.food_section .box .detail-box .price-main,
	.food_section .box .detail-box .price-main span {
	  color: var(--rb3d-dark) !important;
	}

	/* Botón y dropdown acomodados en fila */
	.food_section .box .detail-box .options form.d-flex {
	  display: flex;
	  flex-wrap: wrap;
	  align-items: center;
	  gap: 6px;
	}


	/* =====================================
	   FIX ANTI-SALTOS · PRODUCTOS Y BOTONES
	   ===================================== */

	/* 1) Que las cajas de producto NO se muevan al pasar el mouse */
	.food_section .box,
	.food_section .box:hover,
	.food_section .box:active {
	  transform: none !important;
	  top: 0 !important;
	}

	/* 2) Que los botones NO se muevan jamás */
	button,
	button:hover,
	button:active,
	.btn,
	.btn:hover,
	.btn:active,
	input[type="submit"],
	input[type="submit"]:hover,
	input[type="submit"]:active {
	  transform: none !important;
	  top: 0 !important;
	}


	/* ==============================
	   FIX · Quitar recuadro negro
	   detrás de la foto del producto
	   ============================== */

	/* La card completa del producto en blanco, por si el template insiste */
	.food_section .box {
	  background: #ffffff !important;
	  border: 1px solid var(--rb3d-border) !important;
	}

	/* El contenedor de la imagen SIN fondo negro ni padding */
	.food_section .box .img-box {
	  background: #ffffff !important;
	  padding: 0 !important;
	  margin: 0 !important;
	}

	/* La imagen ocupa todo, sin dejar bordes negros alrededor */
	.food_section .box .img-box img {
	  display: block;
	  width: 100%;
	  height: auto;
	  border-radius: 12px;
	}


	/* ==============================
	   FIX FINAL · Borrar sombra/overlay
	   negro heredado del template
	   ============================== */

	/* Quitar sombras y fondos raros de la caja y la zona de imagen */
	.food_section .box,
	.food_section .box::before,
	.food_section .box::after,
	.food_section .box .img-box,
	.food_section .box .img-box::before,
	.food_section .box .img-box::after {
	  box-shadow: none !important;
	  background: none !important;
	}

	/* Neutralizar pseudo-elementos que dibujan manchas */
	.food_section .box::before,
	.food_section .box::after,
	.food_section .box .img-box::before,
	.food_section .box .img-box::after {
	  content: none !important;
	}


	/* =====================================
	   ESTÉTICA FINAL DE LAS CARDS RB3D
	   – Sombra suave en hover
	   – Foto + texto en una sola tarjeta limpia
	   ===================================== */

	/* Card completa del producto */
	.food_section .box {
	  background: #ffffff !important;
	  border-radius: 16px !important;
	  border: 1px solid var(--rb3d-border) !important;
	  overflow: hidden !important;                /* une visualmente imagen + texto */
	  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08) !important;  /* sombra base suave */
	  transition: box-shadow 0.18s ease !important;
	  transform: none !important;                 /* aseguramos que NO se mueva */
	}

	/* Sombra un poco más marcada al pasar el mouse, sin saltos */
	.food_section .box:hover {
	  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18) !important;
	  transform: none !important;                 /* de nuevo: nada de levantarse */
	}

	/* Imagen pegada arriba, sin recuadros raros */
	.food_section .box .img-box {
	  background: #f9fafb !important;
	  padding: 0 !important;
	  margin: 0 !important;
	}

	/* La imagen ocupa todo el ancho de la card */
	.food_section .box .img-box img {
	  display: block;
	  width: 100%;
	  height: auto;
	  border-radius: 0 !important;      /* sin esquinas distintas a la card */
	}

	/* Texto integrado en la misma tarjeta (no una caja aparte) */
	.food_section .box .detail-box {
	  background: #ffffff !important;
	  margin: 0 !important;
	  padding: 10px 12px 12px !important;
	  border: none !important;          /* sin línea que separe imagen y texto */
	}

	/* Opcional: un poquito menos de aire entre líneas dentro de la card */
	.food_section .box .detail-box .product-title {
	  margin-bottom: 3px !important;
	}
	.food_section .box .detail-box .product-size {
	  margin-bottom: 6px !important;
	}


	/* =====================================
	   BOTÓN AGREGAR · Mejor contraste
	   ===================================== */
	.btn-success,
	button.btn-success {
	  color: #ffffff !important;
	  font-weight: 600;
	}

	.btn-success:hover,
	button.btn-success:hover {
	  color: #ffffff !important;
	  filter: brightness(1.1);   /* leve realce sin moverse */
	}

	/* =====================================
	   TOTAL DE PRODUCTOS · Color unificado
	   ===================================== */
	.total-productos,
	.total-productos span {
	  color: var(--rb3d-primary) !important;  /* tu verde */
	  font-weight: 600;
	  text-decoration: none !important;
	}

	/* eliminar el efecto hover azul/verde */
	.total-productos:hover,
	.total-productos span:hover {
	  color: var(--rb3d-primary) !important;
	  text-decoration: none !important;
	  cursor: default;
	}



	/* ===============================
	   ICONOS REDES SOCIALES HEADER
	   =============================== */
	/* ===== ICONOS REDES (sin saltitos) ===== */
	.user_option .redes i {
	  font-size: 20px;
	  color: #ffffff;
	  padding: 6px;
	  border-radius: 6px;
	  transition: color 0.25s ease, background 0.25s ease;
	}

	/* Hover limpio, sin mover */
	.user_option .redes:hover i {
	  background: rgba(255,255,255,0.10);
	  color: #00d17c;
	}

	/* Separación equilibrada entre íconos */
	.user_option .user_link.redes {
	  margin-left: 6px;
	}

	/* Unificar lupa, mail, whatsapp y redes en mismo estilo */
	.user_option .user_link i {
	  color: #111827;
	}
	.user_option .user_link:hover i {
	  color: #00d17c;
	}


	/* ===== CARRITO SIN BOTÓN ===== */
	.carrito-link i {
	  font-size: 20px;
	  color: #ffffff;
	  transition: color 0.25s ease, background 0.25s ease;
	  padding: 6px;
	  border-radius: 6px;
	}

	/* Hover igual que redes, sin despegarse */
	.carrito-link:hover i {
	  background: rgba(255,255,255,0.10);
	  color: #00d17c;
	}


	#contadorCarrito {
	  background: #00d17c;
	  padding: 2px 5px;
	  font-weight: bold;
	  border: 1px solid rgba(0,0,0,0.15);
	}



	/* BOTÓN "Agregar" dentro de la card: fondo verde, texto blanco bien marcado */
	.food_section .box .detail-box .options button.btn-success,
	.food_section .box .detail-box .options button.btn-success:hover,
	.food_section .box .detail-box .options button.btn-success:active {
	  background: var(--rb3d-green) !important;
	  color: #ffffff !important;
	  border-color: var(--rb3d-green) !important;
	  font-weight: 600;
	  filter: brightness(1.0);
	}


	/* "Total de productos" en verde fijo, sin comportamiento de link azul */
	.header_section .navbar-nav .nav-link.text-info {
	  color: var(--rb3d-green) !important;    /* tu verde */
	  cursor: default;
	}

	.header_section .navbar-nav .nav-link.text-info:hover {
	  color: var(--rb3d-green) !important;    /* que no cambie */
	  text-decoration: none !important;
	}


	/* Ajuste fino "Total de productos" */
	.header_section .navbar-nav .nav-link.text-info {
	  color: var(--rb3d-green) !important;
	  font-size: 14px;          /* más chico */
	  font-weight: 600;
	  padding: 0 8px !important;/* menos alto, menos ancho */
	  line-height: 1.2;
	  white-space: nowrap;      /* forzar una sola línea */
	  cursor: default;
	}

	.header_section .navbar-nav .nav-link.text-info:hover {
	  color: var(--rb3d-green) !important;
	  text-decoration: none !important;
	}


	/* Hover unificado para TODOS los íconos del header */
	.user_option .user_link i {
	  font-size: 20px;
	  color: #111827;
	  padding: 6px;
	  border-radius: 6px;
	  transition: color 0.25s ease, background 0.25s ease;
	}

	.user_option .user_link:hover i {
	  color: #00d17c;
	  background: rgba(255,255,255,0.10);
	}


	/* Reducir esquina gigante del botón de Colores para igualarlo visualmente */
	.dropdown .btn.btn-outline-secondary {
	  border-radius: 8px !important;     /* antes 999px */
	  padding: 6px 10px !important;
	  font-size: 12px !important;
	}

	/* Hover consistente sin óvalo gigante */
	.dropdown .btn.btn-outline-secondary:hover {
	  border-radius: 8px !important;
	  background: var(--rb3d-green-soft) !important;
	  color: var(--rb3d-dark) !important;
	}


/* Borrar burbuja/redondo raro detrás del botón "Colores y cantidades" */
.food_section .box .detail-box .options .btn::before,
.food_section .box .detail-box .options .btn::after {
  content: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}


.food_section .box .detail-box .options .dropdown-toggle {
  border-radius: 8px !important;
}


/* Limpiar el borde redondo gigante del link dentro de la imagen */
.food_section .box .img-box a {
  display: block;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Y matar cualquier pseudo-elemento decorativo del template */
.food_section .box .img-box a::before,
.food_section .box .img-box a::after {
  content: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}


/* ===============================
   RB3D · Producto · Imagen limpia
   =============================== */

/* Limpiamos TODOS los estilos anteriores de img-box */
.food_section .box .img-box,
.food_section .box .img-box *,
.food_section .box .img-box::before,
.food_section .box .img-box::after {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  content: none !important;
}

/* Nuevo estilo único y definitivo */
.food_section .box .img-box {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important; /* el recuadro invisible */
  padding: 14px !important;
  border-radius: 10px !important;  /* suave, todos iguales */
  height: 365px !important;       /* mantiene alineación de cards */
  overflow: hidden !important;
}

/* Imagen correcta + sin bordes raros */
.food_section .box .img-box img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 6px !important;   /* leve, elegante */
  object-fit: contain !important;  /* no recorta, no estira */
}

/* Enlaces internos sin burbujas */
.food_section .box .img-box a,
.food_section .box .img-box a::before,
.food_section .box .img-box a::after {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  content: none !important;
}

/* Fix dropdown oculto por overflow en cards de productos */
.product-card, .item-card, .card {
  overflow: visible !important;
  position: relative !important;
  z-index: 20 !important;
}

/* El menú sigue siendo absoluto, solo le subimos la capa */
.dropdown-menu {
  z-index: 9999 !important;
  position: absolute !important; /* clave para que no se corra */
}

/* Si algún contenedor lo estaba recortando */
.products-grid, .productos, .row, .container {
  overflow: visible !important;
}




.product-card {
  position: relative !important;
  overflow: visible !important;
  z-index: 10;
}

/* Cualquier dropdown dentro de la card abre SIEMPRE hacia arriba */
.product-card .dropup .dropdown-menu {
  top: auto !important;
  bottom: 100% !important;
  transform: translateY(-0.25rem);
  z-index: 9999 !important;
}



/* ============================
   HEADER RB3D · NAVBAR NUEVA
   ============================ */

/* Contenedor del header */
.rb3d-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.08);
}

/* Marca / logo */
.rb3d-navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rb3d-green, #007a4d);
}

.rb3d-navbar-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Colores de links del menú */
.rb3d-navbar .navbar-nav .nav-link {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #111827;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.12s ease;
}

.rb3d-navbar .navbar-nav .nav-link:hover,
.rb3d-navbar .navbar-nav .nav-link:focus {
  color: #ffffff;
  background-color: var(--rb3d-green, #007a4d);
  transform: translateY(-1px);
}

.rb3d-navbar .navbar-nav .nav-link.active,
.rb3d-navbar .navbar-nav .nav-link.show {
  color: #ffffff;
  background-color: var(--rb3d-green, #007a4d);
}

/* Toggler (hamburguesa) en mobile */
.rb3d-navbar .navbar-toggler {
  border-color: rgba(15, 23, 42, 0.12);
  padding: 0.25rem 0.55rem;
}

.rb3d-navbar .navbar-toggler-icon {
  background-image: none !important;
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
}

/* Dibujamos las 3 rayitas del toggler */
.rb3d-navbar .navbar-toggler-icon::before,
.rb3d-navbar .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background-color: #111827;
}

.rb3d-navbar .navbar-toggler-icon::before {
  top: 25%;
  box-shadow: 0 0.35rem 0 0 #111827;
}

.rb3d-navbar .navbar-toggler-icon::after {
  bottom: 25%;
}

/* Menú desplegado en mobile */
@media (max-width: 991.98px) {
  .rb3d-navbar .navbar-collapse {
    background-color: #ffffff;
    margin-top: 0.75rem;
    border-radius: 1rem;
    padding: 0.5rem 0.75rem 0.75rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  }

  .rb3d-navbar .navbar-nav .nav-link {
    margin-bottom: 0.25rem;
    display: block;
  }
}


/* ============================
   HERO / CAROUSEL RB3D
   ============================ */

.rb3d-hero {
  background: radial-gradient(circle at top left, #e1f5ec 0, #ffffff 45%, #f2f4f7 100%);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.rb3d-hero .carousel,
.rb3d-hero .carousel-inner,
.rb3d-hero .carousel-item {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.25);
}

/* Flechas e indicadores más discretos */
.rb3d-hero .carousel-control-prev-icon,
.rb3d-hero .carousel-control-next-icon {
  filter: invert(1) grayscale(1);
}

.rb3d-hero .carousel-indicators li {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.25);
}

.rb3d-hero .carousel-indicators .active {
  background-color: var(--rb3d-green, #007a4d);
}



/* ============================
   RB3D · Carrusel destacados
   ============================ */

.rb3d-hero-carousel {
  background: radial-gradient(circle at top left, #e1f5ec 0, #ffffff 45%, #f3f4f6 100%);
  border-radius: 1.5rem;
  padding: 1.5rem 1.25rem 1.75rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

/* Título "Productos destacados" */
.rb3d-hero-carousel .titulo-destacado {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
}

/* Card del carrusel */
.rb3d-carousel-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.rb3d-carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

/* Imagen del producto */
.rb3d-carousel-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Nombre del producto */
.rb3d-carousel-title {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #111827;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Ajustes de Owl para que encaje con el estilo nuevo */
#carousel-owl-productos .owl-stage-outer {
  padding: 0.25rem 0;
}

#carousel-owl-productos .owl-dots {
  margin-top: 0.75rem;
}

#carousel-owl-productos .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 3px;
  background: rgba(15, 23, 42, 0.26);
  border-radius: 999px;
  transition: background-color 0.16s ease, transform 0.16s ease;
}

#carousel-owl-productos .owl-dot.active span {
  background: #007a4d;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 575.98px) {
  .rb3d-hero-carousel {
    border-radius: 1rem;
    padding: 1.25rem 0.75rem 1.5rem;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
  }

  .rb3d-carousel-img {
    height: 160px;
  }
}


/* ============================
   RB3D · Header Icon Fix
   ============================ */

.rb3d-navbar .navbar-nav .nav-link i,
.rb3d-navbar .navbar-nav .nav-link svg,
.rb3d-navbar .navbar-nav .nav-link img {
  color: #111827 !important;         /* gris oscuro premium */
  filter: brightness(0) !important;  /* fuerza ícono negro si es png */
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.rb3d-navbar .navbar-nav .nav-link i:hover,
.rb3d-navbar .navbar-nav .nav-link svg:hover,
.rb3d-navbar .navbar-nav .nav-link img:hover {
  opacity: 1;
  color: var(--rb3d-green, #007a4d) !important;
  filter: none !important;
  transform: translateY(-1px);
}




/* ============================
   RB3D · HEADER LIMPIO
   ============================ */

/* Navbar general ya la tenés, reforzamos por las dudas */
.rb3d-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.08);
}

/* Contenedor de íconos + búsqueda */
.rb3d-navbar .rb3d-header-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.25rem;
}

/* Íconos (WhatsApp, mail, redes, carrito) */
.rb3d-navbar .rb3d-header-icon {
  color: #111827 !important;
  background: transparent;
  padding: 0.25rem 0.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.1s ease;
}

.rb3d-navbar .rb3d-header-icon i {
  font-size: 1.1rem;
}

.rb3d-navbar .rb3d-header-icon:hover {
  background-color: #007a4d;
  color: #ffff00 !important;
  transform: translateY(-1px);
}

/* Badge del carrito en posición razonable */
.rb3d-navbar .rb3d-cart-badge {
  position: relative;
  top: -10px;
  left: -10px;
  font-size: 10px;
}

/* Buscador en header */
.rb3d-navbar .rb3d-header-search .form-control {
  border-radius: 999px 0 0 999px;
  border-color: #d1d5db;
  font-size: 0.9rem;
}

.rb3d-navbar .rb3d-header-search .rb3d-search-btn {
  border-radius: 0 999px 999px 0;
  border-color: #d1d5db;
  color: #111827;
  background-color: #f9fafb;
}

.rb3d-navbar .rb3d-header-search .rb3d-search-btn:hover {
  background-color: #007a4d;
  color: #ffffff;
  border-color: #007a4d;
}

/* En mobile que no quede todo apretado */
@media (max-width: 991.98px) {
  .rb3d-navbar .rb3d-header-tools {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .rb3d-navbar .rb3d-header-search .input-group {
    width: 100%;
  }
}


/* ======================================
   HEADER FIJO, BLANCO Y DESPEGADO DEL HERO
   ====================================== */

.rb3d-navbar-fixed {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  padding-top: .35rem;
  padding-bottom: .35rem;
}

.hero_area {
  margin-top: 0 !important;
}

/* La imagen de fondo debajo del header */
.bg-box img {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: -1;
}

/* En mobile dejamos que se adapte solo */
@media (max-width: 768px) {
  .bg-box img {
    height: auto;
  }
}

/* Hero sin degradado blanco, pegado al header */
.hero_area {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background: transparent !important;
}


/* ============================
   RB3D · Armonizar header + hero
   (para páginas internas: clase .sub_page)
   ============================ */

/* Header blanco, tipo Apple */
.header_section {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding-top: 6px;
  padding-bottom: 6px;
}

/* Links e iconos oscuros, acordes al resto de la UI */
.header_section .navbar-brand span,
.header_section .navbar-nav .nav-link {
  color: #111827 !important;
}

.header_section .navbar-nav .nav-link:hover,
.header_section .navbar-nav .nav-link.active {
  color: var(--rb3d-green, #007a4d) !important;
  background-color: transparent !important;
}

.header_section .user_option .user_link i {
  color: #111827 !important;
}

.header_section .user_option .user_link:hover i {
  color: var(--rb3d-green, #007a4d) !important;
}

/* ============================
   Quitar la franja oscura del hero
   en páginas internas (.sub_page)
   ============================ */

/* El hero de las sub_page no necesita fondo oscuro */
.sub_page .hero_area {
  background: var(--rb3d-bg, #f4f5f7) !important;
  margin-top: 0 !important;
  padding-top: 12px !important;
  min-height: auto !important;
}

/* Ocultamos la imagen de fondo del template en páginas internas */
.sub_page .hero_area .bg-box,
.sub_page .hero_area .bg-box img {
  display: none !important;
}

/* El slider/carrusel arranca ya sobre el fondo gris claro,
   separado del header blanco */
.sub_page .slider_section {
  padding-top: 10px !important;
}


/* ============================
   RB3D · Eliminar hero oscuro en catálogo
   ============================ */

/* Oculta la imagen de fondo y su contenedor, solo fuera del Home */
.sub_page .bg-box,
.sub_page .bg-box img {
  display: none !important;
}

/* Hero se convierte en separador liviano */
.sub_page .hero_area {
  background: #f3f4f6 !important; /* gris claro elegante */
  padding: 12px 0 8px 0 !important;
  margin: 0 !important;
  min-height: auto !important;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.04);
}


@media (max-width: 768px) {
  /* Cambiamos el color de los iconos a negro */
  .user_option i.fa-whatsapp,
  .user_option i.fa-envelope,
  .user_option i.fa-search {
    color: black;
  }

  /* Opcional: Si querés también darles un fondo para más contraste */
  .user_option i.fa-whatsapp,
  .user_option i.fa-envelope,
  .user_option i.fa-search {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    padding: 5px;
  }
  
  /* Link "Categorías" */
  #categoriasDropdown {
    color: black !important;
  }
}


/* === Forzar formato cuadrado en carrusel destacados === */
#carousel-owl-productos .card img,
#carousel-owl-productos .item img,
#carousel-owl-productos img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
}


@media (max-width: 768px) {
  #carousel-owl-productos .item img {
    max-height: 240px;
  }
}



/* ===== HERO BASE RB3D ===== */
:root {
  --rb3d-green: #007a4d;
  --rb3d-green-soft: #e1f5ec;
  --rb3d-dark: #111827;
  --rb3d-text: #1f2933;
  --rb3d-muted: #6b7280;
}

.hero-rb3d {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 20px 10px;  /* menos aire arriba */
  overflow: hidden;
  min-height: auto;         /* que no fuerce altura gigante */
}



/* ===== HERO C: hero + beneficios · DARK STYLE ===== */
/* ===== HERO C: hero + beneficios · ESTILO CLARO ===== */
.hero-c {
  background: radial-gradient(
    circle at top left,
    var(--rb3d-green-soft) 0,
    #ffffff 45%,
    #f3f4f6 100%
  );
  color: var(--rb3d-text);
}

.hero-c-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.hero-c-main {
  margin-bottom: 28px;
}

.hero-c-text {
  max-width: 780px;
}

.hero-c .hero-eyebrow {
  color: var(--rb3d-green);
}

.hero-c-text h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 10px;
  color: var(--rb3d-dark);
}

.hero-c-text p {
  font-size: 0.98rem;
  color: var(--rb3d-muted);
  margin-bottom: 20px;
}

.hero-c-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 122, 77, 0.16);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--rb3d-dark);
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--rb3d-muted);
}

/* Mobile / tablet */
@media (max-width: 768px) {
  .hero-c-text {
    text-align: center;
    margin: 0 auto;
  }

  .hero-c-benefits {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    justify-content: center;
  }
}


/* Mobile / tablet */
@media (max-width: 768px) {
  .hero-c-text {
    text-align: center;
    margin: 0 auto;
  }

  .hero-c-benefits {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    justify-content: center;
  }
}


/* ELIMINAR ESPACIO ENTRE HEADER Y HERO */
.hero_area {
  position: relative;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero_area .bg-box {
  position: absolute;
  top: 0 !important;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 0 !important;
  max-height: none !important;
  background-position: top center !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Asegura que el header no empuje */
.header_section,
.rb3d-navbar {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}



.header_section {
  background: transparent !important;
  position: relative;
  z-index: 20;
}

.hero_area .bg-box {
  background: linear-gradient(
    to bottom,
    var(--rb3d-green-soft) 0%,
    #ffffff 100%
  ) !important;
  height: 320px; /* ajustable */
}



/* Fondo global del header + hero: SOLO EN BG-BOX */
.hero_area {
  position: relative;
  overflow: visible !important;
}

.hero_area .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 360px; /* ajustá 320/400 según cuánto quieras que cubra */
  z-index: -1;
  background: linear-gradient(
    to bottom,
    var(--rb3d-green-soft) 0%,
    #ffffff 100%
  ) !important;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Header transparente sobre el gradient */
.header_section {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  position: relative;
  z-index: 50;
}

.header_section .container,
.rb3d-navbar {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* El hero NO pinta su propio fondo, deja ver el de bg-box */
.hero-rb3d.hero-c {
  background: transparent !important;
  margin-top: 0 !important;
  padding-top: 20px !important; /* ajustable */
}

.dropdown-menu {
  z-index: 1000;
}


