:root {
	--dark:     #0a0a0a;
	--gris:     #1c1c1c;
	--gris-md:  #2e2e2e;
	--negro:    #000;
	--blanco:   #fff;
	--txt-color: #c8c0b8;
	--fuente-ppal:   'DM Sans', sans-serif;
	--fuente-titulo: 'Bebas Neue', cursive;
	--fuente-serif:  'Playfair Display', serif;
}

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

body {
	font-family: var(--fuente-ppal);
	background: var(--dark);
	color: #e8e0d5;
	overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
	font-family: var(--fuente-ppal);
	font-weight: 700;
}

p, li { color: #5a6a7a; font-size: .88rem; }

.img-250 { height: 250px; object-fit: cover;}
.img-215 { height: 215px; object-fit: cover;}
.texto-noticia p { color: #95aec8; font-size: .9rem; }

/* ── Utilidades ── */
.text-12, .texto .text-tiny  { font-size: 12px !important; }
.text-13                      { font-size: 13px !important; }
.text-14, .texto .text-small  { font-size: 14px !important; }
.texto .text-big              { font-size: 20px !important; }
.texto .text-huge             { font-size: 28px !important; }
.text-small                   { font-size: 14px; }
.text-10                      { font-size: 10px; }

/* ── TOPBAR ── */
.topbar {
	background: var(--botones-hover);
	font-size: .78rem;
	letter-spacing: .04em;
	padding: 6px 0;
	border-bottom: 2px solid var(--botones);
	color: #a8c9e8;
}
.topbar p { margin: 0; color: #a8c9e8; }

.top-nav-links li a {
	font-size: .78rem;
	font-weight: 400;
	color: #a8c9e8;
	text-decoration: none;
}
.top-nav-links li a:hover { color: #fff; }

.top-rrss-cont {
	display: inline-flex;
	flex-wrap: wrap;
	gap: .4rem;
	align-items: center;
}
.top-rrss-cont > p,
.top-rrss-cont .linea { display: none; }

.top-rrss-cont .rrss-top {
	display: inline-flex;
	gap: .3rem;
	align-items: center;
}
.top-rrss-cont .rrss-top a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px; height: 26px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	color: #a8c9e8;
	font-size: .82rem;
	text-decoration: none;
	transition: background .2s, color .2s;
}
.top-rrss-cont .rrss-top a:hover { background: var(--botones); color: #fff; }

/* ── NAVBAR ── */
#navbar {
	background: var(--gris);
	border-bottom: 3px solid var(--botones);
	box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
#navbar .navbar,
#navbar .container-fluid,
#navbar .container-lg,
#navbar .container-fluid.border-bottom {
	background: var(--gris) !important;
	border-color: rgba(255,255,255,.07) !important;
}

/* Logo circular */
#navbar .navbar-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	text-decoration: none;
}
#navbar .navbar-brand img,
#navbar .navbar-brand #logo {
	transition: all .3s ease-in-out;
}
#navbar.navbar-shrink .navbar-brand img,
#navbar.navbar-shrink .navbar-brand #logo {
	width: 44px !important;
	height: 44px !important;
}

/* Buscador */
.buscador { width: 40%; }
.buscador .input-group {
	border-radius: 6px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.12);
	background: rgba(255,255,255,.07);
	overflow: hidden;
}
.buscador .form-control {
	border-radius: 0;
	border: none;
	background: transparent;
	color: #e8e0d5;
	padding: .5rem 1rem;
	font-size: .84rem;
}
.buscador .form-control::placeholder { color: #5a6a7a; }
.buscador .form-control:focus {
	box-shadow: none;
	background: rgba(255,255,255,.05);
	color: #e8e0d5;
}
.buscador .input-group .btn-color {
	border-radius: 0 !important;
	aspect-ratio: auto;
	padding: 8px 14px !important;
	background: var(--botones) !important;
	color: #fff;
}
.buscador .input-group .btn-color:is(:hover,:focus) {
	background: var(--botones) !important;
	color: #000;
}

#results, #results2 {
	max-height: 300px;
	text-align: left;
	list-style: none;
	padding: 5px 15px;
	overflow-y: auto;
	background: var(--gris-md);
	border-radius: 6px;
	position: absolute;
	z-index: 99;
	width: 100%;
	border: 1px solid rgba(255,255,255,.1);
}
#results a, #results2 a { text-decoration: none; font-size: 14px; color: #c8c0b8; }
#results a:hover, #results2 a:hover { color: var(--botones); }

