.header-main{
	background: var(--color-primary);
	width: 100%;
	border-bottom: 1px solid #e4eaef;
	box-shadow: -1px 4px 7px 0 rgba(121, 120, 120, .26);
}

.header-main-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 5px 20px;
}

.header-main-content a {
	display: flex;
}

.header-main-links{
	width: 100%;
	background: var(--color-bg);
	margin: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.icon-header{
	color: var(--color-bg);
}

.icons-header{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	flex-wrap: nowrap;
}

.icon-header-search{
	color: var(--color-primary);
}

.search-header-box{
	border: none;
	border-radius: 17px;
	height: 38px;
	background: var(--color-bg);
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.search-header-form{
	width: 33%;
	display: flex;
	align-items: center;
}

.search-submit-btn{
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-primary);
	font-size: 1.2rem;
	padding: 3px;
}

.search-submit-btn:hover{
	color: var(--color-primary);
	background: none;
}

.search-submit-btn:focus{
	outline: none;
	color: var(--color-primary);
	background: none;
}


.search-input {
	width: 100% !important;
	font-size: 100% !important;
	border: none !important;          /* quita el borde */
	outline: none !important;         /* quita el outline */
	box-shadow: none !important;      /* quita cualquier sombra */
	appearance: none !important;      /* para navegadores que usen estilos propios */
}

/* Asegúrate de que en focus tampoco aparezca nada */
.search-input:focus,
.search-input:active {
	border: none;
	outline: none;
	box-shadow: none;
}

/* Firefox a veces dibuja un padding interno con dotted outline */
.search-input::-moz-focus-inner {
	border: 0;
}



/* mobile‑header.css */

.mobile-header {
	position: fixed;
	width: 100%;
	z-index: 2000;
	box-shadow: -1px 4px 7px 0 rgba(121, 120, 120, .26);
}

.sub-mobile-header {
	background: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 18px;
}

/* only show on small screens */
@media (min-width: 1000px) {
	.mobile-header { display: none; }
}




/* hamburger */
.mobile-header__burger {
	background: none;
	border: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
	padding: 0;
}
.mobile-header__burger span {
	display: block;
	width: 24px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
}

/* logo centered */
.mobile-header__logo img {
	height: auto;
}

/* cart icon */
.mobile-header__cart {
	color: #fff;
}

/* slide-in nav */
.mobile-header__nav {
	position: fixed;
	top: 0; left: -100%;
	width: 75%;
	height: 100%;
	background: #fff;
	padding: 2rem 1rem;
	box-shadow: 2px 0 8px rgba(0,0,0,0.2);
	transition: left 0.3s ease;
	z-index: 2100;
}
.mobile-header__nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.mobile-header__nav li + li {
	margin-top: 1rem;
}
.mobile-header__nav a {
	text-decoration: none;
	color: #333;
	font-size: 1.1rem;
	font-weight: 500;
}

/* close button */
.mobile-header__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

/* overlay */
.mobile-header__overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 2050;
}

/* open state */
.mobile-header.open .mobile-header__nav {
	left: 0;
}
.mobile-header.open .mobile-header__overlay {
	opacity: 1;
	visibility: visible;
}


.desktop-header,
.header-main-banner-top.desktop {
	display: block;
}

.mobile-header,
.header-main-banner-top.mobile {
	display: none;
}

.header-main-banner-top img {
	height: 48px !important;
	width: 100%;
	object-fit: cover;
}

@media (max-width: 1000px) {
	.desktop-header {
		display: none;
	}

	.mobile-header {
		display: block;
	}
}


@media (max-width: 450px) {
	.header-main-banner-top.desktop {
		display: none;
	}

	.header-main-banner-top.mobile {
		display: block;
	}

	.header-main-banner-top.mobile img {
		object-fit: cover;
		height: auto;
		max-height: 48px !important;
		width: 100%;
	}
}

.header-link-web {
	padding: 10px;
	cursor: pointer;
	text-decoration: none;
	color: var(--color-text);
}













.banner-img-slider {
	width: 100%;
}













.attributes-main {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1.5rem;
	padding: 2rem 1rem;
}

/* Card */
.attribute-card {
	position: relative;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;

	transition: 
		transform .3s cubic-bezier(.215,.61,.355,1),
		box-shadow .3s cubic-bezier(.215,.61,.355,1);
	will-change: transform;
}

