/**
 * Estilos del plugin Tenndi Menu Digital
 *
 * @package Tenndi_Menu
 */

/* Variables CSS */
:root {
	--tenndi-primary: #E6BD59;
	--tenndi-accent: #000000;
	--tenndi-bg: #000000;
	--tenndi-card-bg: #FFFFFF;
	--tenndi-text: #1d1d1d;
	--tenndi-text-light: #757575;
}

/* Base - Mobile First */
.tenndi-menu-wrapper {
	background: linear-gradient(135deg, var(--tenndi-bg) 0%, rgba(22, 33, 62, 0.95) 100%);
	color: var(--tenndi-text);
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	min-height: 100vh;
	padding-bottom: 40px;
	position: relative;
	/* Removido overflow-x: hidden para permitir que sticky funcione */
}

.tenndi-menu-wrapper::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(254, 121, 59, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(230, 189, 89, 0.08) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

/* Header */
.tenndi-header {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 15px 20px;
	z-index: 999;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Ocultar header cuando se hace scroll */
.tenndi-menu-wrapper.scrolled .tenndi-header {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}

/* Logo en header del menú - hereda estilos de home-menu para fastfood */
.tenndi-menu-fastfood .tenndi-header-logo.tenndi-home-logo {
	position: relative;
	z-index: 10;
	margin-top: 10px;
	margin-bottom: 10px;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
}

.tenndi-menu-fastfood .tenndi-header-logo.tenndi-home-logo::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(255,193,7,0.4) 0%, transparent 70%);
	border-radius: 50%;
	animation: pulseGlow 2s ease-in-out infinite;
	z-index: -1;
}

@keyframes pulseGlow {
	0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
	50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.tenndi-menu-fastfood .tenndi-header-logo.tenndi-home-logo img {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid #FFC107;
	box-shadow: 
		0 0 30px rgba(255, 193, 7, 0.5),
		0 10px 40px rgba(0,0,0,0.4);
	position: relative;
	z-index: 2;
	background: #ffffff;
	transition: transform 0.3s ease;
}

.tenndi-menu-fastfood .tenndi-header-logo.tenndi-home-logo:hover img {
	transform: scale(1.05);
}

/* Para diseño fastfood con skin trap-kitchen */
.tenndi-menu-fastfood.tenndi-menu-fastfood-skin-trap-kitchen .tenndi-header-logo.tenndi-home-logo img,
.tenndi-menu-fastfood.tenndi-menu-fastfood-skin-trap-kitchen .tenndi-header-logo.tenndi-home-logo {
	filter: drop-shadow(0 0 20px rgba(108, 92, 231, 0.8));
	animation: trapGlow 2s ease-in-out infinite;
}

@keyframes trapGlow {
	0%, 100% {
		filter: drop-shadow(0 0 20px rgba(108, 92, 231, 0.8));
	}
	50% {
		filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.8));
	}
}

/* Ocultar título y texto de bienvenida - eliminados del template */
.tenndi-header-title,
.tenndi-welcome-text {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}

/* Tabs de categorías */
.tenndi-categories-tabs {
	position: sticky;
	z-index: 10;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 15px 0;
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	/* Mejorar el scroll horizontal */
	scrollbar-width: thin;
	scrollbar-color: rgba(254, 121, 59, 0.5) rgba(255, 255, 255, 0.1);
}

.tenndi-categories-tabs::-webkit-scrollbar {
	height: 6px;
}

.tenndi-categories-tabs::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
}

.tenndi-categories-tabs::-webkit-scrollbar-thumb {
	background: rgba(254, 121, 59, 0.5);
	border-radius: 10px;
	transition: background 0.3s ease;
}

.tenndi-categories-tabs::-webkit-scrollbar-thumb:hover {
	background: rgba(254, 121, 59, 0.7);
}


.tenndi-tab {
	background: rgba(255, 255, 255, 0.05);
	border: none;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 10px 24px;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 12px;
	margin: 0 6px;
	position: relative;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.tenndi-tab:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tenndi-tab.active {
	background: linear-gradient(135deg, rgba(254, 121, 59, 0.3), rgba(254, 121, 59, 0.2));
	color: #ffffff;
	border-color: rgba(254, 121, 59, 0.5);
	box-shadow: 0 4px 16px rgba(254, 121, 59, 0.3);
}

/* Contenido del menú */
.tenndi-menu-content {
	padding: 30px 15px;
	max-width: 650px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* Sección de categoría */
.tenndi-category-section {
	margin-bottom: 50px;
	scroll-margin-top: 150px; /* Offset para búsqueda + tabs */
	animation: fadeInUp 0.6s ease forwards;
	opacity: 0;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tenndi-category-title {
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 25px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	position: relative;
	padding-bottom: 12px;
}

.tenndi-category-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--tenndi-primary), transparent);
	border-radius: 2px;
}

/* Grid de productos */
.tenndi-products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

/* Tarjeta de producto */
.tenndi-product-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	position: relative;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.tenndi-product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);
	transition: left 0.5s ease;
	z-index: 1;
	pointer-events: none;
}

.tenndi-product-card:hover {
	transform: translateY(-12px) scale(1.03);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25), 
	            0 0 0 1px rgba(254, 121, 59, 0.3),
	            0 0 40px rgba(254, 121, 59, 0.15);
	background: rgba(255, 255, 255, 1);
	border-color: rgba(254, 121, 59, 0.4);
}

.tenndi-product-card:hover::before {
	left: 100%;
}

.tenndi-product-card:active {
	transform: translateY(-6px) scale(1.01);
	transition: all 0.1s ease;
}

/* Imagen del producto */
.tenndi-product-image-wrapper {
	position: relative;
	width: 100%;
	padding-top: 100%; /* Aspect ratio 1:1 */
	overflow: hidden;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
	border-radius: 20px 20px 0 0;
}

.tenndi-product-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tenndi-product-card:hover .tenndi-product-image {
	transform: scale(1.08);
}

/* Badges */
.tenndi-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 10;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	opacity: 0;
	animation: badgeAppear 0.4s ease forwards, badgePulse 2s ease-in-out infinite;
}