/* Links header (email/whatsapp) */
.link-header a {
	text-decoration: none;
	color: #7a8a9a;
	font-size: .78rem;
	line-height: 1.4;
	display: flex;
	align-items: center;
	gap: 8px;
}
.link-header a i { color: var(--botones); }
.link-header a b { font-weight: 500; color: #c8c0b8; }
.link-header a:hover { color: #fff; }

/* Menú inferior */
.menu-inf {
	background: var(--gris);
	border-top: 1px solid rgba(255,255,255,.06);
}
#navbar .nav-item .nav-link {
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .08em;
	color: #c8c0b8 !important;
	text-transform: uppercase;
	padding: .8rem .85rem;
	position: relative;
	transition: color .2s;
}
#navbar .nav-item .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0; left: 50%; right: 50%;
	height: 3px;
	background: var(--botones);
	transition: left .25s, right .25s;
}
#navbar .nav-item .nav-link:hover,
#navbar .nav-item .nav-link.active { color: #fff !important; }
#navbar .nav-item .nav-link:hover::after,
#navbar .nav-item .nav-link.active::after { left: 0; right: 0; }

/* Botones navbar */
#navbar .btn-link { text-decoration: none; color: #a8c9e8; }
#navbar .btn-link:is(:hover,:focus) { color: var(--botones) !important; }