.attribute-card:hover, .attribute-card:focus-within {
	transform: translateY(-6px); /* “elevar” */
	box-shadow: 0 12px 24px -6px rgba(0,0,0,.15),
		0 4px 8px rgba(0,0,0,.08);
}

/* Image fills card */
.attribute-card img {
	max-width: 100%;
	height: auto;
	display: block;
}








































/* limita ancho máximo y centra */
.products-more-sales .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* padding general */
.products-more-sales {
	padding: 2rem 0;
	background: var(--color-bg);
}

/* título centrado */
.products-more-sales .section-title {
	text-align: center;
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	color: #222;
}

/* cada slide tiene padding lateral para verse separadas */
.products-more-sales .splide__slide {
	padding: 0 0.5rem;
	box-sizing: border-box;
}

/* opcional: ajustar el ancho de la splide para que no sea full‑width */
.products-more-sales.splide {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}

/* overrides Splide */
.products-more-sales .splide__arrows .splide__arrow {
	color: #fd00ae;
}
.products-more-sales .splide__pagination__page {
	background: rgba(0, 0, 0, 0.2);
}
.products-more-sales .splide__pagination__page.is-active {
	background: #fd00ae;
}


/* Product card básico */
.product-card {
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}
.wishlist-btn {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: rgba(255,255,255,0.8);
	border: none;
	border-radius: 50%;
	padding: 0.5rem;
	cursor: pointer;
	transition: background 0.2s;
}
.wishlist-btn:hover {
	background: #fff;
}
.wishlist-btn .icon-heart {
	font-size: 1.2rem;
	color: #fd00ae;
}
.product-card img {
	width: 100%;
	border-radius: 0;
	object-fit: cover;
	margin-bottom: 0.75rem;
}
.product-title {
	font-size: 1rem;
	font-weight: 500;
	color: #333;
	margin: 0.5rem 0;
	flex-grow: 1;
}
.color-variants {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}
.variant {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	border: 1px solid #ddd;
}
.price {
	margin-bottom: 0.75rem;
}
.old-price {
	text-decoration: line-through;
	color: #999;
	font-size: 0.9rem;
	margin-right: 0.5rem;
}
.new-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: #222;
}
.discount-badge {
	background: #fd00ae;
	color: #fff;
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	border-radius: 0.5rem;
	margin-left: 0.5rem;
}
.btn-primary {
	display: inline-block;
	background: #fd00ae;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0.75rem;
	border-radius: 0.5rem;
	transition: background 0.2s;
}
.btn-primary:hover {
	background: #e6009b;
}






/* Por defecto (desktop): muestro banner-slider-main, oculto el móvil */
.banner-slider-main {
	display: block;
}
.banner-slider-main-movil {
	display: none;
}

/* A partir de 768px de ancho (tablet/desktop) */
@media (min-width: 1001) {
	.banner-slider-main {
		display: block;
	}
	.banner-slider-main-movil {
		display: none;
	}
}

/* Hasta 768px (mobile) */
@media (max-width: 1000px) {
	.banner-slider-main {
		display: none;
	}
	.banner-slider-main-movil {
		display: block;
	}
}







/* Product Card for Home */
.product-card_home {
	background: #ffffff;
	border: 1px solid #ececec;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .3s;
	width: 250px;
	min-width: 250px;
}
.product-card_home:hover {
	transform: translateY(-4px);
}

.product-card_home__media {
	position: relative;
}
.product-card_home__image {
	display: block;
	max-width: 100%;
	object-fit: cover;
}

.product-card_home__wishlist {
	position: absolute;
	top: 8px;
	right: 8px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s, transform .2s;
}
.product-card_home__wishlist:hover {
	background: #ff1493;
	transform: scale(1.1);
}
.icon-heart_home {
	width: 16px;
	height: 16px;
	color: #ff1493;
}
.product-card_home__wishlist:hover .icon-heart_home {
	color: #ffffff;
}

.product-card_home__info {
	padding-top: 16px;

	text-align: center;
}

.product-card_home__title {
	font-size: 1rem;
	color: #333333;
	margin-bottom: 8px;
	line-height: 1.3;
}