/* Animación de aparición */
@keyframes badgeAppear {
	0% {
		opacity: 0;
		transform: scale(0.8) translateY(-10px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* Animación de pulso */
@keyframes badgePulse {
	0%, 100% { 
		transform: scale(1); 
	}
	50% { 
		transform: scale(1.08); 
		box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
	}
}

/* Delay escalonado por posición en el grid */
.tenndi-products-grid .tenndi-product-card:nth-child(1) .tenndi-badge {
	animation-delay: 0s, 0s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(2) .tenndi-badge {
	animation-delay: 0.1s, 0.2s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(3) .tenndi-badge {
	animation-delay: 0.2s, 0.4s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(4) .tenndi-badge {
	animation-delay: 0.3s, 0.6s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(5) .tenndi-badge {
	animation-delay: 0.4s, 0.8s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(6) .tenndi-badge {
	animation-delay: 0.5s, 1s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(7) .tenndi-badge {
	animation-delay: 0.6s, 1.2s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(8) .tenndi-badge {
	animation-delay: 0.7s, 1.4s;
}

/* Para productos después del 8vo, continuar el patrón */
.tenndi-products-grid .tenndi-product-card:nth-child(n+9) .tenndi-badge {
	animation-delay: 0.8s, 1.6s;
}

/* Badge: Agotado (gris oscuro) */
.tenndi-badge-out-of-stock {
	background: linear-gradient(135deg, #555, #333);
	color: #ffffff;
	animation: none; /* Sin animación para agotado */
}

/* Badge: En Oferta (rojo brillante) */
.tenndi-badge-sale {
	background: linear-gradient(135deg, #ff4444, #cc0000);
	color: #ffffff;
}

/* Badge: Nuevo (verde) */
.tenndi-badge-new {
	background: linear-gradient(135deg, #00d084, #00a86b);
	color: #ffffff;
}

/* Badge: Destacado (dorado) */
.tenndi-badge-featured {
	background: linear-gradient(135deg, var(--tenndi-primary), #d4a017);
	color: var(--tenndi-accent);
}

/* Responsive */
@media (max-width: 768px) {
	.tenndi-badge {
		font-size: 10px;
		padding: 4px 10px;
		top: 6px;
		right: 6px;
	}
}

/* Información del producto */
.tenndi-product-info {
	padding: 18px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	background: #ffffff;
}

.tenndi-product-name {
	color: #1a1a2e;
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 10px 0;
	line-height: 1.4;
	transition: color 0.3s ease;
}

.tenndi-product-card:hover .tenndi-product-name {
	color: var(--tenndi-primary);
}

.tenndi-product-description {
	color: #4a5568;
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 14px;
	flex-grow: 1;
	transition: opacity 0.3s ease;
}

.tenndi-product-card:hover .tenndi-product-description {
	opacity: 0.85;
}

.tenndi-product-price {
	color: var(--tenndi-primary);
	font-size: 20px;
	font-weight: 700;
	margin-top: auto;
	background: linear-gradient(135deg, var(--tenndi-primary), #E85D1A);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: transform 0.3s ease;
}

.tenndi-product-price .woocommerce-Price-amount {
	background: linear-gradient(135deg, var(--tenndi-primary), #E85D1A);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tenndi-product-card:hover .tenndi-product-price {
	transform: scale(1.05);
}

/* Mensaje cuando no hay productos */
.tenndi-no-products {
	color: var(--tenndi-text-light);
	text-align: center;
	padding: 40px 20px;
	font-size: 16px;
}

/* Smooth scroll */
html {
	scroll-behavior: smooth;
}

/* Tablet y Desktop */
@media (min-width: 768px) {
	.tenndi-menu-fastfood .tenndi-header-logo.tenndi-home-logo img {
		width: 180px;
		height: 180px;
	}
	
	.tenndi-menu-fastfood .tenndi-header-logo.tenndi-home-logo::before {
		width: 220px;
		height: 220px;
	}
	
	.tenndi-header-title {
		font-size: 28px;
	}

	.tenndi-tab {
		font-size: 16px;
		padding: 10px 24px;
	}

	.tenndi-menu-content {
		padding: 30px 20px;
	}

	.tenndi-category-title {
		font-size: 24px;
	}

	.tenndi-products-grid {
		gap: 20px;
	}

	.tenndi-product-info {
		padding: 18px;
	}

	.tenndi-product-name {
		font-size: 18px;
	}

	.tenndi-product-description {
		font-size: 14px;
	}

	.tenndi-product-price {
		font-size: 20px;
	}
}

@media (min-width: 1024px) {
	.tenndi-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.tenndi-menu-content {
		padding: 40px 30px;
	}
}

/* Contenedor sticky principal - debe estar fuera de contenedores con overflow */
.tenndi-sticky-container {
	position: sticky;
	top: 0px;
	z-index: 10;
	/* Asegurar que no esté afectado por overflow de ancestros */
	contain: layout style;
	/* Forzar que sticky funcione incluso con overflow en ancestros */
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
}

/* Buscador de productos */
.tenndi-search-wrapper {
	position: sticky;
	top: 0px;
	z-index: 10;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 15px 20px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

/* Cuando la búsqueda está activa, aumentar z-index */
.tenndi-search-wrapper.search-active {
	z-index: 1000;
}

/* Asegurar que los elementos sticky mantengan su posición */
.tenndi-sticky-container,
.tenndi-search-wrapper,
.tenndi-categories-tabs {
	will-change: transform;
	/* Asegurar que sticky funcione correctamente */
	position: -webkit-sticky;
	position: sticky;
}

.tenndi-search-layout {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 650px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	width: 100%;
}

/* Link Contáctenos - Mitad izquierda */
.tenndi-contact-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 16px 24px;
	background: #ffffff;
	border: none;
	border-radius: 16px;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #1a1a1a;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 
		0 8px 25px rgba(0,0,0,0.3),
		inset 0 -4px 0 rgba(0,0,0,0.1);
	position: relative;
	overflow: hidden;
	flex: 0 0 calc(50% - 6px); /* Mitad menos la mitad del gap */
	white-space: nowrap;
	min-width: 0;
	box-sizing: border-box;
}

.tenndi-contact-link > * {
	position: relative;
	z-index: 1;
}

.tenndi-contact-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,193,7,0.3), transparent);
	transition: left 0.5s;
	z-index: 0;
	pointer-events: none;
}

.tenndi-contact-link:hover::before {
	left: 100%;
}

.tenndi-contact-link:hover {
	transform: translateY(-3px) scale(1.02);
	background: #ffffff !important;
	box-shadow: 
		0 12px 35px rgba(0,0,0,0.4),
		inset 0 -4px 0 rgba(0,0,0,0.1);
}

.tenndi-contact-link:hover span {
	color: #1a1a1a !important;
}

.tenndi-contact-link:active {
	transform: translateY(0) scale(0.98);
	background: #e5e5e5 !important;
	color: #1a1a1a !important;
}

.tenndi-contact-link:active span {
	color: #1a1a1a !important;
}

.tenndi-contact-link i {
	font-size: 1.4rem;
	width: 45px;
	height: 45px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: rgba(255, 193, 7, 0.1);
	color: #FFD700;
}

/* Cuando la búsqueda está activa, ocultar el link */
.tenndi-search-wrapper.search-active .tenndi-contact-link {
	opacity: 0;
	width: 0;
	padding: 0;
	margin: 0;
	overflow: hidden;
	pointer-events: none;
}

.tenndi-search-container {
	position: relative;
	flex: 0 0 calc(50% - 6px); /* Mitad menos la mitad del gap */
	min-width: 0;
	transition: all 0.3s ease;
	box-sizing: border-box;
	border-radius: 12px;
	overflow: hidden; /* Asegurar que el contenido respete el border-radius */
}

/* Cuando la búsqueda está activa, expandir */
.tenndi-search-wrapper.search-active .tenndi-search-container {
	flex: 1 1 100%;
	max-width: 100%;
}

.tenndi-search-input {
	width: 100%;
	padding: 14px 50px 14px 45px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px !important;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	outline: none;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	-webkit-border-radius: 12px !important;
	-moz-border-radius: 12px !important;
}

.tenndi-search-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.tenndi-search-input:focus {
	border-color: rgba(254, 121, 59, 0.6);
	box-shadow: 0 0 0 4px rgba(254, 121, 59, 0.2), 0 8px 24px rgba(0, 0, 0, 0.15);
	background: rgba(255, 255, 255, 0.15);
	border-radius: 12px !important;
	-webkit-border-radius: 12px !important;
	-moz-border-radius: 12px !important;
}

.tenndi-search-icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	pointer-events: none;
	opacity: 0.7;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.tenndi-search-clear {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 24px;
	color: #999;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease;
}

.tenndi-search-clear:hover {
	color: var(--tenndi-accent);
}

/* Overlay oscuro con glassmorphism */
.tenndi-search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.tenndi-search-wrapper.search-active .tenndi-search-overlay {
	opacity: 1;
	pointer-events: all;
}

.tenndi-search-results {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	max-height: 60vh;
	overflow-y: auto;
	z-index: 1001;
	border: 1px solid rgba(255, 255, 255, 0.3);
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	pointer-events: none;
}

.tenndi-search-wrapper.search-active .tenndi-search-results {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
}

.tenndi-search-empty {
	padding: 20px;
	text-align: center;
	color: #999;
	margin: 0;
}

/* Productos encontrados en búsqueda */
.tenndi-search-result-item {
	display: flex;
	align-items: center;
	padding: 15px 18px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	cursor: pointer;
	transition: all 0.3s ease;
	gap: 15px;
}

.tenndi-search-result-item:last-child {
	border-bottom: none;
}

.tenndi-search-result-item:hover {
	background: rgba(254, 121, 59, 0.1);
	transform: translateX(5px);
}

.tenndi-search-result-image {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 12px;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tenndi-search-result-info {
	flex: 1;
	min-width: 0;
}

.tenndi-search-result-name {
	font-weight: 600;
	color: #1a1a2e;
	margin: 0 0 6px 0;
	font-size: 15px;
	line-height: 1.3;
}

.tenndi-search-result-price {
	background: linear-gradient(135deg, var(--tenndi-primary), #E85D1A);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
	font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
	.tenndi-search-wrapper {
		padding: 12px 15px;
	}
	
	.tenndi-search-layout {
		gap: 10px;
	}
	
	.tenndi-contact-link {
		padding: 10px 16px;
		font-size: 13px;
		flex: 0 0 calc(50% - 5px); /* Ajustar para móviles con gap de 10px */
	}
	
	.tenndi-contact-link span {
		display: inline; /* Mostrar texto en móviles también */
	}
	
	.tenndi-search-container {
		flex: 0 0 calc(50% - 5px); /* Ajustar para móviles con gap de 10px */
	}
	
	.tenndi-search-input {
		font-size: 14px;
		padding: 12px 45px 12px 40px;
	}
	
	.tenndi-categories-tabs {
		padding: 12px 0;
		/* El top se calculará dinámicamente con JS */
	}
	
	.tenndi-tab {
		padding: 8px 18px;
		font-size: 13px;
		margin: 0 4px;
	}
	
	.tenndi-search-results {
		max-height: 70vh;
	}
}

/* ============================================
   OCULTAR CARRITO WOOCOMMERCE
   ============================================ */

/* Ocultar carrito lateral WooCommerce */
.xoo-wsc-markup,
.xoo-wsc-modal,
.xoo-wsc-container,
.xoo-wsc-basket,
div[class*="xoo-wsc"],
.xoo-wsc-cart-active {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

/* Asegurar que el body no tenga overflow hidden del carrito */
body.xoo-wsc-cart-active {
	overflow: auto !important;
}

/* ============================================
   MICROINTERACCIONES AVANZADAS
   ============================================ */

/* Efecto ripple al hacer click */
.tenndi-product-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
	pointer-events: none;
	z-index: 2;
}

.tenndi-product-card:active::after {
	width: 300px;
	height: 300px;
}

/* Animación sutil en precio */
.tenndi-product-price {
	transition: all 0.3s ease;
}

.tenndi-product-card:hover .tenndi-product-price {
	transform: scale(1.05);
	color: var(--tenndi-primary);
}

/* Animación en nombre del producto */
.tenndi-product-name {
	transition: color 0.3s ease;
}

.tenndi-product-card:hover .tenndi-product-name {
	color: var(--tenndi-primary);
}

/* Transición suave en descripción */
.tenndi-product-description {
	transition: opacity 0.3s ease;
}

.tenndi-product-card:hover .tenndi-product-description {
	opacity: 0.8;
}

/* Animación de entrada para las tarjetas */
@keyframes cardFadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.tenndi-product-card {
	animation: cardFadeIn 0.4s ease forwards;
}

/* Delay escalonado para la aparición inicial */
.tenndi-products-grid .tenndi-product-card:nth-child(1) {
	animation-delay: 0.05s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(2) {
	animation-delay: 0.1s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(3) {
	animation-delay: 0.15s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(4) {
	animation-delay: 0.2s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(5) {
	animation-delay: 0.25s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(6) {
	animation-delay: 0.3s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(7) {
	animation-delay: 0.35s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(8) {
	animation-delay: 0.4s;
}

.tenndi-products-grid .tenndi-product-card:nth-child(n+9) {
	animation-delay: 0.45s;
}

/* Efecto de resplandor sutil en productos nuevos */
.tenndi-badge-new {
	position: relative;
}

.tenndi-badge-new::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
	border-radius: 20px;
	z-index: -1;
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0%, 100% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
}

/* Performance: reducir animaciones en móviles si el dispositivo lo requiere */
@media (prefers-reduced-motion: reduce) {
	.tenndi-product-card,
	.tenndi-badge,
	.tenndi-product-image {
		animation: none !important;
		transition: none !important;
	}
	
	.tenndi-product-card:hover {
		transform: none;
	}
}

/* ============================================
   FOOTER CON REDES SOCIALES
   ============================================ */

.tenndi-footer {
	background: linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(26, 26, 46, 0.98) 100%);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	color: #ffffff;
	padding: 50px 20px 35px;
	text-align: center;
	margin-top: 60px;
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tenndi-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, 
		var(--tenndi-primary) 0%, 
		rgba(255, 255, 255, 0.5) 50%, 
		var(--tenndi-primary) 100%
	);
}

.tenndi-footer-content {
	max-width: 650px;
	margin: 0 auto;
}

.tenndi-footer-title {
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 30px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, #ffffff 0%, rgba(254, 121, 59, 0.9) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tenndi-social-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.tenndi-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	font-size: 22px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.tenndi-social-link::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.4s ease, height 0.4s ease;
}

.tenndi-social-link:hover::before {
	width: 100%;
	height: 100%;
}

.tenndi-social-link:hover {
	transform: translateY(-5px) scale(1.1);
	border-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tenndi-social-link:active {
	transform: translateY(-3px) scale(1.05);
}

.tenndi-social-link i {
	position: relative;
	z-index: 1;
	color: #ffffff !important;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Colores específicos por red social */
.tenndi-social-whatsapp:hover {
	background: #25D366;
	border-color: #25D366;
}

.tenndi-social-email:hover {
	background: #EA4335;
	border-color: #EA4335;
}

.tenndi-social-facebook:hover {
	background: #1877F2;
	border-color: #1877F2;
}

.tenndi-social-instagram:hover {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	border-color: #e6683c;
}

.tenndi-social-tiktok:hover {
	background: #000000;
	border-color: #00f2ea;
}

.tenndi-social-twitter:hover {
	background: #1DA1F2;
	border-color: #1DA1F2;
}

.tenndi-footer-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	margin: 0;
	font-style: italic;
}

/* Animación de entrada para el footer */
@keyframes footerFadeIn {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.tenndi-footer {
	animation: footerFadeIn 0.6s ease forwards;
}

/* Animación escalonada para los iconos */
.tenndi-social-link {
	animation: iconFadeIn 0.4s ease forwards;
	opacity: 0;
}

@keyframes iconFadeIn {
	0% {
		opacity: 0;
		transform: scale(0.8) translateY(10px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.tenndi-social-link:nth-child(1) {
	animation-delay: 0.1s;
}

.tenndi-social-link:nth-child(2) {
	animation-delay: 0.2s;
}

.tenndi-social-link:nth-child(3) {
	animation-delay: 0.3s;
}

.tenndi-social-link:nth-child(4) {
	animation-delay: 0.4s;
}

.tenndi-social-link:nth-child(5) {
	animation-delay: 0.5s;
}

.tenndi-social-link:nth-child(6) {
	animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
	.tenndi-footer {
		padding: 30px 15px 25px;
		margin-top: 40px;
	}
	
	.tenndi-footer-title {
		font-size: 18px;
		margin-bottom: 20px;
	}
	
	.tenndi-social-links {
		gap: 12px;
	}
	
	.tenndi-social-link {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}
	
	.tenndi-footer-text {
		font-size: 13px;
	}
}

/* Efecto de brillo sutil en el footer */
.tenndi-footer::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: footerGlow 8s ease-in-out infinite;
	pointer-events: none;
}

@keyframes footerGlow {
	0%, 100% {
		transform: translate(0, 0);
		opacity: 0.3;
	}
	50% {
		transform: translate(10%, 10%);
		opacity: 0.6;
	}
}

/* Performance: reducir animaciones en móviles si el dispositivo lo requiere */
@media (prefers-reduced-motion: reduce) {
	.tenndi-footer,
	.tenndi-social-link {
		animation: none !important;
	}
	
	.tenndi-social-link {
		opacity: 1;
	}
	
	.tenndi-social-link:hover {
		transform: none;
	}
}

/* ============================================
   TENNDI HOME PAGE - 6 DISEÑOS EXACTOS
   ============================================ */

/* 🍔 DESIGN 1: BURGER JOINT */
.tenndi-design-burger {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    overflow: hidden;
}

.tenndi-design-burger .tenndi-home-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.tenndi-design-burger .tenndi-float-emoji {
    position: absolute;
    font-size: 30px;
    animation: tenndi-float 4s ease-in-out infinite;
    opacity: 0.6;
}

.tenndi-design-burger .tenndi-float-emoji.pos-1 { top: 15%; left: 10%; animation-delay: 0s; }
.tenndi-design-burger .tenndi-float-emoji.pos-2 { top: 25%; right: 8%; animation-delay: 0.5s; }
.tenndi-design-burger .tenndi-float-emoji.pos-3 { bottom: 30%; left: 5%; animation-delay: 1s; }
.tenndi-design-burger .tenndi-float-emoji.pos-4 { bottom: 15%; right: 12%; animation-delay: 1.5s; }

@keyframes tenndi-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.tenndi-design-burger .tenndi-home-logo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tenndi-design-burger .tenndi-home-logo img {
    border-radius: 12px;
}

.tenndi-design-burger .tenndi-home-logo.logo-dark {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.tenndi-design-burger .tenndi-home-logo.logo-light {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, 0.2);
}

.tenndi-design-burger .tenndi-home-logo::before {
    content: '🍔';
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 35px;
    animation: tenndi-bounce 2s ease-in-out infinite;
}

@keyframes tenndi-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tenndi-design-burger .tenndi-logo-fallback {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: white;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.tenndi-design-burger .tenndi-home-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.tenndi-design-burger .tenndi-home-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 15px;
}

.tenndi-design-burger .tenndi-home-button {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    flex-direction: column;
    min-height: auto;
    gap: 8px;
}

.tenndi-design-burger .tenndi-home-button:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
    transform: scale(1.05);
}

.tenndi-design-burger .tenndi-home-button:active {
    background: rgba(255, 107, 53, 0.4) !important;
    color: #ffffff !important;
    transform: scale(0.98);
}

.tenndi-design-burger .tenndi-home-button:active .tenndi-btn-text {
    color: #ffffff !important;
}

.tenndi-design-burger .tenndi-btn-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
}

.tenndi-design-burger .tenndi-btn-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tenndi-design-burger .tenndi-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
}

.tenndi-design-burger .tenndi-cta-button {
    background: linear-gradient(135deg, #FE793B, #E85D1A);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 121, 59, 0.3);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: auto;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(254, 121, 59, 0.4);
}

.tenndi-design-burger .tenndi-cta-button .tenndi-btn-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
}

.tenndi-design-burger .tenndi-cta-button .tenndi-btn-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tenndi-design-burger .tenndi-cta-button i {
    color: white !important;
    filter: brightness(1.2);
}

.tenndi-design-burger .tenndi-cta-button:hover {
    background: linear-gradient(135deg, #E85D1A, #D64E0A);
    border-color: rgba(254, 121, 59, 0.5);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(254, 121, 59, 0.5);
}

/* ☕ DESIGN 2: COFFEE SHOP */
.tenndi-design-coffee {
    background: linear-gradient(160deg, #2c1810 0%, #1a0f0a 100%);
    padding: 80px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

.tenndi-design-coffee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c19a6b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.tenndi-design-coffee .tenndi-steam {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.tenndi-design-coffee .tenndi-steam span {
    width: 8px;
    height: 40px;
    background: linear-gradient(to top, transparent, rgba(255,255,255,0.3));
    border-radius: 10px;
    animation: tenndi-steam 2s ease-in-out infinite;
}

.tenndi-design-coffee .tenndi-steam span:nth-child(2) { animation-delay: 0.3s; height: 50px; }
.tenndi-design-coffee .tenndi-steam span:nth-child(3) { animation-delay: 0.6s; height: 35px; }

@keyframes tenndi-steam {
    0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.5; }
    50% { transform: translateY(-20px) scaleX(1.5); opacity: 0; }
}

.tenndi-design-coffee .tenndi-logo-emoji {
    font-size: 70px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    top: auto;
    right: auto;
    transform: none;
}

.tenndi-design-coffee .tenndi-logo-fallback {
    font-family: 'Pacifico', cursive;
    font-size: 36px;
    color: #f5e6d3;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.tenndi-design-coffee .tenndi-logo-fallback span {
    color: #c19a6b;
}

.tenndi-design-coffee .tenndi-home-tagline {
    color: #c19a6b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.tenndi-design-coffee .tenndi-home-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.tenndi-design-coffee .tenndi-home-button {
    width: 100%;
    padding: 16px 20px;
    background: rgba(193, 154, 107, 0.1);
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #f5e6d3;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
}

.tenndi-design-coffee .tenndi-home-button:hover {
    background: rgba(193, 154, 107, 0.2);
    border-color: rgba(193, 154, 107, 0.4);
    transform: translateX(8px);
}

.tenndi-design-coffee .tenndi-home-button:active {
    background: rgba(193, 154, 107, 0.4) !important;
    color: #ffffff !important;
    transform: translateX(4px) scale(0.98);
}

.tenndi-design-coffee .tenndi-home-button:active .tenndi-btn-text {
    color: #ffffff !important;
}

.tenndi-design-coffee .tenndi-btn-icon {
    font-size: 22px;
    width: 40px;
    height: 40px;
    background: rgba(193, 154, 107, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
}

/* Botones CTA en coffee - mismo estilo pero con más contraste y MISMO ANCHO que los otros */
.tenndi-design-coffee .tenndi-cta-buttons {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tenndi-design-coffee .tenndi-cta-button {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    background: rgba(193, 154, 107, 0.25) !important;
    border: 1px solid rgba(193, 154, 107, 0.4) !important;
    box-shadow: 0 4px 12px rgba(193, 154, 107, 0.2);
}

.tenndi-design-coffee .tenndi-cta-button:hover {
    background: rgba(193, 154, 107, 0.35) !important;
    border-color: rgba(193, 154, 107, 0.6) !important;
    box-shadow: 0 6px 16px rgba(193, 154, 107, 0.3);
    transform: translateX(8px);
}

.tenndi-design-coffee .tenndi-cta-button .tenndi-btn-icon {
    background: rgba(193, 154, 107, 0.3) !important;
}

.tenndi-design-coffee .tenndi-home-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.tenndi-design-coffee .tenndi-home-logo img {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* 🍟 DESIGN: FAST FOOD */
.tenndi-design-fastfood {
    background: linear-gradient(135deg, #E31837 0%, #B71C1C 50%, #8B0000 100%);
    padding: 40px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

/* Patrón de fondo estilo fast food */
.tenndi-design-fastfood::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(255, 255, 255, 0.02) 30px,
            rgba(255, 255, 255, 0.02) 60px
        );
    pointer-events: none;
}

/* Elementos flotantes de comida */
.tenndi-design-fastfood .tenndi-home-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.tenndi-design-fastfood .tenndi-float-emoji {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.6;
    animation: floatFood 8s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.tenndi-design-fastfood .tenndi-float-emoji.pos-1 { top: 5%; left: 5%; animation-delay: 0s; }
.tenndi-design-fastfood .tenndi-float-emoji.pos-2 { top: 15%; right: 8%; animation-delay: 1s; font-size: 3rem; }
.tenndi-design-fastfood .tenndi-float-emoji.pos-3 { top: 40%; left: 3%; animation-delay: 2s; }
.tenndi-design-fastfood .tenndi-float-emoji.pos-4 { top: 60%; right: 5%; animation-delay: 3s; font-size: 2rem; }
.tenndi-design-fastfood .tenndi-float-emoji.pos-5 { bottom: 20%; left: 8%; animation-delay: 4s; }
.tenndi-design-fastfood .tenndi-float-emoji.pos-6 { bottom: 10%; right: 10%; animation-delay: 5s; font-size: 2.8rem; }
.tenndi-design-fastfood .tenndi-float-emoji.pos-7 { top: 25%; left: 85%; animation-delay: 1.5s; }
.tenndi-design-fastfood .tenndi-float-emoji.pos-8 { top: 70%; left: 2%; animation-delay: 2.5s; font-size: 2.2rem; }

@keyframes floatFood {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-8px) rotate(-3deg); }
    75% { transform: translateY(-20px) rotate(3deg); }
}

/* Logo container con efecto neón */
.tenndi-design-fastfood .tenndi-home-logo {
    position: relative;
    z-index: 10;
    margin-top: 10px;
    margin-bottom: 10px;
}

.tenndi-design-fastfood .tenndi-home-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,193,7,0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.9; }
}

.tenndi-design-fastfood .tenndi-home-logo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #FFC107;
    box-shadow: 
        0 0 30px rgba(255, 193, 7, 0.5),
        0 10px 40px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    background: #ffffff;
}

.tenndi-design-fastfood .tenndi-logo-emoji {
    font-size: 70px;
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.tenndi-design-fastfood .tenndi-logo-fallback {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    background: transparent;
    padding: 15px 30px;
    box-shadow: none;
    border: 5px solid #FFC107;
    border-radius: 50px;
    position: relative;
    z-index: 10;
}

.tenndi-design-fastfood .tenndi-logo-fallback span {
    color: #FFC107;
}

/* Tagline con estilo burger */
.tenndi-design-fastfood .tenndi-home-tagline {
    position: relative;
    z-index: 10;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
    border-radius: 30px;
    backdrop-filter: blur(5px);
    font-family: 'Poppins', sans-serif;
}

.tenndi-design-fastfood .tenndi-home-tagline::before {
    content: '🔥';
    margin-right: 8px;
}

.tenndi-design-fastfood .tenndi-home-tagline::after {
    content: '🔥';
    margin-left: 8px;
}

/* Botones principales */
.tenndi-design-fastfood .tenndi-home-buttons {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
}

.tenndi-design-fastfood .tenndi-home-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    background: #ffffff;
    border: none;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.3),
        inset 0 -4px 0 rgba(0,0,0,0.1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
    z-index: 1;
}

.tenndi-design-fastfood .tenndi-home-button > * {
    position: relative;
    z-index: 1;
}

.tenndi-design-fastfood .tenndi-home-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,193,7,0.3), transparent);
    transition: left 0.5s;
    z-index: 0;
    pointer-events: none;
}

.tenndi-design-fastfood .tenndi-home-button:hover::before {
    left: 100%;
}

.tenndi-design-fastfood .tenndi-home-button:hover {
    transform: translateY(-3px) scale(1.02);
    background: #ffffff !important;
    box-shadow: 
        0 12px 35px rgba(0,0,0,0.4),
        inset 0 -4px 0 rgba(0,0,0,0.1);
}

.tenndi-design-fastfood .tenndi-home-button:hover .tenndi-btn-text {
    color: #1a1a1a !important;
}

.tenndi-design-fastfood .tenndi-home-button:active {
    transform: translateY(0) scale(0.98);
    background: #e5e5e5 !important;
    color: #1a1a1a !important;
}

.tenndi-design-fastfood .tenndi-home-button:active .tenndi-btn-text {
    color: #1a1a1a !important;
}

.tenndi-design-fastfood .tenndi-btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.tenndi-design-fastfood .tenndi-btn-icon i {
    font-size: 1.4rem;
}

/* CTAs grandes */
.tenndi-design-fastfood .tenndi-cta-buttons {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-bottom: 25px;
}

.tenndi-design-fastfood .tenndi-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    border: none;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
}

.tenndi-design-fastfood .tenndi-cta-button:first-child {
    background: linear-gradient(135deg, #FFC107, #FFA000);
    color: #1a1a1a;
    box-shadow: 
        0 8px 25px rgba(255, 193, 7, 0.4),
        inset 0 -4px 0 rgba(0,0,0,0.15);
}

.tenndi-design-fastfood .tenndi-cta-button:last-child {
    background: linear-gradient(135deg, #E31837, #FF5722);
    color: #ffffff;
    box-shadow: 
        0 8px 25px rgba(227, 24, 55, 0.4),
        inset 0 -4px 0 rgba(0,0,0,0.2);
}

.tenndi-design-fastfood .tenndi-cta-button:hover {
    transform: translateY(-4px) scale(1.03);
}

.tenndi-design-fastfood .tenndi-cta-button:first-child:hover {
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.5);
}

.tenndi-design-fastfood .tenndi-cta-button:last-child:hover {
    box-shadow: 0 15px 40px rgba(227, 24, 55, 0.5);
}

.tenndi-design-fastfood .tenndi-cta-button i {
    font-size: 1.3rem;
}

.tenndi-design-fastfood .tenndi-cta-button .tenndi-btn-icon {
    background: transparent;
    border-radius: 0;
    width: auto;
    height: auto;
}

/* Efecto de brillo en CTAs */
.tenndi-design-fastfood .tenndi-cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.3) 50%,
        transparent 60%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Redes sociales */
.tenndi-design-fastfood .tenndi-home-social-links {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-bottom: 20px;
}

.tenndi-design-fastfood .tenndi-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.tenndi-design-fastfood .tenndi-social-whatsapp { 
    background: linear-gradient(135deg, #25D366, #128C7E); 
}

.tenndi-design-fastfood .tenndi-social-instagram { 
    background: linear-gradient(135deg, #E1306C, #F77737, #FCAF45); 
}

.tenndi-design-fastfood .tenndi-social-tiktok { 
    background: linear-gradient(135deg, #000000, #25F4EE); 
}

.tenndi-design-fastfood .tenndi-social-facebook { 
    background: linear-gradient(135deg, #1877F2, #0C63D4); 
}

.tenndi-design-fastfood .tenndi-social-email { 
    background: linear-gradient(135deg, #EA4335, #C5221F); 
}

.tenndi-design-fastfood .tenndi-social-twitter { 
    background: linear-gradient(135deg, #1DA1F2, #0C85D0); 
}

.tenndi-design-fastfood .tenndi-social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Responsive */
@media (min-width: 768px) {
    .tenndi-design-fastfood .tenndi-home-logo img {
        width: 180px;
        height: 180px;
    }

    .tenndi-design-fastfood .tenndi-home-logo::before {
        width: 220px;
        height: 220px;
    }

    .tenndi-design-fastfood .tenndi-home-tagline {
        font-size: 1.3rem;
    }

    .tenndi-design-fastfood .tenndi-home-buttons,
    .tenndi-design-fastfood .tenndi-cta-buttons {
        max-width: 400px;
    }

    .tenndi-design-fastfood .tenndi-float-emoji {
        font-size: 3.5rem;
    }
}

.tenndi-design-fine .tenndi-home-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.tenndi-design-fine .tenndi-home-logo img {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Sección de redes sociales dinámica para home-menu */
.tenndi-home-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 20px 0;
}

.tenndi-home-social-links .tenndi-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tenndi-home-social-links .tenndi-social-link i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.tenndi-home-social-links .tenndi-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Colores específicos por red social */
.tenndi-home-social-links .tenndi-social-whatsapp {
    color: #25D366 !important;
}

.tenndi-home-social-links .tenndi-social-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
}

.tenndi-home-social-links .tenndi-social-email {
    color: #EA4335 !important;
}

.tenndi-home-social-links .tenndi-social-email:hover {
    background: rgba(234, 67, 53, 0.2);
    border-color: #EA4335;
}

.tenndi-home-social-links .tenndi-social-facebook {
    color: #1877F2 !important;
}

.tenndi-home-social-links .tenndi-social-facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
}

.tenndi-home-social-links .tenndi-social-instagram {
    color: #E4405F !important;
}

.tenndi-home-social-links .tenndi-social-instagram:hover {
    background: rgba(228, 64, 95, 0.2);
    border-color: #E4405F;
}

.tenndi-home-social-links .tenndi-social-tiktok {
    color: #ffffff !important;
}

.tenndi-home-social-links .tenndi-social-tiktok:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: #000000;
}

.tenndi-home-social-links .tenndi-social-twitter {
    color: #1DA1F2 !important;
}

.tenndi-home-social-links .tenndi-social-twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1DA1F2;
}

/* Ajustes específicos por diseño */
.tenndi-design-burger .tenndi-home-social-links {
    margin-top: 20px;
}

.tenndi-design-coffee .tenndi-home-social-links {
    margin-top: 25px;
}

.tenndi-design-fine .tenndi-home-social-links {
    margin-top: 30px;
}

.tenndi-design-healthy .tenndi-home-social-links {
    margin-top: 25px;
}

.tenndi-design-sushi .tenndi-home-social-links {
    margin-top: 20px;
}

.tenndi-design-wine .tenndi-home-social-links {
    margin-top: 25px;
}

/* 🥂 DESIGN 3: FINE DINING */
.tenndi-design-fine {
    background: #0a0a0a;
    padding: 80px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

.tenndi-design-fine::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.tenndi-design-fine .tenndi-fine-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin-bottom: 20px;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.tenndi-design-fine .tenndi-crown-emoji {
    font-size: 40px;
    margin-bottom: 10px;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}

.tenndi-design-fine .tenndi-logo-fallback {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #fff;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 5px;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.tenndi-design-fine .tenndi-logo-fallback span {
    color: #d4af37;
}

.tenndi-design-fine .tenndi-home-tagline {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.tenndi-design-fine .tenndi-home-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
}

/* CTA buttons en fine - mismo ancho que botones principales */
.tenndi-design-fine .tenndi-cta-buttons {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tenndi-design-fine .tenndi-cta-button {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
}

.tenndi-design-fine .tenndi-home-button {
    width: 100%;
    padding: 18px 25px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #e8e8e8;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex-direction: row;
    min-height: auto;
}

.tenndi-design-fine .tenndi-home-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.tenndi-design-fine .tenndi-home-button:hover::before {
    left: 100%;
}

.tenndi-design-fine .tenndi-home-button:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: #d4af37;
    color: #d4af37;
}

.tenndi-design-fine .tenndi-home-button:active {
    background: rgba(212, 175, 55, 0.2) !important;
    border-color: #d4af37 !important;
    color: #d4af37 !important;
    transform: scale(0.98);
}

.tenndi-design-fine .tenndi-home-button:active .tenndi-btn-text {
    color: #d4af37 !important;
}

.tenndi-design-fine .tenndi-home-button::after {
    content: '→';
    font-size: 12px;
    color: #d4af37;
    transition: transform 0.3s ease;
    position: static;
    opacity: 1;
    right: auto;
    top: auto;
    transform: none;
}

.tenndi-design-fine .tenndi-home-button:hover::after {
    transform: translateX(5px);
}

.tenndi-design-fine .tenndi-btn-icon {
    font-size: 18px;
    color: #d4af37;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
}


/* 🥗 DESIGN 4: HEALTHY BOWL */
.tenndi-design-healthy {
    background: linear-gradient(160deg, #0d1f17 0%, #081510 100%);
    padding: 80px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

.tenndi-design-healthy .tenndi-home-decorations::before {
    content: '🌿';
    position: absolute;
    font-size: 120px;
    opacity: 0.08;
    pointer-events: none;
    top: 10%;
    left: -5%;
    animation: tenndi-leaf-float 8s ease-in-out infinite;
    top: 10%;
    left: -20%;
    transform: rotate(-30deg);
}

.tenndi-design-healthy .tenndi-home-decorations::after {
    content: '🍃';
    position: absolute;
    font-size: 120px;
    opacity: 0.08;
    pointer-events: none;
    bottom: 15%;
    right: -5%;
    animation: tenndi-leaf-float 10s ease-in-out infinite reverse;
    bottom: 10%;
    right: -20%;
    transform: rotate(30deg);
}

.tenndi-design-healthy .tenndi-logo-emoji {
    font-size: 80px;
    margin-bottom: 15px;
    animation: tenndi-wiggle 3s ease-in-out infinite;
    top: auto;
    right: auto;
    transform: none;
}

@keyframes tenndi-wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes tenndi-leaf-float {
    0%, 100% { 
        transform: translate(0, 0) rotate(-30deg);
    }
    25% { 
        transform: translate(15px, -20px) rotate(-25deg);
    }
    50% { 
        transform: translate(30px, -10px) rotate(-35deg);
    }
    75% { 
        transform: translate(15px, -5px) rotate(-28deg);
    }
}

.tenndi-design-healthy .tenndi-logo-fallback {
    font-size: 34px;
    font-weight: 800;
    color: #f0fdf4;
    margin-bottom: 5px;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.tenndi-design-healthy .tenndi-logo-fallback span {
    color: #22c55e;
}

.tenndi-design-healthy .tenndi-home-logo {
    margin-bottom: 15px;
}

.tenndi-design-healthy .tenndi-home-logo img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.3));
}

.tenndi-design-healthy .tenndi-home-tagline {
    color: #ffffff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    /* Asegurar contraste con fondo oscuro */
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Detección automática de contraste usando mix-blend-mode como fallback */
.tenndi-design-healthy .tenndi-home-tagline {
    /* Forzar color blanco para mejor visibilidad en fondos oscuros */
    color: #ffffff !important;
}

.tenndi-design-healthy .tenndi-healthy-badge {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tenndi-design-healthy .tenndi-home-features {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.tenndi-design-healthy .tenndi-feature {
    text-align: center;
    flex-direction: column;
    padding: 0;
    background: transparent;
    border: none;
}

.tenndi-design-healthy .tenndi-feature .tenndi-feature-emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 5px;
}

.tenndi-design-healthy .tenndi-feature span:not(.tenndi-feature-emoji) {
    font-size: 9px;
    color: #86efac;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tenndi-design-healthy .tenndi-home-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.tenndi-design-healthy .tenndi-cta-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin-top: 20px;
}

.tenndi-design-healthy .tenndi-home-button,
.tenndi-design-healthy .tenndi-cta-button {
    width: 100%;
    padding: 16px 20px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #dcfce7;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
}

.tenndi-design-healthy .tenndi-home-button:hover,
.tenndi-design-healthy .tenndi-cta-button:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    transform: scale(1.02);
}

.tenndi-design-healthy .tenndi-home-button:active,
.tenndi-design-healthy .tenndi-cta-button:active {
    background: rgba(34, 197, 94, 0.3) !important;
    border-color: rgba(34, 197, 94, 0.5) !important;
    color: #ffffff !important;
    transform: scale(0.98);
}

.tenndi-design-healthy .tenndi-home-button:active .tenndi-btn-text,
.tenndi-design-healthy .tenndi-cta-button:active .tenndi-btn-text {
    color: #ffffff !important;
}

.tenndi-design-healthy .tenndi-btn-icon {
    font-size: 24px;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
}


/* 🍣 DESIGN 5: SUSHI BAR */
.tenndi-design-sushi {
    background: linear-gradient(160deg, #1a0505 0%, #0d0202 100%);
    padding: 80px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

.tenndi-design-sushi .tenndi-sushi-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23dc2626' fill-opacity='0.05' d='M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,165.3C672,171,768,213,864,218.7C960,224,1056,192,1152,165.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
}

.tenndi-design-sushi .tenndi-sushi-bounce {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    top: auto;
    right: auto;
}

.tenndi-design-sushi .tenndi-sushi-bounce span {
    font-size: 35px;
    animation: tenndi-sushiBounce 2s ease-in-out infinite;
}

.tenndi-design-sushi .tenndi-sushi-bounce span:nth-child(2) { animation-delay: 0.2s; }
.tenndi-design-sushi .tenndi-sushi-bounce span:nth-child(3) { animation-delay: 0.4s; }

@keyframes tenndi-sushiBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.tenndi-design-sushi .tenndi-logo-fallback {
    font-size: 36px;
    font-weight: 700;
    color: #fef2f2;
    letter-spacing: 4px;
    margin-bottom: 5px;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.tenndi-design-sushi .tenndi-logo-fallback span {
    color: #ef4444;
}

.tenndi-design-sushi .tenndi-sushi-kanji {
    color: #ef4444;
    font-size: 14px;
    letter-spacing: 8px;
    margin-bottom: 5px;
}

.tenndi-design-sushi .tenndi-home-tagline {
    color: #fca5a5;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.tenndi-design-sushi .tenndi-home-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.tenndi-design-sushi .tenndi-home-button {
    width: 100%;
    padding: 16px 20px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fecaca;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
}

.tenndi-design-sushi .tenndi-home-button:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateX(8px);
}

.tenndi-design-sushi .tenndi-home-button:active {
    background: rgba(220, 38, 38, 0.3) !important;
    border-color: rgba(220, 38, 38, 0.5) !important;
    color: #ffffff !important;
    transform: translateX(4px) scale(0.98);
}

.tenndi-design-sushi .tenndi-home-button:active .tenndi-btn-text {
    color: #ffffff !important;
}

.tenndi-design-sushi .tenndi-btn-icon {
    font-size: 22px;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
}


/* CTA buttons en sushi - mismo ancho que botones principales */
.tenndi-design-sushi .tenndi-cta-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin-top: 20px;
}

.tenndi-design-sushi .tenndi-cta-button {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 16px 20px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fecaca;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
}

.tenndi-design-sushi .tenndi-cta-button:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateX(8px);
}

.tenndi-design-sushi .tenndi-home-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.tenndi-design-sushi .tenndi-home-logo img {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}


/* 🍷 DESIGN 6: WINE & TAPAS */
.tenndi-design-wine {
    background: linear-gradient(160deg, #1a0d20 0%, #0d0510 100%);
    padding: 80px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

.tenndi-design-wine .tenndi-wine-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: none;
}

.tenndi-design-wine .tenndi-logo-emoji {
    font-size: 70px;
    margin-bottom: 15px;
    animation: tenndi-pour 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(147, 51, 234, 0.3));
    top: auto;
    right: auto;
    transform: none;
}

@keyframes tenndi-pour {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.tenndi-design-wine .tenndi-logo-fallback {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #faf5ff;
    letter-spacing: 2px;
    margin-bottom: 5px;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.tenndi-design-wine .tenndi-logo-fallback span {
    color: #c084fc;
}

.tenndi-design-wine .tenndi-home-tagline {
    color: #c084fc;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 8px;
}

.tenndi-design-wine .tenndi-home-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.tenndi-design-wine .tenndi-home-button {
    width: 100%;
    padding: 16px 20px;
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e9d5ff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
}

.tenndi-design-wine .tenndi-home-button:hover {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-3px);
}

.tenndi-design-wine .tenndi-home-button:active {
    background: rgba(147, 51, 234, 0.3) !important;
    border-color: rgba(147, 51, 234, 0.5) !important;
    color: #ffffff !important;
    transform: translateY(0) scale(0.98);
}

.tenndi-design-wine .tenndi-home-button:active .tenndi-btn-text {
    color: #ffffff !important;
}

.tenndi-design-wine .tenndi-btn-icon {
    font-size: 22px;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
}


/* CTA buttons en wine - mismo ancho que botones principales */
.tenndi-design-wine .tenndi-cta-buttons {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin-top: 20px;
}

.tenndi-design-wine .tenndi-cta-button {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 16px 20px;
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e9d5ff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-direction: row;
    justify-content: flex-start;
    min-height: auto;
}

.tenndi-design-wine .tenndi-cta-button:hover {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-3px);
}

.tenndi-design-wine .tenndi-home-logo {
    margin-bottom: 20px;
    display: inline-block;
}

.tenndi-design-wine .tenndi-home-logo img {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Ajustes específicos para wine */
.tenndi-design-wine .tenndi-home-social-links {
    margin-top: 25px;
}

/* ===================================
   MODALES
   =================================== */

.tenndi-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tenndi-modal.active {
    opacity: 1;
    visibility: visible;
}

.tenndi-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.tenndi-modal-content,
.tenndi-modal-ubicacion-content,
.tenndi-modal-social-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.tenndi-modal.active .tenndi-modal-content,
.tenndi-modal.active .tenndi-modal-ubicacion-content,
.tenndi-modal.active .tenndi-modal-social-content {
    transform: translateY(0);
}

.tenndi-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tenndi-modal-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.tenndi-modal-ubicacion-inner h3,
.tenndi-modal-social-inner h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.tenndi-ubicacion-direccion {
    padding: 20px;
    margin-bottom: 20px;
    background: #f9fafb;
    border-radius: 16px;
    border-left: 4px solid #667eea;
}

.tenndi-ubicacion-direccion p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

.tenndi-ubicacion-actions {
    text-align: center;
}

.tenndi-button-maps,
.tenndi-button-social-follow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.tenndi-button-maps:hover,
.tenndi-button-social-follow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.4);
}

.tenndi-social-profile {
    text-align: center;
    margin-bottom: 20px;
}

.tenndi-social-username {
    font-size: 22px;
    font-weight: 700;
}

.tenndi-social-username a {
    color: #667eea;
    text-decoration: none;
}

.tenndi-social-feed {
    text-align: center;
}

.tenndi-social-feed-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    margin: 0 0 20px;
    background: #f0f9ff;
    border-radius: 12px;
    font-size: 14px;
    color: #0369a1;
}

/* Responsive */
@media (max-width: 480px) {
    .tenndi-design-burger,
    .tenndi-design-coffee,
    .tenndi-design-fine,
    .tenndi-design-healthy,
    .tenndi-design-sushi,
    .tenndi-design-wine {
        padding: 50px 15px 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tenndi-float-emoji,
    .tenndi-steam span,
    .tenndi-sushi-bounce span,
    .tenndi-logo-emoji,
    .tenndi-crown-emoji {
        animation: none !important;
    }
}

/* ============================================
   MODAL FULLSCREEN DE CATEGORÍAS
   ============================================ */

.tenndi-categories-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tenndi-categories-modal.active {
    opacity: 1;
    visibility: visible;
}

.tenndi-categories-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(22, 33, 62, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ============================================
   ANIMACIONES PARA SKINS DE FAST FOOD
   (Los estilos se generan dinámicamente desde PHP)
   ============================================ */

/* Animaciones especiales para Trap Kitchen */
@keyframes trapGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(108, 92, 231, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5);
    }
}

@keyframes trapPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(108, 92, 231, 0.6);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 217, 255, 0.8);
    }
}

.tenndi-categories-modal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.tenndi-categories-modal-header {
    text-align: center;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.tenndi-categories-modal-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tenndi-categories-modal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

.tenndi-categories-modal-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    align-content: start;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

/* Botón de categoría en Modal */
.tenndi-category-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
    animation: categoryButtonAppear 0.5s ease forwards;
    gap: 8px;
}

.tenndi-category-button:nth-child(1) { animation-delay: 0.05s; }
.tenndi-category-button:nth-child(2) { animation-delay: 0.1s; }
.tenndi-category-button:nth-child(3) { animation-delay: 0.15s; }
.tenndi-category-button:nth-child(4) { animation-delay: 0.2s; }
.tenndi-category-button:nth-child(5) { animation-delay: 0.25s; }
.tenndi-category-button:nth-child(6) { animation-delay: 0.3s; }
.tenndi-category-button:nth-child(7) { animation-delay: 0.35s; }
.tenndi-category-button:nth-child(8) { animation-delay: 0.4s; }
.tenndi-category-button:nth-child(n+9) { animation-delay: 0.45s; }

@keyframes categoryButtonAppear {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.tenndi-category-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.tenndi-category-button:active {
    transform: translateY(0);
}

.tenndi-category-button svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tenndi-category-button:hover svg {
    transform: translateY(3px);
}

/* Botón "Ver todo el menú" */
.tenndi-categories-modal-skip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 30px auto 20px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tenndi-categories-modal-skip:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.tenndi-categories-modal-skip svg {
    transition: transform 0.3s ease;
}

.tenndi-categories-modal-skip:hover svg {
    transform: translateY(3px);
}

/* Título de categoría clickeable */
.tenndi-category-title-clickable {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.tenndi-category-title-clickable:hover {
    color: var(--tenndi-primary, #FE793B);
}

.tenndi-category-title-icon {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.tenndi-category-title-clickable:hover .tenndi-category-title-icon {
    opacity: 1;
    transform: scale(1.1);
    stroke: var(--tenndi-primary, #FE793B);
}

/* Animación de cierre del modal */
.tenndi-categories-modal.closing {
    opacity: 0;
    transform: scale(1.05);
}

.tenndi-categories-modal.closing .tenndi-category-button {
    transform: translateX(-20px);
    opacity: 0;
}

/* Responsive */
@media (min-width: 480px) {
    .tenndi-categories-modal-list {
        gap: 15px;
    }
}

@media (min-width: 768px) {
    .tenndi-categories-modal-content {
        padding: 40px;
    }
    
    .tenndi-categories-modal-title {
        font-size: 36px;
    }
    
    .tenndi-categories-modal-list {
        max-width: 600px;
        gap: 18px;
    }
}

/* Reducir animaciones si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
    .tenndi-categories-modal,
    .tenndi-category-button {
        transition: none !important;
        animation: none !important;
    }
    
    .tenndi-category-button {
        opacity: 1;
        transform: none;
    }
}

/* Ocultar scroll del body cuando el modal está abierto */
body.tenndi-modal-open {
    overflow: hidden !important;
}

/* ============================================
   ESTILOS COFFEE PARA MENU-DIGITAL
   ============================================ */

/* Fondo y patrón coffee */
.tenndi-menu-coffee {
    background: linear-gradient(160deg, #2c1810 0%, #1a0f0a 100%) !important;
    color: #f5e6d3 !important;
}

.tenndi-menu-coffee::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c19a6b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Header coffee */
.tenndi-menu-coffee .tenndi-header {
    background: rgba(193, 154, 107, 0.05);
    border-bottom-color: rgba(193, 154, 107, 0.1);
}

.tenndi-menu-coffee .tenndi-header-logo {
    background: rgba(193, 154, 107, 0.1);
    border-color: rgba(193, 154, 107, 0.2);
}

.tenndi-menu-coffee .tenndi-header-logo:hover {
    background: rgba(193, 154, 107, 0.15);
}

/* Tabs coffee */
.tenndi-menu-coffee .tenndi-categories-tabs {
    background: rgba(193, 154, 107, 0.05);
    border-bottom-color: rgba(193, 154, 107, 0.1);
}

.tenndi-menu-coffee .tenndi-tab {
    background: rgba(193, 154, 107, 0.1);
    border-color: rgba(193, 154, 107, 0.2);
    border-radius: 50px;
    color: #f5e6d3;
}

.tenndi-menu-coffee .tenndi-tab:hover {
    background: rgba(193, 154, 107, 0.2);
    border-color: rgba(193, 154, 107, 0.4);
    transform: translateX(8px);
}

.tenndi-menu-coffee .tenndi-tab.active {
    background: rgba(193, 154, 107, 0.25);
    border-color: rgba(193, 154, 107, 0.5);
    box-shadow: 0 4px 16px rgba(193, 154, 107, 0.3);
}

/* Títulos de categoría coffee */
.tenndi-menu-coffee .tenndi-category-title {
    color: #f5e6d3;
}

.tenndi-menu-coffee .tenndi-category-title::after {
    background: linear-gradient(90deg, #c19a6b, transparent);
}

/* Tarjetas de productos coffee */
.tenndi-menu-coffee .tenndi-product-card {
    background: rgba(193, 154, 107, 0.1);
    border: 1px solid rgba(193, 154, 107, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tenndi-menu-coffee .tenndi-product-card:hover {
    background: rgba(193, 154, 107, 0.2);
    border-color: rgba(193, 154, 107, 0.4);
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(193, 154, 107, 0.3);
}

.tenndi-menu-coffee .tenndi-product-image-wrapper {
    border-radius: 20px 20px 0 0;
}

/* Info del producto coffee */
.tenndi-menu-coffee .tenndi-product-name {
    color: #f5e6d3;
}

.tenndi-menu-coffee .tenndi-product-card:hover .tenndi-product-name {
    color: #c19a6b;
}

.tenndi-menu-coffee .tenndi-product-description {
    color: rgba(245, 230, 211, 0.8);
}

.tenndi-menu-coffee .tenndi-product-price,
.tenndi-menu-coffee .tenndi-product-price *,
.tenndi-menu-coffee .tenndi-product-price .woocommerce-Price-amount,
.tenndi-menu-coffee .tenndi-product-price .woocommerce-Price-amount *,
.tenndi-menu-coffee .tenndi-product-price .woocommerce-Price-currencySymbol,
.tenndi-menu-coffee .tenndi-product-price span {
    color: #8B6F47 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #8B6F47 !important;
    background-clip: unset !important;
}

/* Modal de producto coffee */
.tenndi-menu-coffee .tenndi-product-modal .tenndi-modal-backdrop {
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(20px);
}

.tenndi-menu-coffee .tenndi-product-modal .tenndi-modal-content {
    background: linear-gradient(160deg, #2c1810 0%, #1a0f0a 100%);
    border: 1px solid rgba(193, 154, 107, 0.2);
    color: #f5e6d3;
}

.tenndi-menu-coffee .tenndi-modal-close {
    background: rgba(193, 154, 107, 0.2);
    color: #f5e6d3;
    border: 1px solid rgba(193, 154, 107, 0.3);
}

.tenndi-menu-coffee .tenndi-modal-close:hover {
    background: rgba(193, 154, 107, 0.3);
    border-color: rgba(193, 154, 107, 0.5);
}

/* Footer coffee */
.tenndi-menu-coffee .tenndi-footer {
    background: linear-gradient(160deg, #1a0f0a 0%, #0f0805 100%);
    border-top-color: rgba(193, 154, 107, 0.1);
}

.tenndi-menu-coffee .tenndi-footer-title,
.tenndi-menu-coffee .tenndi-footer-text {
    color: #f5e6d3;
}

/* Búsqueda coffee */
.tenndi-menu-coffee .tenndi-search-wrapper {
    background: rgba(193, 154, 107, 0.05);
}

.tenndi-menu-coffee .tenndi-search-input {
    background: rgba(193, 154, 107, 0.1);
    border-color: rgba(193, 154, 107, 0.2);
    color: #f5e6d3;
}

.tenndi-menu-coffee .tenndi-search-input::placeholder {
    color: rgba(245, 230, 211, 0.6);
}

/* Badges coffee - mantener colores pero ajustar opacidad */
.tenndi-menu-coffee .tenndi-badge {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* ============================================
   ESTILOS HEALTHY PARA MENU-DIGITAL
   ============================================ */
.tenndi-menu-healthy {
    background: linear-gradient(160deg, #0d1f17 0%, #081510 100%) !important;
    color: #dcfce7 !important;
}

.tenndi-menu-healthy::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(22, 163, 74, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.tenndi-menu-healthy .tenndi-header {
    background: rgba(13, 31, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(34, 197, 94, 0.1);
}

.tenndi-menu-healthy .tenndi-header-logo {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.tenndi-menu-healthy .tenndi-header-logo:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
}

/* Tabs healthy */
.tenndi-menu-healthy .tenndi-categories-tabs {
    background: rgba(13, 31, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(34, 197, 94, 0.1);
}

.tenndi-menu-healthy .tenndi-tab {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    color: #dcfce7;
}

.tenndi-menu-healthy .tenndi-tab:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateX(8px);
}

.tenndi-menu-healthy .tenndi-tab.active {
    background: rgba(34, 197, 94, 0.25);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

/* Títulos de categoría healthy */
.tenndi-menu-healthy .tenndi-category-title {
    color: #dcfce7;
}

.tenndi-menu-healthy .tenndi-category-title::after {
    background: linear-gradient(90deg, #22c55e, transparent);
}

/* Tarjetas de productos healthy */
.tenndi-menu-healthy .tenndi-product-card {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tenndi-menu-healthy .tenndi-product-card:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(34, 197, 94, 0.3);
}

.tenndi-menu-healthy .tenndi-product-image-wrapper {
    border-radius: 20px 20px 0 0;
}

/* Info del producto healthy */
.tenndi-menu-healthy .tenndi-product-name {
    color: #dcfce7;
}

.tenndi-menu-healthy .tenndi-product-card:hover .tenndi-product-name {
    color: #22c55e;
}

.tenndi-menu-healthy .tenndi-product-description {
    color: rgba(220, 252, 231, 0.8);
}

.tenndi-menu-healthy .tenndi-product-price,
.tenndi-menu-healthy .tenndi-product-price *,
.tenndi-menu-healthy .tenndi-product-price .woocommerce-Price-amount,
.tenndi-menu-healthy .tenndi-product-price .woocommerce-Price-amount *,
.tenndi-menu-healthy .tenndi-product-price .woocommerce-Price-currencySymbol,
.tenndi-menu-healthy .tenndi-product-price span,
.tenndi-menu-healthy .tenndi-product-price del,
.tenndi-menu-healthy .tenndi-product-price ins {
    color: #2d3748 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #2d3748 !important;
    background-clip: unset !important;
}

.tenndi-menu-healthy .tenndi-product-price del {
    color: rgba(45, 55, 72, 0.6) !important;
    -webkit-text-fill-color: rgba(45, 55, 72, 0.6) !important;
}

/* Modal healthy */
.tenndi-menu-healthy .tenndi-product-modal .tenndi-modal-backdrop {
    background: rgba(8, 21, 16, 0.95);
    backdrop-filter: blur(20px);
}

.tenndi-menu-healthy .tenndi-product-modal .tenndi-modal-content {
    background: linear-gradient(160deg, #0d1f17 0%, #081510 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #dcfce7;
}

.tenndi-menu-healthy .tenndi-modal-close {
    background: rgba(34, 197, 94, 0.2);
    color: #dcfce7;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.tenndi-menu-healthy .tenndi-modal-close:hover {
    background: rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.5);
}

/* Footer healthy */
.tenndi-menu-healthy .tenndi-footer {
    background: linear-gradient(160deg, #081510 0%, #040a08 100%);
    border-top-color: rgba(34, 197, 94, 0.1);
}

.tenndi-menu-healthy .tenndi-footer-title,
.tenndi-menu-healthy .tenndi-footer-text {
    color: #dcfce7;
}

/* Búsqueda healthy */
.tenndi-menu-healthy .tenndi-search-wrapper {
    background: rgba(34, 197, 94, 0.05);
}

.tenndi-menu-healthy .tenndi-search-input {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #dcfce7;
}

.tenndi-menu-healthy .tenndi-search-input::placeholder {
    color: rgba(220, 252, 231, 0.6);
}

/* Badges healthy - mantener colores pero ajustar opacidad */
.tenndi-menu-healthy .tenndi-badge {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Modal de categorías healthy */
.tenndi-menu-healthy .tenndi-categories-modal-overlay {
    background: linear-gradient(160deg, rgba(8, 21, 16, 0.98) 0%, rgba(4, 10, 8, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.tenndi-menu-healthy .tenndi-categories-modal-content {
    background: linear-gradient(160deg, rgba(13, 31, 23, 0.95) 0%, rgba(8, 21, 16, 0.95) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #dcfce7;
}

.tenndi-menu-healthy .tenndi-categories-modal-title {
    color: #dcfce7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tenndi-menu-healthy .tenndi-categories-modal-subtitle {
    color: rgba(220, 252, 231, 0.7);
}

.tenndi-menu-healthy .tenndi-category-button {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    color: #dcfce7;
    transition: all 0.3s ease;
}

.tenndi-menu-healthy .tenndi-category-button:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.tenndi-menu-healthy .tenndi-category-button:active {
    transform: translateX(4px);
}

.tenndi-menu-healthy .tenndi-category-button svg {
    color: rgba(34, 197, 94, 0.8);
}

.tenndi-menu-healthy .tenndi-category-button:hover svg {
    color: #22c55e;
}

.tenndi-menu-healthy .tenndi-categories-modal-skip {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    color: #dcfce7;
}

.tenndi-menu-healthy .tenndi-categories-modal-skip:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.tenndi-menu-healthy .tenndi-categories-modal-skip svg {
    color: rgba(34, 197, 94, 0.8);
}

.tenndi-menu-healthy .tenndi-categories-modal-skip:hover svg {
    color: #22c55e;
}

/* Precios en modal de producto healthy también en oscuro */
.tenndi-menu-healthy .tenndi-modal-price,
.tenndi-menu-healthy .tenndi-modal-price *,
.tenndi-menu-healthy .tenndi-modal-price .woocommerce-Price-amount,
.tenndi-menu-healthy .tenndi-modal-price .woocommerce-Price-amount *,
.tenndi-menu-healthy .tenndi-modal-price .woocommerce-Price-currencySymbol,
.tenndi-menu-healthy .tenndi-modal-price span,
.tenndi-menu-healthy .tenndi-modal-price del,
.tenndi-menu-healthy .tenndi-modal-price ins {
    color: #2d3748 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #2d3748 !important;
    background-clip: unset !important;
}

.tenndi-menu-healthy .tenndi-modal-price del {
    color: rgba(45, 55, 72, 0.6) !important;
    -webkit-text-fill-color: rgba(45, 55, 72, 0.6) !important;
}

/* ============================================
   ESTILOS SUSHI PARA MENU-DIGITAL
   ============================================ */

/* Fondo y decoración sushi */
.tenndi-menu-sushi {
    background: linear-gradient(160deg, #1a0505 0%, #0d0202 100%) !important;
    color: #fecaca !important;
}

.tenndi-menu-sushi::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header sushi */
.tenndi-menu-sushi .tenndi-header {
    background: rgba(26, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(220, 38, 38, 0.1);
}

.tenndi-menu-sushi .tenndi-header-logo {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
}

.tenndi-menu-sushi .tenndi-header-logo:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.4);
}

/* Tabs sushi */
.tenndi-menu-sushi .tenndi-categories-tabs {
    background: rgba(26, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(220, 38, 38, 0.1);
}

.tenndi-menu-sushi .tenndi-tab {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    color: #fecaca;
}

.tenndi-menu-sushi .tenndi-tab:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateX(8px);
}

.tenndi-menu-sushi .tenndi-tab.active {
    background: rgba(220, 38, 38, 0.25);
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

/* Títulos de categoría sushi */
.tenndi-menu-sushi .tenndi-category-title {
    color: #fecaca;
}

.tenndi-menu-sushi .tenndi-category-title::after {
    background: linear-gradient(90deg, #dc2626, transparent);
}

/* Tarjetas de productos sushi */
.tenndi-menu-sushi .tenndi-product-card {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tenndi-menu-sushi .tenndi-product-card:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(220, 38, 38, 0.3);
}

.tenndi-menu-sushi .tenndi-product-image-wrapper {
    border-radius: 12px 12px 0 0;
}

/* Info del producto sushi */
.tenndi-menu-sushi .tenndi-product-name {
    color: #1a0a0a;
}

.tenndi-menu-sushi .tenndi-product-card:hover .tenndi-product-name {
    color: #2a1a1a;
}

.tenndi-menu-sushi .tenndi-product-description {
    color: rgba(42, 26, 26, 0.85);
}

.tenndi-menu-sushi .tenndi-product-price,
.tenndi-menu-sushi .tenndi-product-price *,
.tenndi-menu-sushi .tenndi-product-price .woocommerce-Price-amount,
.tenndi-menu-sushi .tenndi-product-price .woocommerce-Price-amount *,
.tenndi-menu-sushi .tenndi-product-price .woocommerce-Price-currencySymbol,
.tenndi-menu-sushi .tenndi-product-price span,
.tenndi-menu-sushi .tenndi-product-price del,
.tenndi-menu-sushi .tenndi-product-price ins {
    color: #1a0a0a !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #1a0a0a !important;
    background-clip: unset !important;
}

.tenndi-menu-sushi .tenndi-product-price del {
    color: rgba(42, 26, 26, 0.6) !important;
    -webkit-text-fill-color: rgba(42, 26, 26, 0.6) !important;
}

/* Modal sushi */
.tenndi-menu-sushi .tenndi-product-modal .tenndi-modal-backdrop {
    background: rgba(13, 2, 2, 0.95);
    backdrop-filter: blur(20px);
}

.tenndi-menu-sushi .tenndi-product-modal .tenndi-modal-content {
    background: linear-gradient(160deg, #1a0505 0%, #0d0202 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #fecaca;
}

.tenndi-menu-sushi .tenndi-modal-close {
    background: rgba(220, 38, 38, 0.2);
    color: #fecaca;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.tenndi-menu-sushi .tenndi-modal-close:hover {
    background: rgba(220, 38, 38, 0.3);
    border-color: rgba(220, 38, 38, 0.5);
}

/* Footer sushi */
.tenndi-menu-sushi .tenndi-footer {
    background: linear-gradient(160deg, #0d0202 0%, #050101 100%);
    border-top-color: rgba(220, 38, 38, 0.1);
}

.tenndi-menu-sushi .tenndi-footer-title,
.tenndi-menu-sushi .tenndi-footer-text {
    color: #fecaca;
}

/* Búsqueda sushi */
.tenndi-menu-sushi .tenndi-search-wrapper {
    background: rgba(220, 38, 38, 0.05);
}

.tenndi-menu-sushi .tenndi-search-input {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
    color: #fecaca;
}

.tenndi-menu-sushi .tenndi-search-input::placeholder {
    color: rgba(254, 202, 202, 0.6);
}

/* Link de contacto sushi */
.tenndi-menu-sushi .tenndi-contact-link {
    color: #fecaca;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.tenndi-menu-sushi .tenndi-contact-link:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    color: #ef4444;
}

/* Badges sushi - mantener colores pero ajustar opacidad */
.tenndi-menu-sushi .tenndi-badge {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Modal de categorías sushi */
.tenndi-menu-sushi .tenndi-categories-modal-overlay {
    background: linear-gradient(160deg, rgba(13, 2, 2, 0.98) 0%, rgba(5, 1, 1, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.tenndi-menu-sushi .tenndi-categories-modal-content {
    background: linear-gradient(160deg, rgba(26, 5, 5, 0.95) 0%, rgba(13, 2, 2, 0.95) 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #fecaca;
}

.tenndi-menu-sushi .tenndi-categories-modal-title {
    color: #fecaca;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tenndi-menu-sushi .tenndi-categories-modal-subtitle {
    color: rgba(254, 202, 202, 0.7);
}

.tenndi-menu-sushi .tenndi-category-button {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    color: #fecaca;
    transition: all 0.3s ease;
}

.tenndi-menu-sushi .tenndi-category-button:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.tenndi-menu-sushi .tenndi-category-button:active {
    transform: translateX(4px);
}

.tenndi-menu-sushi .tenndi-category-button svg {
    color: rgba(220, 38, 38, 0.8);
}

.tenndi-menu-sushi .tenndi-category-button:hover svg {
    color: #ef4444;
}

.tenndi-menu-sushi .tenndi-categories-modal-skip {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 12px;
    color: #fecaca;
}

.tenndi-menu-sushi .tenndi-categories-modal-skip:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.tenndi-menu-sushi .tenndi-categories-modal-skip svg {
    color: rgba(220, 38, 38, 0.8);
}

.tenndi-menu-sushi .tenndi-categories-modal-skip:hover svg {
    color: #ef4444;
}

/* Precios en modal de producto sushi también */
.tenndi-menu-sushi .tenndi-modal-price,
.tenndi-menu-sushi .tenndi-modal-price *,
.tenndi-menu-sushi .tenndi-modal-price .woocommerce-Price-amount,
.tenndi-menu-sushi .tenndi-modal-price .woocommerce-Price-amount *,
.tenndi-menu-sushi .tenndi-modal-price .woocommerce-Price-currencySymbol,
.tenndi-menu-sushi .tenndi-modal-price span,
.tenndi-menu-sushi .tenndi-modal-price del,
.tenndi-menu-sushi .tenndi-modal-price ins {
    color: #fecaca !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #fecaca !important;
    background-clip: unset !important;
}

.tenndi-menu-sushi .tenndi-modal-price del {
    color: rgba(254, 202, 202, 0.6) !important;
    -webkit-text-fill-color: rgba(254, 202, 202, 0.6) !important;
}

/* ============================================
   ESTILOS WINE PARA MENU-DIGITAL
   ============================================ */
.tenndi-menu-wine {
    background: linear-gradient(160deg, #1a0d20 0%, #0d0510 100%) !important;
    color: #e9d5ff !important;
}

.tenndi-menu-wine::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Header wine */
.tenndi-menu-wine .tenndi-header {
    background: rgba(26, 13, 32, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(147, 51, 234, 0.1);
}

.tenndi-menu-wine .tenndi-header-logo {
    background: rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.2);
}

.tenndi-menu-wine .tenndi-header-logo:hover {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.4);
}

/* Tabs wine */
.tenndi-menu-wine .tenndi-categories-tabs {
    background: rgba(26, 13, 32, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(147, 51, 234, 0.1);
}

.tenndi-menu-wine .tenndi-tab {
    background: rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.2);
    border-radius: 16px;
    color: #e9d5ff;
}

.tenndi-menu-wine .tenndi-tab:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-3px);
}

.tenndi-menu-wine .tenndi-tab.active {
    background: rgba(147, 51, 234, 0.25);
    border-color: rgba(147, 51, 234, 0.5);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3);
}

/* Títulos de categoría wine */
.tenndi-menu-wine .tenndi-category-title {
    color: #faf5ff;
}

.tenndi-menu-wine .tenndi-category-title::after {
    background: linear-gradient(90deg, #9333ea, transparent);
}

/* Tarjetas de productos wine */
.tenndi-menu-wine .tenndi-product-card {
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.15);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tenndi-menu-wine .tenndi-product-card:hover {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(147, 51, 234, 0.3);
}

.tenndi-menu-wine .tenndi-product-image-wrapper {
    border-radius: 16px 16px 0 0;
}

/* Info del producto wine - priorizando contraste y legibilidad */
.tenndi-menu-wine .tenndi-product-name {
    color: #faf5ff;
}

.tenndi-menu-wine .tenndi-product-card:hover .tenndi-product-name {
    color: #c084fc;
}

.tenndi-menu-wine .tenndi-product-description {
    color: rgba(250, 245, 255, 0.85);
}

.tenndi-menu-wine .tenndi-product-price,
.tenndi-menu-wine .tenndi-product-price *,
.tenndi-menu-wine .tenndi-product-price .woocommerce-Price-amount,
.tenndi-menu-wine .tenndi-product-price .woocommerce-Price-amount *,
.tenndi-menu-wine .tenndi-product-price .woocommerce-Price-currencySymbol,
.tenndi-menu-wine .tenndi-product-price span,
.tenndi-menu-wine .tenndi-product-price del,
.tenndi-menu-wine .tenndi-product-price ins {
    color: #1a0a1a !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #1a0a1a !important;
    background-clip: unset !important;
}

.tenndi-menu-wine .tenndi-product-price del {
    color: rgba(42, 26, 42, 0.6) !important;
    -webkit-text-fill-color: rgba(42, 26, 42, 0.6) !important;
}

/* Modal wine */
.tenndi-menu-wine .tenndi-product-modal .tenndi-modal-backdrop {
    background: rgba(13, 5, 16, 0.95);
    backdrop-filter: blur(20px);
}

.tenndi-menu-wine .tenndi-product-modal .tenndi-modal-content {
    background: linear-gradient(160deg, #1a0d20 0%, #0d0510 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    color: #e9d5ff;
}

.tenndi-menu-wine .tenndi-modal-close {
    background: rgba(147, 51, 234, 0.2);
    color: #faf5ff;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.tenndi-menu-wine .tenndi-modal-close:hover {
    background: rgba(147, 51, 234, 0.3);
    border-color: rgba(147, 51, 234, 0.5);
}

/* Footer wine */
.tenndi-menu-wine .tenndi-footer {
    background: linear-gradient(160deg, #0d0510 0%, #080208 100%);
    border-top-color: rgba(147, 51, 234, 0.1);
}

.tenndi-menu-wine .tenndi-footer-title,
.tenndi-menu-wine .tenndi-footer-text {
    color: #faf5ff;
}

/* Búsqueda wine */
.tenndi-menu-wine .tenndi-search-wrapper {
    background: rgba(147, 51, 234, 0.05);
}

.tenndi-menu-wine .tenndi-search-input {
    background: rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.2);
    color: #faf5ff;
}

.tenndi-menu-wine .tenndi-search-input::placeholder {
    color: rgba(250, 245, 255, 0.6);
}

/* Badges wine */
.tenndi-menu-wine .tenndi-badge {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Modal de categorías wine */
.tenndi-menu-wine .tenndi-categories-modal-overlay {
    background: linear-gradient(160deg, rgba(13, 5, 16, 0.98) 0%, rgba(8, 2, 8, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.tenndi-menu-wine .tenndi-categories-modal-content {
    background: linear-gradient(160deg, rgba(26, 13, 32, 0.95) 0%, rgba(13, 5, 16, 0.95) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    color: #e9d5ff;
}

.tenndi-menu-wine .tenndi-categories-modal-title {
    color: #faf5ff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tenndi-menu-wine .tenndi-categories-modal-subtitle {
    color: rgba(250, 245, 255, 0.7);
}

.tenndi-menu-wine .tenndi-category-button {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 16px;
    color: #e9d5ff;
    transition: all 0.3s ease;
}

.tenndi-menu-wine .tenndi-category-button:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3);
}

.tenndi-menu-wine .tenndi-category-button:active {
    transform: translateY(-1px);
}

.tenndi-menu-wine .tenndi-category-button svg {
    color: rgba(192, 132, 252, 0.8);
}

.tenndi-menu-wine .tenndi-category-button:hover svg {
    color: #c084fc;
}

.tenndi-menu-wine .tenndi-categories-modal-skip {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 16px;
    color: #e9d5ff;
}

.tenndi-menu-wine .tenndi-categories-modal-skip:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3);
}

.tenndi-menu-wine .tenndi-categories-modal-skip svg {
    color: rgba(192, 132, 252, 0.8);
}

.tenndi-menu-wine .tenndi-categories-modal-skip:hover svg {
    color: #c084fc;
}

/* Precios en modal de producto wine */
.tenndi-menu-wine .tenndi-modal-price,
.tenndi-menu-wine .tenndi-modal-price *,
.tenndi-menu-wine .tenndi-modal-price .woocommerce-Price-amount,
.tenndi-menu-wine .tenndi-modal-price .woocommerce-Price-amount *,
.tenndi-menu-wine .tenndi-modal-price .woocommerce-Price-currencySymbol,
.tenndi-menu-wine .tenndi-modal-price span,
.tenndi-menu-wine .tenndi-modal-price del,
.tenndi-menu-wine .tenndi-modal-price ins {
    color: #1a0a1a !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #1a0a1a !important;
    background-clip: unset !important;
}

.tenndi-menu-wine .tenndi-modal-price del {
    color: rgba(42, 26, 42, 0.6) !important;
    -webkit-text-fill-color: rgba(42, 26, 42, 0.6) !important;
}

/* Link de contacto wine */
.tenndi-menu-wine .tenndi-contact-link {
    color: #e9d5ff;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.tenndi-menu-wine .tenndi-contact-link:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.4);
    color: #c084fc;
}

/* Social links sushi */
.tenndi-menu-sushi .tenndi-social-link {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #fecaca;
}

.tenndi-menu-sushi .tenndi-social-link:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    color: #ef4444;
    transform: translateY(-2px);
}

/* ============================================
   ESTILOS FINE DINING PARA MENU-DIGITAL
   ============================================ */

/* Fondo y decoración fine dining */
.tenndi-menu-fine {
    background: #0a0a0a !important;
    color: #e8e8e8 !important;
    font-family: 'Playfair Display', serif;
}

.tenndi-menu-fine::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Header fine dining */
.tenndi-menu-fine .tenndi-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.tenndi-menu-fine .tenndi-header-logo {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    padding: 12px 20px;
}

.tenndi-menu-fine .tenndi-header-logo:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: #d4af37;
}

/* Tabs fine dining - estilo elegante y rectangular */
.tenndi-menu-fine .tenndi-categories-tabs {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 18px 0;
}

.tenndi-menu-fine .tenndi-tab {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    color: #e8e8e8;
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tenndi-menu-fine .tenndi-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.tenndi-menu-fine .tenndi-tab:hover::before {
    left: 100%;
}

.tenndi-menu-fine .tenndi-tab:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: #d4af37;
    color: #d4af37;
}

.tenndi-menu-fine .tenndi-tab.active {
    background: rgba(212, 175, 55, 0.12);
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Títulos de categoría fine dining */
.tenndi-menu-fine .tenndi-category-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.tenndi-menu-fine .tenndi-category-title::after {
    display: none;
}

.tenndi-menu-fine .tenndi-category-title::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.tenndi-menu-fine .tenndi-category-title-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.tenndi-menu-fine .tenndi-category-title-clickable:hover {
    color: #d4af37;
}

/* Tarjetas de producto fine dining - estilo elegante */
.tenndi-menu-fine .tenndi-product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.tenndi-menu-fine .tenndi-product-card::before {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
}

.tenndi-menu-fine .tenndi-product-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #d4af37;
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.tenndi-menu-fine .tenndi-product-image-wrapper {
    border-radius: 0;
}

/* Información del producto fine dining */
.tenndi-menu-fine .tenndi-product-info {
    padding: 18px 20px;
}

.tenndi-menu-fine .tenndi-product-name {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.tenndi-menu-fine .tenndi-product-description {
    color: rgba(232, 232, 232, 0.7);
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
    font-family: 'Inter', sans-serif;
}

.tenndi-menu-fine .tenndi-product-price {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
}

.tenndi-menu-fine .tenndi-product-price *,
.tenndi-menu-fine .tenndi-product-price .woocommerce-Price-amount,
.tenndi-menu-fine .tenndi-product-price .woocommerce-Price-amount *,
.tenndi-menu-fine .tenndi-product-price .woocommerce-Price-currencySymbol,
.tenndi-menu-fine .tenndi-product-price span {
    color: #d4af37 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #d4af37 !important;
    background-clip: unset !important;
}

/* Badges fine dining */
.tenndi-menu-fine .tenndi-badge {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    border-radius: 0;
    letter-spacing: 1px;
}

/* Búsqueda fine dining */
.tenndi-menu-fine .tenndi-search-wrapper {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.tenndi-menu-fine .tenndi-search-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    color: #e8e8e8;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
}

.tenndi-menu-fine .tenndi-search-input::placeholder {
    color: rgba(232, 232, 232, 0.5);
}

.tenndi-menu-fine .tenndi-search-input:focus {
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.05);
}

/* Modal de producto fine dining */
.tenndi-menu-fine .tenndi-product-modal {
    font-family: 'Playfair Display', serif;
}

.tenndi-menu-fine .tenndi-modal-overlay {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.tenndi-menu-fine .tenndi-modal-content {
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    color: #e8e8e8;
}

.tenndi-menu-fine .tenndi-modal-close {
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
}

.tenndi-menu-fine .tenndi-modal-close:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
}

/* Footer fine dining */
.tenndi-menu-fine .tenndi-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.tenndi-menu-fine .tenndi-footer-title,
.tenndi-menu-fine .tenndi-footer-text {
    color: #e8e8e8;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* Modal de categorías fine dining */
.tenndi-menu-fine .tenndi-categories-modal-overlay {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.tenndi-menu-fine .tenndi-categories-modal-content {
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    color: #e8e8e8;
}

.tenndi-menu-fine .tenndi-categories-modal-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 32px;
}

.tenndi-menu-fine .tenndi-categories-modal-subtitle {
    color: rgba(232, 232, 232, 0.7);
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

.tenndi-menu-fine .tenndi-category-button {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0;
    color: #e8e8e8;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tenndi-menu-fine .tenndi-category-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.tenndi-menu-fine .tenndi-category-button:hover::before {
    left: 100%;
}

.tenndi-menu-fine .tenndi-category-button:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: #d4af37;
    color: #d4af37;
}

.tenndi-menu-fine .tenndi-category-button svg {
    color: #d4af37;
}