.btn-carro {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	background: var(--topbar-footer);
	border-radius: 4px;
	padding: 6px 14px;
	transition: background .2s;
}
.btn-carro:is(:hover,:focus) { background: #c94b02 !important; color: #fff !important; }
.btn-carro .icono {
	width: auto; height: auto;
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-size: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.btn-carro .badge {
	position: absolute;
	top: -4px; right: -8px;
	height: 16px; width: 16px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	font-weight: 700;
	font-size: 10px;
	background: var(--botones-hover);
	padding: 0;
	color: #fff;
}

/* Navbar sticky */
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	right: 0;
	z-index: 290;
}
#navbar:is(.sticky) .header-non-sticky { display: none; }
.sticky + .content { padding-top: 55px; }

/* ── BOTONES GLOBALES ── */
.btn { border-radius: 4px; padding: .5rem .9rem; }

.btn-color {
	background: var(--botones) !important;
	color: #fff;
	border: none;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.btn-color:is(:hover,:focus,:active) {
	background: var(--botones) !important;
	color: #000 !important;
}

.btn-color2 {
	font-weight: 500;
	background: transparent;
	border: 1.5px solid var(--botones-hover);
	border-radius: 4px;
	color: #a8c9e8;
	font-size: .8rem;
	padding: .47rem 14px;
	transition: all .2s;
}
.btn-color2:is(:hover,:focus,:active) {
	background: var(--botones-hover);
	color: #fff;
	border-color: var(--botones-hover);
}

.btn-color3 {
    background: var(--topbar-footer);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    font-size: .86rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 13px 28px;
    transition: transform .15s, box-shadow .15s;
    width: 100%;
    cursor: pointer;
}
.btn-color3:is(:hover,:focus,:active) {
	background: var(--topbar-footer)!important;
	transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 93, 4, .35);
}

.btn-outline-gris {
	border-radius: 4px;
	padding: .5rem 1rem;
	border: 1px solid rgba(255,255,255,.15);
	color: #c8c0b8;
}
.btn-outline-gris:is(:hover,:focus) {
	background: var(--botones) !important;
	color: #fff !important;
}
.btn-outline-blanco {
	background: transparent;
	color: var(--blanco);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: .7rem 1.4rem;
	border: 2px solid rgba(255,255,255,.4);
}
.btn-outline-blanco:is(:hover,:focus) {
	background: rgba(42,157,111,.12) !important;
	border-color: var(--botones);
	color: #fff !important;
}
.btn-link { letter-spacing: .5px; color: var(--botones); }
.btn-link:is(:hover,:focus,:active) { color: var(--botones); }


/* ── OFFCANVAS CATEGORÍAS ── */
.offcanvas { background: var(--gris); color: #e8e0d5; }
.offcanvas-header { border-bottom: 1px solid rgba(255,255,255,.08); }
.offcanvas-title { color: #fff; font-size: 1rem; letter-spacing: .05em; }
.btn-close { filter: invert(1); }
.offcanvas .accordion.categorias .accordion-item { background: var(--gris); border-color: rgba(255,255,255,.06); }
.offcanvas .accordion.categorias .accordion-button { background: var(--gris); color: #c8c0b8; box-shadow: none; border: none; }
.offcanvas .accordion.categorias .accordion-button:not(.collapsed) { color: var(--botones); background: var(--gris); }
.offcanvas .accordion.categorias .accordion-button::after { filter: invert(1) brightness(.6); }
.offcanvas .accordion.categorias .accordion-item a.nav-link { padding: 14px 20px; color: #c8c0b8; font-size: .85rem; }
.offcanvas .accordion.categorias .accordion-item a.nav-link:hover { color: var(--botones); }
.accordion-collapse { background: var(--gris-md); }
.accordion-item { background: var(--gris-md); border-color: rgba(255,255,255,.07); }
.accordion-button { background: var(--gris-md); color: var(--txt-color); font-size: .86rem;}
.accordion-button:not(.collapsed) { background: var(--gris-md); box-shadow: none; color: var(--botones); }
.accordion .accordion-item .accordion-header .link-categorias { padding: 16px 8px; font-size: 16px; font-weight: 400; background: var(--gris); text-decoration: none; color: #e8e0d5; display: block; }
.dropdown-menu { background: var(--gris-md) !important; border: 1px solid rgba(255,255,255,.1) !important; }
.dropdown-item { color: #c8c0b8; font-size: .85rem; }
.dropdown-item:hover { background: rgba(42,157,111,.15) !important; color: var(--botones); }

/* ── HERO CAROUSEL ── */
.cards-grid {
	display: grid;
	grid-template-columns: 2.1fr .9fr;
	grid-template-rows: 1fr 1fr;
	grid-template-areas: "big small1" "big small2";
	gap: 16px;
}
.card--large { grid-area: big; min-height: 450px; }
.card--small:nth-of-type(2) { grid-area: small1; }
.card--small:nth-of-type(3) { grid-area: small2; }

.carousel-item {
	height: 88vh;
	min-height: 400px;
	max-height: 900px;
	background: no-repeat center center scroll;
	-webkit-background-size: cover;
	background-size: cover;
	background-color: rgb(13 31 13 / 80%);
	background-blend-mode: multiply;
	position: relative;
}
.carousel-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(5,15,30,.80) 0%, rgba(5,15,30,.45) 55%, rgba(5,15,30,.1) 100%);
	z-index: 1;
}
.carousel-item .btn-color {
	font-size: .88rem;
    letter-spacing: .06em;
	padding: 13px 30px;
}

.carousel-caption {
	bottom: auto;
	padding: 0;
	text-align: left;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 6%;
	right: 6%;
	z-index: 2;
}
.carousel-indicators {
	justify-content: flex-start;
	margin-inline: 6%;
	z-index: 3;
	bottom: 22px;
}
.carousel-indicators button {
	height: 8px !important;
	width: 8px !important;
	border: none !important;
	border-radius: 50% !important;
	background: rgba(255,255,255,.35) !important;
	transition: all .3s !important;
	margin: 0 4px;
}
.carousel-indicators .active {
	width: 24px !important;
	border-radius: 4px !important;
}
.carousel-control-prev, .carousel-control-next {
	width: 44px; height: 44px;
	top: 50%; bottom: auto;
	transform: translateY(-50%);
	border-radius: 50%;
	background: rgba(0,0,0,.45);
	border: 1px solid rgba(255,255,255,.15);
	margin: 0 10px;
	opacity: 1;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
	background: var(--botones);
}
.carousel-control-prev { left: 10px; }
.carousel-control-next { right: 10px; }

/* Tipografía slide */
.slide-eyebrow {
	display: block;
	font-size: .74rem;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--botones);
	font-weight: 600;
	border-left: 3px solid var(--botones);
	padding-left: 12px;
	margin-bottom: 16px;
}
.titulo-slide {
	font-family: var(--fuente-titulo);
	font-size: clamp(3rem, 8vw, 4rem);
	line-height: .95;
	color: #fff;
	letter-spacing: 2px;
	margin-bottom: 20px;
	font-weight: 400;
	max-width: 650px;
}
.titulo-slide .script {
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.1;
	color: var(--botones);
	font-weight: 400;
}
.texto-slide {
	font-size: 1rem;
	color: rgba(255,255,255,.8);
	max-width: 480px;
	line-height: 1.7;
	margin-bottom: 32px;
}
.banner-seccion {
	margin: 1rem 1.5rem;
	height: 250px;
	border-radius: 1rem;
	background: no-repeat center center scroll;
	background-size: cover;
	background-color: #1a2a2a;
	background-blend-mode: multiply;
}
.banner-seccion.dashboard { height: 120px; }
.banner-seccion .titulo-slide {font-family: var(--fuente-titulo); font-size: 48px; line-height: 48px; }

/* ── STATS BAR ── */
.stats-bar {
	background: var(--botones-hover);
	padding: 18px 0;
	border-bottom: 2px solid var(--botones);
}
.stat-item { border-left: 2px solid var(--botones); padding-left: 16px; }
.stat-num { font-family: var(--fuente-titulo); font-size: 1.7rem; color: var(--botones); line-height: 1; }
.stat-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); }

/* ── ENCABEZADOS DE SECCIÓN ── */
.sec-eyebrow {
	font-size: .72rem;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: var(--botones);
	font-weight: 600;
}
.sec-title {
	font-family: var(--fuente-serif);
	font-size: clamp(1.7rem, 4vw, 2.5rem);
	color: #fff;
	line-height: 1.2;
}
.sec-title em { color: var(--botones); font-style: italic; }
.sec-divider {
	width: 48px; height: 3px;
	background: linear-gradient(90deg, var(--botones), var(--botones-hover));
	border-radius: 2px;
}

.titulo {
	font-family: var(--fuente-titulo);
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: .5px;
	color: #fff;
}
.linea-color {
	height: 3px;
	width: 48px;
}
.subtitulo { letter-spacing: .1em; color: #e8e0d5; }

/* ── CATEGORÍAS CAROUSEL (inicio) ── */
.bg-claro { background: var(--gris); }

#categorias figure {
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--gris-md);
	border: 1px solid rgba(42,157,111,.15);
}
#categorias figure img { height: 100%; width: 100%; object-fit: cover; }
#categorias .text-center p { color: #e8e0d5; }
#categorias .btn-link { color: var(--botones); }

#categorias .owl-nav button.owl-prev,
#categorias .owl-nav button.owl-next {
	position: absolute;
	top: 46%;
	transform: translateY(-50%);
}
#categorias .owl-nav button.owl-prev { left: -1.8rem; }
#categorias .owl-nav button.owl-next { right: -1.8rem; }