.product-card_home__swatches {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-bottom: 12px;
}
.swatch_home {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #ececec;
	cursor: pointer;
	transition: border .2s, transform .2s;
}
.swatch_home:hover {
	border-color: #ff1493;
	transform: scale(1.1);
}

.product-card_home__pricing {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 8px;
	margin-bottom: 16px;
}
.price-old_home {
	font-size: .85rem;
	color: #777777;
	text-decoration: line-through;
}
.price-new_home {
	font-size: 1.2rem;
	color: #ff1493;
	font-weight: 700;
}
.discount-badge_home {
	background: #ff1493;
	color: #ffffff;
	font-size: .75rem;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 4px;
}

.product-card_home__button {
	display: block;
	max-width: 100%;
	padding: 12px 0;
	background: #ff1493;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 600;
	border: none;
	border-radius: 0 0 12px 12px;
	transition: background .2s, transform .2s;
	text-decoration: none;
	text-align: center;
}

.product-card_home__button:hover {
	background: #af0f67;
	color: var(--color-bg);
	transform: translateY(-2px);
}

@media (max-width: 480px) {
	.product-card_home {
		border-radius: 8px;
	}
	.product-card_home__title {
		font-size: .95rem;
	}
	.product-card_home__button {
		font-size: .9rem;
	}
}
















/* products-juego-sala.css */

/* Base */
.products-juego-sala {
	width: 100%;
	padding: 0;
	margin: 0;
}

/* Banner */
.products-juego-sala .juego-banner img {
	width: 100%;
	display: block;
	object-fit: cover;
	border-radius: 1rem;
	margin-bottom: 1.5rem;
}

/* Filas */
.products-juego-sala .juego-row {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

/* 3 columnas */
.products-juego-sala .row-3 {
	grid-template-columns: repeat(3, 1fr);
}

/* 2 columnas */
.products-juego-sala .row-2 {
	grid-template-columns: repeat(2, 1fr);
}

/* Tarjeta de imagen */
.products-juego-sala .juego-card {
	overflow: hidden;
	border-radius: 1rem;
	box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.products-juego-sala .juego-card img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s;
}
.products-juego-sala .juego-card:hover img {
	transform: scale(1.02);
}

/* Responsive: en móvil todas en 1 columna */
@media (max-width: 768px) {
	.products-juego-sala .row-3,
	.products-juego-sala .row-2 {
		grid-template-columns: 1fr;
	}
}






.not-found-page{
	max-width: 1200px !important;
	margin: 0 auto !important;
	margin-top: 100px !important;
	margin-bottom: 50px !important;
}













/* Base footer */
.site-footer {
	background-color: #000;
	color: #fff;
	font-size: 0.9rem;
	position: relative;
	overflow: hidden;
}

/* Top section: 4 columnas */
.footer-top {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	padding-top: 2rem;
	padding-bottom: 0rem;
}

.link-libro-reclamaciones {
	display: inline-flex;        /* o block; según tu layout */
	flex-direction: column;      /* Texto arriba, imagen debajo */
	align-items: center;         /* Centra imagen y texto horizontalmente */
	text-decoration: none;
	gap: 6px;                    /* Espacio entre texto e imagen */
}

.link-libro-reclamaciones .link-text {
	font-weight: 500;            /* Ajusta según tu diseño */
	line-height: 1.2;
	text-align: center;
}

.link-libro-reclamaciones .libro-img {
	display: block;
	max-width: 200px;
	max-height: 350px;
	width: auto;
	height: auto;
	object-fit: contain;         /* Garantiza que no se deforme */
}



/* Columna “Acerca de” */
.footer-about .footer-logo img {
	height: 2.5rem;
	margin-bottom: 1rem;
	filter: brightness(0) invert(1);
}
.footer-about p {
	line-height: 1.5;
	color: #ccc;
}

/* Columna “Contáctanos” */
.footer-contact h3 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-size: 1rem;
	color: var(--color-bg);
}
.footer-contact p {
	margin-bottom: 1rem;
	color: #ccc;
}
.footer-contact a {
	color: #ccc;
	text-decoration: underline;
}
.footer-vtex img {
	height: 2rem;
	margin-top: 1rem;
}