.cat-sidebar {
    background: var(--gris);
    border-radius: 10px;
    border: 1px solid rgba(42, 157, 111, .15);
    overflow: hidden;
    position: sticky;
    top: 80px;
}
.cat-sidebar-header {
    background: var(--botones-hover);
    padding: 15px 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fff;
}
.cat-item.active {
    background: rgba(42, 157, 111, .15);
    color: var(--botones);
    border-left: 3px solid var(--botones);
}
.cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    cursor: pointer;
    transition: background .2s, padding-left .2s;
    font-size: .86rem;
    color: #c8c0b8;
}
.cat-item:hover {
    background: rgba(42, 157, 111, .1);
    padding-left: 28px;
    color: var(--botones);
}

/* ── PRODUCTOS ── */
.product-card {
    background: var(--gris-md);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .07);
    transition: transform .28s, box-shadow .28s, border-color .28s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .4);
    border-color: rgba(42, 157, 111, .35);
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.07);
}
.product-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #141414;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.product-badge.nuevo {
    background: var(--botones);
}
.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .25s, transform .25s;
}
.action-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background: rgba(10, 10, 10, .75);
    color: #e8e0d5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.product-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-cat {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--botones);
    font-weight: 600;
    margin-bottom: 6px;
}
.product-name {
    font-size: .92rem;
    font-weight: 600;
    color: #e8e0d5;
    line-height: 1.35;
    margin-bottom: 10px;
    flex: 1;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.product-price-old {
    font-size: .75rem;
    color: #5a6a7a;
    text-decoration: line-through;
    margin-right: 4px;
}
.product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 1px;
}
.btn-add-cart {
    background: var(--botones-hover);
    border: 1px solid var(--botones-hover);
    border-radius: 6px;
    color: #a8c9e8;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 7px 14px;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.btn-add-cart:hover { background: transparent; border-color: var(--botones-hover); color: #a8c9e8; }

/* Sección destacados (iconos) */
.bg-claro .bg-white {
	background: var(--gris-md) !important;
	border: 1px solid rgba(42,157,111,.12);
}
.bg-claro h2.fs-6 { color: #e8e0d5; }
.bg-claro .text-secondary { color: #8a9aaa !important; }

/* ── OWL CAROUSEL ── */
.owl-dots { text-align: center; }
.owl-dots button.owl-dot {
	height: 8px; width: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,.2) !important;
	margin: 5px 3px;
}
button.owl-dot.active { background: var(--botones) !important; }

#clientes .owl-item figure img {
	width: 190px !important;
	opacity: .35;
	filter: brightness(0) invert(1);
	transition: all .3s ease;
}
#clientes .owl-item figure:hover img { opacity: .75; }

#reviews .owl-stage { margin: 0 auto; }
.review {
	background: var(--gris-md) !important;
	border: 1px solid rgba(255,255,255,.07);
	border-radius: 12px;
}
.review .foto img { width: 55px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; }
.review h6 { color: #e8e0d5; }
.review .text-secondary { color: #8a9aaa !important; }
#reviews .owl-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: .5rem auto 0;
}
#reviews .owl-dots button { height: 8px; width: 8px; border-radius: 50%; background: rgba(255,255,255,.2) !important; margin: 0 3px; }
#reviews .owl-dots button.active { background: var(--botones) !important; }

/* ── CONTACTO ── */
#contacto {
	background: var(--gris);
	padding: 80px 0;
}
.datos-contacto-ini span {
	width: 38px; height: 38px;
	border-radius: 8px;
	background: rgba(42,157,111,.2);
	border: 1px solid rgba(42,157,111,.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--botones);
	font-size: .95rem;
}
.datos-contacto-ini .fw-semibold {
	font-size: .68rem;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--botones);
}
.datos-contacto-ini a { color: #c8d8e8 !important; }
.datos-contacto-ini li { color: #c8d8e8; font-size: .86rem; }

/* Formulario oscuro */
.form-control,
.form-floating .form-control,
textarea.form-control {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.1);
	color: #e8e0d5;
	border-radius: 6px;
}
.form-control:focus, .form-floating .form-control:focus {
	background: rgba(255,255,255,.1);
	border-color: var(--botones);
	color: #fff;
	box-shadow: 0 0 0 3px rgba(42,157,111,.12);
}
.form-control::placeholder { color: #5a6a7a; }
.form-floating label { color: #5a6a7a; font-size: .85rem; }
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label { color: var(--botones); }
.form-floating > .form-control { padding-top: 1.625rem; padding-bottom: .625rem; }
.form-floating > .form-select:focus ~ label,
.form-floating > .form-select:not(:placeholder-shown) ~ label { color: var(--botones); }
.form-floating > .form-select { padding-top: 1.625rem; padding-bottom: .625rem; }
.form-select {
	background-color: rgba(255,255,255,.06);
	border-color: rgba(255,255,255,.12);
	color: #e8e0d5;
}
.form-select option { background: var(--gris-md); color: #e8e0d5; }

/* ── FILTRO PROPIEDADES ── */
.filtro-prop .form-select,
.filtro-prop form .bootstrap-select > .dropdown-toggle {
	background: transparent;
	border-color: rgba(255,255,255,.2);
	border-radius: .375rem;
	color: #c8c0b8;
	padding: .8rem;
}
.filtro-prop .form-select option,
.filtro-prop .bootstrap-select .dropdown-menu li a { color: #e8e0d5; font-size: 14px; text-transform: capitalize !important; }

/* ── INDICADORES (propiedades) ── */
.indicadores .row [class^='col-'] { border-left: 1px solid var(--botones); }

/* ── FOOTER ── */
footer {
	background: #060606;
	border-top: 3px solid var(--botones);
	color: #5a6a7a;
	padding-bottom: 0;
}
footer a { color: #5a6a7a; transition: color .2s, padding-left .2s; }
footer a:hover { color: var(--botones); padding-left: 6px; }
footer .fw-bold { color: var(--botones); font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; }
footer ul.list-unstyled li a { color: #5a6a7a; text-decoration: none; font-size: .83rem; }
footer ul.list-unstyled li a:hover { color: var(--botones); padding-left: 6px; }
footer .fa-ul { color: #5a6a7a; font-size: .81rem; }
footer .text-color3 { color: var(--botones) !important; }
footer .border-top,
footer .border-bottom { border-color: rgba(255,255,255,.06) !important; }
footer .vr { border-color: rgba(255,255,255,.1); }
footer .text-uppercase.fw-bold { color: #c8c0b8; }
footer .text-secondary { color: #3a4a5a !important; }
footer .text-small { color: #3a4a5a; }
footer .text-reset { color: #5a6a7a !important; }
footer .text-reset:hover { color: var(--botones) !important; }
footer a[href*="emagenic"] { color: var(--botones) !important; }

/* Newsletter footer */
.suscribir .form-control { border-radius: 6px 0 0 6px; }
footer .input-group.suscribe { border-radius: 6px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); }
footer .input-group.suscribe .form-control { border-radius: 6px 0 0 6px; padding: .6rem 1rem; border: none; background: transparent; color: #e8e0d5; }
footer .input-group.suscribe .btn { border-radius: 0 6px 6px 0 !important; aspect-ratio: auto; padding: 6px 14px !important; background: var(--botones); border: none; color: #fff; }
footer .input-group.suscribe .btn:hover { background: var(--botones); color: #000; }

/* Social footer */
.social-foot a.btn.btn-link,
.social-foot a.btn-link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 34px; height: 34px;
	border-radius: 8px;
	background: rgba(255,255,255,.07);
	color: #5a6a7a;
	font-size: .9rem;
	text-decoration: none;
	padding: 0;
	transition: background .2s, color .2s;
	margin-right: 4px;
}
.social-foot a.btn.btn-link:hover,
.social-foot a.btn-link:hover { background: var(--botones); color: #fff; padding-left: 0; }

/* Logos medios de pago */
footer img[alt="webpay"],
footer img[alt="redcompra"],
footer img[alt="transferencia"],
footer img[alt="pago seguro ssl"] {
	opacity: .45;
	transition: opacity .2s;
}
footer img[alt="webpay"]:hover,
footer img[alt="redcompra"]:hover,
footer img[alt="transferencia"]:hover,
footer img[alt="pago seguro ssl"]:hover { opacity: .65; }

/* ── LIGHTGALLERY ── */
#lightgallery .img-ppal img { aspect-ratio: 1; object-fit: contain !important; }
#lightgallery .img-otras img { aspect-ratio: 1; object-fit: cover !important; }

/* ── TALLAS / COLORES ── */
.select-color { width: 40px; height: 40px; margin-right: .3rem; margin-bottom: .4rem; position: relative; padding: 0; }
.select-tallas { width: 45px; min-height: 32px; margin-right: .3rem; margin-bottom: .4rem; position: relative; padding: 0; }
.select-color input, .select-tallas input { position: absolute; opacity: 0; cursor: pointer; margin: 0; }
.select-color .cont-color { position: absolute; top: 0; left: 0; height: 40px; width: 40px; padding: 4px; border: 1px solid rgba(255,255,255,.15); background: var(--gris-md); }
.select-tallas .cont-talla { position: absolute; top: 0; left: 0; padding: 4px 0; width: 45px; border: 1px solid rgba(255,255,255,.15); font-size: 14px; background: var(--gris-md); color: #e8e0d5; text-align: center; }
.select-color .cont-color .color { height: 100%; width: 100%; }
.select-color:hover input ~ label .cont-color,
.select-tallas:hover input ~ .cont-talla { border-color: var(--botones); box-shadow: 0 0 0 .15rem rgba(42,157,111,.25); cursor: pointer; }
.select-color input:checked ~ label .cont-color,
.select-tallas input:checked ~ .cont-talla { border-color: var(--botones); box-shadow: 0 0 0 .15rem rgba(42,157,111,.25); }

/* ── NAV PILLS ── */
.nav-pills .nav-item { margin-right: 5px; }
.nav-pills .nav-item .nav-link { background: var(--gris-md); color: var(--botones); padding: .5rem 1rem; border-radius: 5px; font-size: 14px; font-weight: 600; }
.nav-pills .nav-item .nav-link:is(:hover,:focus),
.nav-pills .nav-item .nav-link.active { background: var(--botones); color: #fff; }

/* ── PAGINACIÓN ── */
.pagination { justify-content: center; }
.pagination .page-item .page-link { border-radius: 0; color: #8a9aaa; background: var(--gris-md); border-color: rgba(255,255,255,.1); }
.pagination .page-item.active .page-link { background: var(--botones); border-color: var(--botones); color: #fff; }

/* ── ICONO CONTACTO ── */
.icono-contacto { height: 40px; width: 40px; border-radius: 8px; background: rgba(42,157,111,.2); border: 1px solid rgba(42,157,111,.3); color: var(--botones); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.social-foot-contacto a.btn { height: 32px; width: 32px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(255,255,255,.07); color: #5a6a7a; margin-right: .4rem; margin-bottom: .5rem; }
.social-foot-contacto a.btn:hover { background: var(--botones); color: #fff; }

/* ── QUANTITY ── */
.quantity { position: relative; }
input.error { border-color: #F44336 !important; box-shadow: 0 0 8px rgba(244,67,54,.6) !important; }
.alerta .alert { position: fixed; bottom: 0; width: 100%; border-radius: 0; margin: 0; padding: 25px 15px; border: none; z-index: 9999; text-align: center; }
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; appearance: textfield; }
.quantity input { width: 85%; height: 42px; line-height: 1.65; float: left; display: block; padding: 0 0 0 15px; margin: 0; border: 1px solid rgba(255,255,255,.12); background: var(--gris-md); color: #e8e0d5; }
.quantity input:focus { outline: 0; }
.quantity-nav { float: left; position: relative; height: 42px; }
.quantity-button { position: relative; cursor: pointer; border-left: 1px solid rgba(255,255,255,.12); width: 20px; text-align: center; color: #e8e0d5; font-size: 13px; line-height: 1.7; transform: translateX(-100%); user-select: none; }
.quantity-button.quantity-up { position: absolute; height: 50%; top: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.quantity-button.quantity-down { position: absolute; bottom: -1px; height: 50%; }

/* ── MAPA ── */
.mapa { margin-bottom: -7px; }
.mapa iframe, .mapa-sucursal iframe { width: 100%; }
.mapa-sucursal iframe { height: 300px; }

/* ── NOTICIAS / GALERÍA ── */
.list-noti img { aspect-ratio: 1.3; object-fit: cover; }
.demo-gallery li a img { aspect-ratio: 1; object-fit: cover !important; }
.galerias figure img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: all .2s ease-in; }
.galerias .sobre-texto { position: absolute; bottom: 0; left: 0; right: 0; top: 0; background: linear-gradient(to top, rgba(0,0,0,.8), 10%, rgba(0,0,0,0)); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 1rem; color: #fff; }
.galerias figure:hover img { opacity: .6; }
.galerias .sobre-texto h5 { letter-spacing: 1.5px; }
.galerias-img ul li a img { aspect-ratio: .9; width: 100%; object-fit: cover; }

/* ── FAQ ── */
#preguntas.accordion-flush .accordion-item .accordion-header .accordion-button { border-radius: 10px; border: none; box-shadow: none; }

/* ── USER MENU ── */
.menu-user .nav-link { background: var(--gris-md); color: #c8c0b8; margin-bottom: .5rem; font-size: 15px; border-radius: 10px; }
.menu-user .nav-link i { margin-right: .5rem; }
.menu-user .nav-link:hover { color: var(--botones); }
.menu-user .nav-link.active { color: #fff; background: var(--botones); font-weight: 500; }

/* ── WHATSAPP ── */
.wsp { font-size: 11px; font-weight: 400; font-family: sans-serif; letter-spacing: 0; line-height: 1; padding: 3px 7px; text-transform: none; }
.whatsapp {
	position: fixed;
	z-index: 9999 !important;
	border-radius: 50%;
	width: 62px; height: 62px;
	bottom: 15px; right: 15px;
	background: #25d366;
	padding: 8px 8px 8px 10px;
	animation: 1s infinite alternate shimmy;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}
.whatsapp i { font-size: 42px; color: #fff; }

@keyframes shimmy {
	0%   { transform: translate(0,0); }
	100% { transform: translate(5px,-5px); }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--botones); border-radius: 3px; }

/* ── RESPONSIVE ── */
@media screen and (min-width: 992px) { .buscador { width: 40%; } }

@media screen and (max-width: 992px) {
	.banner-seccion .titulo-slide { font-size: 38px; line-height: 38px; }
	.cards-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 2fr 1fr;
		grid-template-areas: "big big" "small1 small2";
	}
	.card--large { min-height: 350px; }
}

@media screen and (max-width: 991.9px) { .buscador { width: 65%; } }

@media screen and (min-width: 767px) { .titulo { font-size: 2.2rem; } }

@media (max-width: 767.9px) {
	#navbar .navbar-brand img,
	#navbar .navbar-brand #logo { width: 44px !important; height: 44px !important; }
	#navbar.navbar-shrink .navbar-brand img,
	#navbar.navbar-shrink .navbar-brand #logo { width: 38px !important; height: 38px !important; }
	.titulo-slide { font-size: clamp(2.2rem, 9vw, 3.5rem); }
	.titulo { font-size: 1.8rem; }
	.carousel-item { height: 65vh; }
	.banner-seccion .titulo-slide { font-size: 36px; line-height: 36px; }
}

@media (max-width: 600px) {
	.cards-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		grid-template-areas: "big" "small1" "small2";
	}
}

@media (max-width: 576px) {
	#menu-inf { padding-inline: 0; }
	.sticky + .content { padding-top: 55px; }
}

@media (max-width: 499px) {
	#navbar .navbar-brand img,
	#navbar .navbar-brand #logo { width: 40px !important; height: 40px !important; }
	.titulo { font-size: 1.6rem; }
}

/* ── Modal verificación de edad ── */
#age-gate {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0,0,0,.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
#age-gate.ag-hidden { display: none; }

.ag-card {
	background: #0f1f0f;
	border: 1px solid rgba(42,157,111,.3);
	border-radius: 16px;
	max-width: 480px;
	width: 100%;
	padding: 48px 40px 40px;
	text-align: center;
	box-shadow: 0 32px 80px rgba(0,0,0,.7);
	animation: agFadeIn .35s ease;
}
@keyframes agFadeIn {
	from { opacity:0; transform:translateY(20px); }
	to   { opacity:1; transform:translateY(0); }
}
.ag-logo {
	width: 72px; height: 72px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #34c88a;
	margin: 0 auto 24px;
	display: block;
}
.ag-badge {
	display: inline-block;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #34c88a;
	border: 1px solid rgba(42,157,111,.4);
	border-radius: 20px;
	padding: 4px 14px;
	margin-bottom: 20px;
}
.ag-card h2 {
	font-family: 'Bebas Neue', cursive;
	font-size: 2.2rem;
	letter-spacing: 2px;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 14px;
}
.ag-card p {
	font-size: .88rem;
	color: #8a9aaa;
	line-height: 1.65;
	margin-bottom: 32px;
}
.ag-actions { display: flex; flex-direction: column; gap: 12px; }
.ag-btn-confirm {
	background: linear-gradient(135deg, #2a9d6f, #34c88a);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-weight: 700;
	font-size: .92rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 14px 24px;
	cursor: pointer;
	transition: transform .15s, box-shadow .15s;
}
.ag-btn-confirm:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(42,157,111,.4);
}
.ag-btn-deny {
	background: transparent;
	border: 1.5px solid rgba(255,255,255,.15);
	border-radius: 8px;
	color: #5a6a7a;
	font-size: .84rem;
	padding: 12px 24px;
	cursor: pointer;
	transition: border-color .2s, color .2s;
}
.ag-btn-deny:hover { border-color: rgba(255,255,255,.3); color: #8a9aaa; }
.ag-divider {
	width: 40px; height: 2px;
	background: linear-gradient(90deg, #2a9d6f, #1a5fa8);
	border-radius: 1px;
	margin: 0 auto 20px;
}
.ag-legal {
	font-size: .7rem;
	color: #3a4a5a;
	margin-top: 20px;
	margin-bottom: 0;
}

/* Estado rechazado */
.ag-denied { display: none; }
.ag-denied h2 { color: #e85d04; font-size: 1.8rem; }
.ag-denied p  { color: #5a6a7a; }
.ag-denied .ag-icon {
	font-size: 3rem;
	color: #e85d04;
	margin-bottom: 16px;
	display: block;
}
@media (max-width: 480px) {
	.ag-card { padding: 36px 24px 28px; }
	.ag-card h2 { font-size: 1.8rem; }
}
.card-tmpt {
	background:var(--gris-md);border-radius:12px;padding:36px;border:1px solid rgba(255,255,255,.07);
}
.form-floating>.form-control-plaintext~label::after, .form-floating>.form-control:focus~label::after, .form-floating>.form-control:not(:placeholder-shown)~label::after, .form-floating>.form-select~label::after {
    background-color: transparent;
}