/* Columna “Secciones destacadas” */
.footer-links ul {
	list-style: none;
	padding: 0;
}
.footer-links li {
	margin-bottom: 0.5rem;
}
.footer-links a {
	color: #ccc;
	transition: color 0.2s;
}
.footer-links a:hover {
	color: #fff;
}
.footer-links img {
	height: 1.2rem;
	vertical-align: middle;
	margin-left: 0.5rem;
}

/* Columna “Redes y pagos” */
.footer-social-pay h3 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	color: var(--color-bg);
}
.footer-social-icons {
	display: flex;
	gap: 1rem;
}
.footer-social-icons img {
	width: 1.8rem;
	height: auto;
	filter: brightness(0) invert(1);
}
.footer-payments {
	display: flex;
	gap: 1rem;
	align-items: center;
}
.footer-payments img {
	height: 2rem;
	width: auto;
}

/* Bottom copyright bar */
.footer-bottom {
	border-top: 1px solid #333;
	text-align: center;
	padding: 1rem 0;
}
.footer-bottom p {
	margin: 0;
	color: #777;
	font-size: 0.85rem;
}

.footer-icon-social{
	color: var(--color-bg);
}


/* WhatsApp floating button */
.whatsapp-float {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	width: 3.5rem;
	height: 3.5rem;
	background: #25D366;
	z-index: 1001;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	transition: background 0.3s;
}
.whatsapp-float svg {
	width: 80%;
	height: 80%;
	color: #fff;
}







.swiper-button-next, .swiper-button-prev {
	color: var(--color-primary);
}

.swiper-pagination-bullet-active {
	background: var(--color-primary);
}









.site-header--checkout {
	position: relative !important;
	background: var(--color-primary) !important;
	color: var(--color-bg) !important;
	padding: 0 !important;
	padding: 5px 20px !important;
	display: flex;
	justify-content:center;
}

.header-main-content a,
.site-header--checkout a {
	display: flex;
}

.header-main-content a svg,
.site-header--checkout a svg {
	transition: transform ease 0.3s
}

.header-main-content a svg:hover,
.site-header--checkout a svg:hover {
	transform: scale(1.05);
}

.header-icons-navbar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}

.mobile-header__logo,
.user-link {
	display: flex;
}

.search-header-form.mobile {
	width: 100%;
	margin-top: 20px;
}

.search-header-form.mobile .search-header-box {
	border: 1px solid #0000002b;
	padding: 0 8px 0 0;
	border-radius: 6px;
}

.search-header-form.mobile .search-header-box .icon-header-search {
	color: #00000040;
}

.search-header-form.mobile svg {
	width: 18px;
}

/* ==========================================================================
MENÚ MÓVIL COMPACTO Y ELEGANTE (CORREGIDO)
========================================================================== */

/* 1. CONTENEDOR PRINCIPAL */
.mobile-header__nav {
	position: fixed;
	top: 0; left: -100%;
	width: 85%;
	max-width: 320px; /* Un poco más estrecho y elegante */
	height: 100%;
	background: #ffffff;
	z-index: 99999;
	transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	box-shadow: 10px 0 40px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
}

.mobile-header__nav.is-open {
	left: 0;
}

/* 2. CABECERA (Más compacta) */
.mobile-nav-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 20px;
	background: #fff;
	/* Borde sutil para separar del buscador */
}

.mobile-nav-logo svg {
	height: 32px; /* Logo un poco más discreto */
	width: auto;
	display: block;
}

/* Botón X (Limpio) */
.mobile-header__close {
	border: none;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	margin: 16px;
	margin-top: 32px;
	color: #333;
}
.mobile-header__close:hover {
	color: #fd00ae;
}

/* 3. BUSCADOR (DISEÑO BLANCO Y LIMPIO) */
.mobile-header__nav .search-header-form.mobile {
	margin: 20px 15px;
	margin-bottom: 40px;
	width: auto;
}

.mobile-header__nav .search-header-box {
	background: #ffffff; /* Fondo blanco puro */
	border: 1px solid #e0e0e0; /* Borde gris suave */
	border-radius: 8px; /* Bordes ligeramente redondeados (no píldora exagerada) */
	height: 42px; /* Altura compacta */
	display: flex;
	align-items: center;
	padding: 0 12px;
	transition: all 0.2s ease;
	box-shadow: 0 2px 5px rgba(0,0,0,0.03); /* Sombra muy sutil */
}

/* Efecto Focus: Borde rosa y sombra suave */
.mobile-header__nav .search-header-box:focus-within {
	border-color: #fd00ae;
	box-shadow: 0 0 0 3px rgba(253, 0, 174, 0.1); /* Resplandor rosa */
}

.mobile-header__nav .search-input {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	font-size: 14px;
	color: #333;
	width: 100%;
	height: 100% !important;
	padding: 0 8px !important;
	margin: 0 !important;
}

.mobile-header__nav .search-input::placeholder {
	color: #999;
	font-weight: 400;
}

.mobile-header__nav .search-submit-btn {
	background: transparent;
	border: none;
	padding: 0;
	color: #bbb; /* Gris claro por defecto */
	display: flex;
	align-items: center;
	cursor: pointer;
}

.mobile-header__nav .search-header-box:focus-within .search-submit-btn {
	color: #fd00ae; /* Lupa rosa al escribir */
}

/* 4. LISTA (Compacta) */
.mobile-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow-y: auto;
	flex: 1;
	border-top: 1px solid #f0f0f0; /* Separador sutil arriba */
}

/* Items */
.mobile-nav-list > li {
	border-bottom: 1px solid #f5f5f5;
}

.mobile-link-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0; /* Sin padding extra, lo maneja el link */
	cursor: pointer;
	transition: background 0.1s;
}

.mobile-link-wrapper:active {
	background: #f9f9f9;
}

.mobile-link-wrapper a {
	flex: 1;
	padding: 14px 20px; /* Altura de fila cómoda pero no enorme */
	text-decoration: none;
	color: #222;
	font-size: 15px;
	font-weight: 600;
}

/* Flecha más pequeña y discreta */
.mobile-submenu-toggle {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ccc;
}

/* 5. SUBMENÚS */
.mobile-submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	background: #fafafa; /* Gris muy tenue para diferenciar */
	display: none;
	box-shadow: inset 0 3px 5px rgba(0,0,0,0.03);
}

.mobile-submenu li a {
	display: block;
	padding: 12px 20px 12px 35px; /* Compacto */
	font-size: 14px;
	color: #555;
	text-decoration: none;
	border-bottom: 1px solid #f0f0f0;
	font-weight: 400;
}

.mobile-submenu li a:hover,
.mobile-submenu li a:active {
	color: #fd00ae;
	background: #fff;
}

/* Estados Activos */
.mobile-has-submenu.open .mobile-submenu {
	display: block;
}

.mobile-has-submenu.open .mobile-submenu-toggle {
	color: #fd00ae;
	transform: rotate(180deg);
}

.mobile-has-submenu.open > .mobile-link-wrapper a {
	color: #fd00ae;
}

/* ==========================================================
   SECCIÓN 2 HOME: GRID 2x2 EN MÓVIL (Atributos)
   ========================================================== */

@media (max-width: 768px) {
    .attributes-main {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important; 
        padding: 24px 16px !important; 
    }

    .attribute-card {
        height: auto !important;
        min-height: 0 !important;
    }
}

/* ========================================= */
/* FOOTER: BOLETÍN + REDES (Diseño Mejorado) */
/* ========================================= */

.footer-newsletter-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Títulos más limpios */
footer h3 {
    font-size: 1rem;
    font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--color-bg);
    letter-spacing: 0.5px;
}

.newsletter-block p {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* El formulario estilo "App" */
.subscribe-input-wrapper {
    display: flex;
    background: #fff; /* Fondo blanco limpio */
    border-radius: 4px; /* Bordes sutilmente redondeados */
    overflow: hidden;
    padding: 4px; /* Espacio interno para que el botón respire */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.subscribe-input {
    flex: 1;
    background: transparent;
    border: none !important;
    padding: 0 12px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.subscribe-input::placeholder {
    color: #999;
}

.subscribe-btn {
    background: #fd00ae;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #e000a0;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-icon-social {
    color: #fff;
    width: 24px;
    height: 24px;
    transition: transform 0.2s, color 0.2s;
}

.footer-social-icons a:hover .footer-icon-social {
    color: #fd00ae;
    transform: translateY(-3px); /* Pequeño salto al pasar el mouse */
}

/* Mensaje de éxito/error */
.subscribe-message {
    font-size: 12px;
    margin-top: 8px;
    min-height: 18px;
}
