/* =====================================================
   PALETA NEGRO + BLANCO â€” ECOMMERCE 2026
   ===================================================== */
:root {
	/* Negros */
	--red-mahogany: #1A1714;
	/* Negro principal */
	--arabian-spice: #2E2A26;
	/* Negro suave */
	--festival-fuchsia: #1A1714;
	/* Negro â€” acento */
	--cocoa-powder: #2E2A26;
	--toffee: #1A1714;
	--poseidon: #1A1714;
	/* Negro */
	--transformative-teal: #2E2A26;

	/* Blancos y tiza */
	--egret: #F5F2ED;
	/* Tiza */
	--cloud-dancer: #F5F2ED;
	/* Fondo principal */
	--acacia: #FFFFFF;
	/* Blanco puro â€” acento sobre oscuros */
	--candied-ginger: #E8E3DE;

	/* Grises */
	--muted-clay: #E8E3DE;
	--foxglove: #D4CFC8;
	--all-aboard: #4A4542;
	--burnt-olive: #6A5E54;
	--green-envy: #7A6A5E;
	--neptune-green: #4A4542;
	/* Gris oscuro â€” badges */
	--underworld: #9A9490;

	/* Variables funcionales */
	--primary: var(--red-mahogany);
	--secondary: var(--arabian-spice);
	--accent: var(--festival-fuchsia);
	--gold: var(--acacia);
	--dark: var(--poseidon);
	--light: var(--egret);
	--text: #1A1714;
	--text-light: #6A5E54;
	--soft-bg: #F9F7F4;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Outfit', sans-serif;
	color: var(--text);
	background: var(--cloud-dancer);
	overflow-x: hidden;
	line-height: 1.7;
	font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Cormorant Garamond', serif;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.5px;
}

/* =====================================================
   PRELOADER PREMIUM
   ===================================================== */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--cloud-dancer);
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.hidden {
	opacity: 0;
	visibility: hidden;
}

.preloader-logo {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	color: var(--primary);
	margin-bottom: 2rem;
	animation: pulse-text 2s infinite;
}

.preloader-bar {
	width: 200px;
	height: 3px;
	background: var(--muted-clay);
	border-radius: 3px;
	overflow: hidden;
	position: relative;
}

.preloader-progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	animation: loading-bar 2s ease-in-out forwards;
}

@keyframes loading-bar {
	0% {
		width: 0%;
	}

	100% {
		width: 100%;
	}
}

@keyframes pulse-text {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.7;
		transform: scale(1.05);
	}
}

/* =====================================================
   NAVBAR PREMIUM
   ===================================================== */
/* =====================================================
   NAVBAR PREMIUM (Actualizado)
   ===================================================== */
.announcement-bar {
	background: var(--primary);
	color: var(--egret);
	padding: 8px 0;
	text-align: center;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	width: 100%;
	z-index: 1040;
}

.navbar {
	background: transparent;
	padding: 0.6rem 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1030;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: absolute;
	width: 100%;
	top: 36px;
}

.navbar.scrolled,
.navbar.menu-open {
	position: fixed;
	background: rgba(255, 255, 255, 0.98)!important;
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 0.8rem 0;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	top: 0;
}

.navbar-brand {
	display: flex;
	align-items: center;
	transition: all 0.3s;
}

.brand-logo {
	height: 110px;
	width: auto;
	transition: all 0.4s ease;
	filter: brightness(0) invert(1);
}

.navbar.scrolled .brand-logo,
.navbar.menu-open .brand-logo {
	height: 80px;
	filter: none;
}

.nav-link {
	font-weight: 500;
	color: #ffffff !important;
	margin: 0 0.2rem;
	padding: 0.5rem 1rem !important;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	text-transform: none;
	border-radius: 50px;
}

.navbar.scrolled .nav-link {
	color: #444 !important;
}

.nav-link:hover {
	color: #e0e0e0 !important;
	background: rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-link:hover {
	color: var(--primary) !important;
	background: rgba(0, 0, 0, 0.05);
}

.nav-link.active {
	color: var(--acacia) !important;
}

/* Dropdown Styles */
.dropdown-menu {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	padding: 1rem 0;
	margin-top: 15px !important;
	animation: fadeInDown 0.3s ease;
}

.dropdown-item {
	padding: 0.7rem 1.5rem;
	font-weight: 500;
	color: #555;
	transition: all 0.2s ease;
}

.dropdown-item:hover {
	background-color: var(--cloud-dancer);
	color: var(--primary);
	padding-left: 1.8rem;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Iconos de AcciÃ³n */
.nav-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 15px;
}

.btn-action {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	color: #ffffff;
	background: transparent;
	transition: all 0.3s ease;
	text-decoration: none;
	position: relative;
}

.navbar.scrolled .btn-action,
.navbar.menu-open .btn-action {
	color: #1A1714 !important;
}

.btn-action:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.navbar.scrolled .btn-action:hover {
	background: rgba(0, 0, 0, 0.05);
}

.btn-action .cart-count {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--primary);
	color: #fff;
	font-size: 0.65rem;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.btn-action i {
	font-size: 1.1rem;
}

/* Hamburger Menu */
.navbar-toggler {
	border: none;
	padding: 0;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler-icon {
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
}

.navbar.scrolled .navbar-toggler-icon,
.navbar.menu-open .navbar-toggler-icon {
	filter: none;
}

@media (max-width: 991px) {
	.brand-logo {
		height: 75px;
	}

	.navbar.scrolled .brand-logo,
	.navbar.menu-open .brand-logo {
		height: 60px;
	}

	.navbar-collapse {
		background: #fff;
		margin: 0;
		padding: 1.5rem;
		border-radius: 0 0 20px 20px;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
		border: none;
	}

	.nav-link {
		color: #444 !important;
		padding: 1rem !important;
		border-radius: 0;
		border-bottom: 1px solid #f8f8f8;
		text-align: center;
	}

	.nav-actions {
		margin-left: 0;
		margin-top: 1.5rem;
		padding-top: 1rem;
		border-top: 1px solid #eee;
		justify-content: center;
	}
}

/* Navbar Dark Mode (Para pÃ¡ginas sin Hero) */
.navbar.navbar-dark-mode {
	background: #ffffff !important;
	position: relative !important;
	top: 0 !important;
	padding: 0.8rem 0 !important;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.navbar.navbar-dark-mode.scrolled {
	position: fixed !important;
	top: 0 !important;
}

.navbar.navbar-dark-mode .nav-link,
.navbar.navbar-dark-mode .navbar-nav .nav-link,
.navbar.navbar-dark-mode .btn-action,
.navbar.navbar-dark-mode .btn-action i {
	color: #1A1714 !important;
}

.navbar.navbar-dark-mode .brand-logo {
	filter: brightness(0) !important;
	height: 80px !important;
}

.navbar.navbar-dark-mode .navbar-toggler {
	border-color: rgba(0,0,0,0.1);
}

.navbar.navbar-dark-mode .navbar-toggler-icon {
	filter: brightness(0) !important;
}

.navbar.navbar-dark-mode .nav-link:hover {
	color: var(--red-mahogany) !important;
}

/* =====================================================
   HERO SLIDER CINEMÃTICO
   ===================================================== */
.hero-section {
	position: relative;
	height: 90vh;
	/* Ajustado a 90vh para mejor impacto visual */
	min-height: 600px;
	overflow: hidden;
}

.carousel-item {
	height: 90vh;
	min-height: 600px;
	background-size: cover;
	background-position: center 66%;
	/* Ajustado para que se vea mejor la cabeza sin pegarla al borde */
	position: relative;
}



.carousel-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom,
			rgba(71, 68, 65, 0.25) 0%,
			rgba(15, 14, 15, 0.253) 50%);
	z-index: 1;
}

/*
.carousel-item::after {
	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='%23ffffff' 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");
	z-index: 2;
}
*/
.carousel-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 900px;
	text-align: center;
	z-index: 10;
	padding: 0 20px;
}

/* Utilidad para alinear a la izquierda (cuando la modelo estÃ¡ a la derecha) */
.carousel-item.caption-left .carousel-caption {
	left: 5%;
	transform: translateY(-50%);
	text-align: left;
	max-width: 650px;
}

.carousel-item.caption-left .carousel-caption p {
	margin-left: 0;
}

@media (max-width: 768px) {
	.carousel-item.caption-left .carousel-caption {
		left: 50%;
		transform: translate(-50%, -50%);
		text-align: center;
		width: 90%;
	}

	.carousel-item.caption-left .carousel-caption p {
		margin-left: auto;
		margin-right: auto;
	}
}

.hero-slide-1 {
	background-image: url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/entro-talles-grandes-banner.jpg');
	background-size: cover;
	background-position: center;
}

.hero-slide-2 {
	background-image: url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/banner-slide-2-talles-grandes.jpg');
	background-size: cover;
	background-position: center;
}

.hero-slide-3 {
	background-image: url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/banner-1-mujer-ropa-talles-grandes.jpg');
	background-size: cover;
	background-position: center 10%;
}

@media (max-width: 768px) {
	.hero-slide-1 {
		background-image: url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/banner-mobile-1.1.jpg');
	}

	.hero-slide-2 {
		background-image: url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/banner-mobile-1.jpg');
	}

	.hero-slide-3 {
		background-image: url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/banner-mobile-3.jpg');
	}
}

.carousel-caption .subtitle {
	font-family: 'Outfit', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--acacia);
	margin-bottom: 1.5rem;
	display: block;
	opacity: 0;
	animation: fadeInUp 1s ease 0.3s forwards;
}

.carousel-caption h1 {
	font-size: 5.5rem;
	font-weight: 300;
	/* MÃ¡s ligero para look editorial */
	color: var(--egret);
	margin-bottom: 2rem;
	line-height: 1;
	opacity: 0;
	animation: fadeInUp 1.2s ease 0.5s forwards;
	text-shadow: 2px 2px 40px rgba(0, 0, 0, 0.3);
	letter-spacing: -1px;
}

.carousel-caption h1 strong {
	font-weight: 700;
	display: block;
}

.carousel-caption h1 em {
	font-style: italic;
	color: var(--acacia);
	font-weight: 400;
}

.carousel-caption p {
	font-size: 1.2rem;
	color: rgba(245, 240, 232, 0.9);
	margin-bottom: 2.5rem;
	font-weight: 300;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
	animation: fadeInUp 1s ease 0.7s forwards;
}

.btn-hero {
	background: var(--acacia);
	color: var(--primary);
	padding: 20px 55px;
	font-size: 0.85rem;
	font-weight: 700;
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	display: inline-block;
	text-decoration: none;
	opacity: 0;
	animation: fadeInUp 1s ease 0.9s forwards;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
	transform: translateY(-5px) scale(1.02);
	border-color: #D4AF37;
	box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
	background: #fff;
	color: var(--primary);
}

.btn-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--acacia);
	transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.btn-hero:hover::before {
	left: 0;
}

.btn-hero:hover {
	color: var(--poseidon);
	transform: translateY(-3px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: var(--acacia);
}

.carousel-indicators button {
	width: 40px !important;
	height: 3px !important;
	border-radius: 2px !important;
	background: rgba(245, 240, 232, 0.3) !important;
	border: none !important;
	margin: 0 5px !important;
	transition: all 0.3s;
}

.carousel-indicators button.active {
	background: var(--acacia) !important;
	width: 60px !important;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* =====================================================
   SECCIÃ“N BIENVENIDA - EDITORIAL
   ===================================================== */
.welcome-section {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/quienessomos1-1.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 140px 0;
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
}

.welcome-glass-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 60px;
	border-radius: 40px;
	position: relative;
	z-index: 2;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.welcome-glass-card::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	border-radius: 40px;
	z-index: -1;
	opacity: 0.5;
}

.welcome-section .section-title,
.welcome-section .section-label,
.welcome-section p,
.welcome-section strong {
	color: #ffffff !important;
}

.welcome-section .section-title::after {
	background: var(--acacia) !important;
	width: 80px;
}

.welcome-section::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(26, 23, 20, 0.08) 0%, transparent 70%);
	border-radius: 50%;
}

.welcome-section::after {
	content: '';
	position: absolute;
	bottom: -100px;
	left: -50px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
	border-radius: 50%;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-label {
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--underworld);
	margin-bottom: 1rem;
	display: block;
}

.section-title {
	font-size: 3.5rem;
	color: var(--primary);
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #1A1714;
	border-radius: 2px;
}

.welcome-image-wrapper {
	position: relative;
	display: inline-block;
}

.welcome-image {
	border-radius: 4px;
	/* Menos redondeado para look premium */
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	z-index: 2;
}

.welcome-image:hover {
	transform: translateY(-10px) rotate(1deg);
	box-shadow: 0 40px 80px rgba(26, 23, 20, 0.3);
}

.image-frame {
	position: absolute;
	top: 30px;
	left: 30px;
	right: -30px;
	bottom: -30px;
	border: 3px solid #1A1714;
	border-radius: 20px;
	z-index: 1;
	transition: all 0.5s ease;
}

.welcome-image-wrapper:hover .image-frame {
	top: 20px;
	left: 20px;
	right: -20px;
	bottom: -20px;
}

.experience-badge {
	position: absolute;
	bottom: -30px;
	right: -20px;
	background: var(--primary);
	color: var(--egret);
	padding: 25px 35px;
	border-radius: 20px;
	text-align: center;
	z-index: 3;
	box-shadow: 0 15px 40px rgba(26, 23, 20, 0.4);
	transform: rotate(-3deg);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-badge:hover {
	transform: rotate(0deg) scale(1.05);
}

.experience-badge .number {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
	display: block;
}

.experience-badge .text {
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: rgba(245, 240, 232, 0.5);
	border-radius: 15px;
	transition: all 0.4s ease;
	border: 1px solid transparent;
}

.feature-item:hover {
	background: #fff;
	border-color: var(--muted-clay);
	transform: translateX(10px);
	box-shadow: 0 10px 30px rgba(26, 23, 20, 0.1);
}

.feature-icon {
	width: 50px;
	height: 50px;
	background: var(--primary);
	color: var(--egret);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-right: 1.5rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
	background: var(--accent);
	transform: rotate(10deg);
}

.feature-content h5 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: var(--primary);
}

.feature-content p {
	color: var(--text-light);
	font-size: 0.9rem;
	margin: 0;
}

/* =====================================================
   CATEGORÃAS VISUALES - MINIMALIST
   ===================================================== */
.categories-section {
	padding: 80px 0;
	background: #fff;
}

.category-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	height: 400px;
	margin-bottom: 30px;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.category-card:hover img {
	transform: scale(1.1);
}

.category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 40px;
	transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 80%);
}

.category-content {
	text-align: center;
	transform: translateY(10px);
	transition: all 0.4s ease;
}

.category-card:hover .category-content {
	transform: translateY(0);
}

.category-content h3 {
	color: #fff;
	font-size: 2rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.category-content span {
	color: var(--acacia);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.8rem;
	font-weight: 700;
}

.cta-shop-section {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/talles-grandes-seccion4.jpeg') no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.cta-shop-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
	opacity: 0.15;
}

.cta-content {
	position: relative;
	z-index: 1;
}

.cta-title {
	font-size: 3.5rem;
	color: var(--egret);
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.cta-title em {
	font-style: italic;
	color: var(--acacia);
	font-weight: 400;
}

.cta-text {
	font-size: 1.2rem;
	color: rgba(245, 240, 232, 0.85);
	margin-bottom: 2.5rem;
	font-weight: 300;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.btn-cta-shop {
	background: transparent;
	color: var(--egret);
	border: 2px solid var(--egret);
	padding: 18px 45px;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 3px;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	display: inline-block;
	text-decoration: none;
	margin: 0 10px;
}

.btn-cta-shop::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--egret);
	transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.btn-cta-shop:hover::before {
	left: 0;
}

.btn-cta-shop:hover {
	color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-features {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.cta-feature {
	text-align: center;
	color: var(--egret);
}

.cta-feature i {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	display: block;
	color: var(--acacia);
}

.cta-feature span {
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* =====================================================
   PRODUCTOS EN OFERTA - GALERÃA PREMIUM
   ===================================================== */
.products-section {
	padding: 80px 0;
	background: var(--cloud-dancer);
	position: relative;
}

.product-card {
	border: none;
	border-radius: 0;
	overflow: hidden;
	background: #fff;
	transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	height: 100%;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.product-image-wrapper {
	position: relative;
	height: 420px;
	overflow: hidden;
	background: #f9f9f9;
}

.product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(0px);
	opacity: 0;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.product-card:hover .product-overlay {
	opacity: 1;
	backdrop-filter: blur(4px);
}

.btn-action-card {
	width: 50px;
	height: 50px;
	background: #fff;
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	border: none;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transform: translateY(20px);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
}

.product-card:hover .btn-action-card {
	transform: translateY(0);
}

.btn-action-card:hover {
	background: var(--primary);
	color: #fff;
}

.product-body {
	padding: 25px 15px;
	/* AÃ±adimos padding lateral para el botÃ³n */
	text-align: center;
}

.product-category {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--underworld);
	margin-bottom: 8px;
}

.product-title {
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	color: var(--primary);
	margin-bottom: 5px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.product-price {
	font-size: 1.2rem;
	color: var(--primary);
	font-weight: 700;
	font-family: 'Cormorant Garamond', serif;
}

.product-price .old-price {
	font-size: 0.9rem;
	color: var(--underworld);
	text-decoration: line-through;
	margin-left: 8px;
	font-weight: 400;
}

.badge-offer {
	position: absolute;
	top: 20px;
	right: 20px;
	background: #e63946;
	color: #fff;
	padding: 10px 20px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.85rem;
	z-index: 2;
	box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
	animation: pulse-badge 2s infinite;
}

.trend-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--primary);
	color: #fff;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	z-index: 2;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge-free-shipping {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--neptune-green);
	color: #fff;
	padding: 8px 16px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.8rem;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 5px 15px rgba(127, 191, 181, 0.4);
}

@keyframes pulse-badge {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 5px 20px rgba(26, 23, 20, 0.4);
	}

	50% {
		transform: scale(1.05);
		box-shadow: 0 8px 25px rgba(26, 23, 20, 0.6);
	}
}

.product-body {
	padding: 30px;
}

.product-category {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 0.5rem;
}

.product-title {
	font-size: 1.3rem;
	color: var(--primary);
	margin-bottom: 10px;
	font-weight: 600;
}

.product-price {
	font-size: 1.6rem;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 15px;
	font-family: 'Cormorant Garamond', serif;
}

.product-price .old-price {
	font-size: 1.1rem;
	color: var(--underworld);
	text-decoration: line-through;
	margin-left: 10px;
	font-weight: 400;
}

.product-meta {
	color: var(--text-light);
	font-size: 0.85rem;
	margin-bottom: 20px;
}

.btn-add-cart, .single_add_to_cart_button {
	width: 100%;
	background: var(--primary);
	color: var(--egret);
	border: none;
	padding: 15px;
	border-radius: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.btn-add-cart::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--arabian-spice);
	transition: left 0.4s ease;
	z-index: 0;
}

.btn-add-cart:hover::before {
	left: 0;
}

.btn-add-cart span {
	position: relative;
	z-index: 1;
}

.btn-add-cart:hover {
	transform: translateY(-2px);
	border-color: #D4AF37;
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* SHORTCODE REFERENCE */
.shortcode-ref {
	background: linear-gradient(135deg, var(--egret) 0%, #fff 100%);
	border-left: 4px solid var(--acacia);
	padding: 25px;
	margin-top: 20px;
	border-radius: 0 16px 16px 0;
	font-family: 'Courier New', monospace;
	font-size: 0.9rem;
	color: var(--poseidon);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.shortcode-ref strong {
	color: var(--primary);
}

/* =====================================================
   FORMULARIO DE CONTACTO PREMIUM
   ===================================================== */
.contact-section {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/bannercontacto.png');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.contact-form-container {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	padding: 60px;
	border-radius: 40px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
	transition: all 0.5s;
}

.contact-form-container:hover {
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.contact-form-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	opacity: 0.8;
}

.contact-section .section-title,
.contact-section .section-label,
.contact-section p,
.contact-section strong {
	color: #ffffff !important;
}

.contact-section .section-title::after {
	background: var(--acacia) !important;
	width: 80px;
}

.form-control {
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 18px 24px;
	font-size: 0.95rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font-weight: 300;
}

.form-control option {
	background: #fff;
	color: #1A1714;
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
	border-color: var(--acacia);
	box-shadow: 0 0 0 1px var(--acacia);
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
	color: #fff;
}

.form-label {
	font-family: 'Outfit', sans-serif;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 12px;
	font-size: 0.8rem;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.btn-submit {
	background: var(--acacia);
	color: var(--primary);
	border: none;
	padding: 22px 50px;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 3px;
	width: 100%;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	background: #fff;
	color: var(--primary);
}

.btn-submit:active {
	transform: translateY(-1px);
}

/* =====================================================
   BOTONES FLOTANTES
   ===================================================== */
.floating-btn {
	position: fixed;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.6rem;
	cursor: pointer;
	z-index: 1000;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	border: none;
}

.floating-btn:hover {
	transform: scale(1.1) rotate(5deg);
	color: #fff;
}

.btn-whatsapp {
	bottom: 30px;
	right: 30px;
	background: #25D366;
	animation: pulse-shadow-whatsapp 2.5s infinite;
}

@keyframes pulse-shadow-whatsapp {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}

	70% {
		box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

.btn-to-top {
	bottom: 30px;
	left: 30px;
	background: var(--primary);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s;
}

.btn-to-top.show {
	opacity: 1;
	visibility: visible;
}

/* =====================================================
   FOOTER PREMIUM
   ===================================================== */
.footer {
	background: #000000;
	color: var(--egret);
	padding: 80px 0 40px;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--accent), var(--acacia));
}

.footer-brand {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--acacia);
	margin-bottom: 20px;
}

.footer-text {
	color: #E8E8E8;
	line-height: 1.8;
	margin-bottom: 2rem;
	font-weight: 300;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(245, 240, 232, 0.1);
	border-radius: 50%;
	color: var(--egret);
	margin: 0 8px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	font-size: 1.2rem;
}

.social-links a:hover {
	background: var(--acacia);
	color: var(--poseidon);
	transform: translateY(-5px) rotate(10deg);
}

.footer h5 {
	color: var(--acacia);
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: #E8E8E8;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-block;
	font-weight: 300;
}

.footer-links a:hover {
	color: var(--acacia);
	transform: translateX(5px);
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	color: #E8E8E8;
	font-weight: 300;
}

.footer-contact i {
	color: var(--acacia);
	margin-right: 12px;
	margin-top: 5px;
	width: 20px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	margin-top: 4rem;
	padding-top: 2rem;
}

@media (max-width: 991px) {
	.footer {
		text-align: center;
	}

	.footer-contact li {
		justify-content: center;
		text-align: left;
	}

	.footer-brand img {
		margin: 0 auto 25px;
	}
}

.payment-methods {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
	opacity: 0.5;
	filter: grayscale(1);
	transition: all 0.3s;
}

.payment-methods:hover {
	opacity: 0.8;
	filter: grayscale(0.5);
}

.payment-methods i {
	font-size: 1.5rem;
}

/* =====================================================
   ANIMACIONES ADICIONALES
   ===================================================== */
.parallax-bg {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.text-gradient {
	background: linear-gradient(135deg, var(--primary), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--cloud-dancer);
}

::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--arabian-spice);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
.navbar>.container {
	position: relative;
	justify-content: center;
}

.navbar-brand {
	margin: 0 auto !important;
	padding: 10px 0;
}

.brand-logo {
	height: 100px !important;
	/* Reducido de 160px para estilizar */
}

.navbar.scrolled .brand-logo {
	height: 75px !important;
}

.navbar-toggler {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}

.carousel-caption h1 {
	font-size: 3rem;
}

.section-title {
	font-size: 2.5rem;
}

.cta-title {
	font-size: 2.5rem;
}

.contact-form-container {
	padding: 40px;
}

.experience-badge {
	position: relative;
	bottom: auto;
	right: auto;
	margin-top: 20px;
}


@media (max-width: 768px) {
	.carousel-caption h1 {
		font-size: 2.2rem;
	}

	.carousel-caption p {
		font-size: 1rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.cta-title {
		font-size: 2rem;
	}

	.contact-form-container {
		padding: 30px;
	}

	.experience-badge .number {
		font-size: 2.5rem;
	}

	.btn-hero,
	.btn-cta-shop {
		padding: 15px 30px;
		font-size: 0.8rem;
	}

	.floating-btn {
		width: 55px;
		height: 55px;
		font-size: 1.3rem;
	}
}

/* =====================================================
   BOTÃ“N NEGRO SOBRE FONDO CLARO
   ===================================================== */
.btn-dark-solid {
	background: #1A1714;
	color: #F5F2ED;
	border: 2px solid #1A1714;
	padding: 18px 50px;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 3px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-block;
	text-decoration: none;
}

.btn-dark-solid:hover {
	background: transparent;
	color: #1A1714;
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* =====================================================
   CARRUSEL ÃšLTIMAS TENDENCIAS
   ===================================================== */
.trends-section {
	padding: 80px 0;
	background: #ffffff;
	overflow: hidden;
}

.btn-grid-cart,.add-to-cart-container a{
	width: 100%;
	background: var(--primary);
	color: #fff;
	border: none;
	padding: 13px;
	margin-top: 15px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	overflow: hidden;
	border-radius: unset;
}

.btn-grid-cart:hover {
	background: #000;
	letter-spacing: 3px;
	transform: scale(1.02);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	color: #fff;
}

.product-card:hover .btn-grid-cart {
	background: #222;
}

.trends-carousel-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 10px;
	cursor: grab;
}

.trends-carousel-track::-webkit-scrollbar {
	display: none;
}

.trends-carousel-track.dragging {
	cursor: grabbing;
	scroll-snap-type: none;
}

.trend-item {
	flex: 0 0 calc(25% - 15px);
	scroll-snap-align: start;
	min-width: 0;
}

.trend-card {
	border-radius: 16px;
	overflow: hidden;
	background: var(--cloud-dancer);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.trend-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trend-image-wrapper {
	position: relative;
	height: 340px;
	overflow: hidden;
}

.trend-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.trend-card:hover .trend-image {
	transform: scale(1.05);
}

.trend-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #1A1714;
	color: #fff;
	padding: 5px 14px;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	z-index: 2;
}

.trend-body {
	padding: 20px 22px 24px;
}

.trend-category {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: 6px;
}

.trend-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.4rem;
	color: var(--text);
	margin-bottom: 8px;
	font-weight: 600;
	line-height: 1.3;
}

.trend-price {
	font-size: 1.05rem;
	color: var(--text);
	font-weight: 700;
}

.carousel-nav-btn {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 2px solid #1A1714;
	background: transparent;
	color: #1A1714;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.9rem;
}

.carousel-nav-btn:hover {
	background: #1A1714;
	color: #fff;
}

@media (max-width: 991px) {
	.trend-item {
		flex: 0 0 calc(50% - 10px);
	}
}

/* =====================================================
   TRUST SIGNALS
   ===================================================== */
.trust-section {
	padding: 80px 0;
	background: var(--soft-bg);
	border-top: 1px solid rgba(0, 0, 0, 0.03);
	border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.trust-item {
	text-align: center;
	padding: 20px;
}

.trust-icon {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 15px;
	opacity: 0.8;
}

.trust-title {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	color: var(--primary);
}

.trust-text {
	font-size: 0.85rem;
	color: var(--text-light);
	margin: 0;
}

/* =====================================================
   PÁGINAS INTERNAS - HERO Y TABLAS
   ===================================================== */
.page-hero {
	height: 45vh;
	min-height: 350px;
	background: linear-gradient(rgba(26, 23, 20, 0.7), rgba(26, 23, 20, 0.7)), url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/banner-1-mujer-ropa-talles-grandes.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	margin-bottom: 80px;
	position: relative;
}

.page-hero h1 {
	font-size: 4rem;
	margin-bottom: 0;
	color: var(--egret);
}

.page-hero .subtitle {
	font-family: 'Outfit', sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--acacia);
	margin-bottom: 1rem;
	display: block;
}

/* Tabla de Talles Premium */
.table-container {
	background: #fff;
	padding: 40px;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.05);
	margin-bottom: 40px;
	overflow-x: auto;
}

.size-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}

.size-table th {
	background: var(--primary);
	color: var(--egret);
	padding: 20px;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.85rem;
	text-align: center;
	border: none;
}

.size-table th:first-child { border-radius: 12px 0 0 12px; }
.size-table th:last-child { border-radius: 0 12px 12px 0; }

.size-table td {
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid var(--muted-clay);
	color: var(--text);
	font-weight: 400;
	background: #fff;
}

.size-table tr:last-child td {
	border-bottom: none;
}

.size-table tr:hover td {
	background: var(--soft-bg);
}

/* Alert Minimalista */
.alert-minimalist {
	background: var(--soft-bg);
	border-left: 4px solid var(--primary);
	padding: 20px 30px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 15px;
	color: var(--text-light);
	font-size: 0.95rem;
}

.alert-minimalist i {
	color: var(--primary);
	font-size: 1.2rem;
}

/* Guía de Medidas */
.measure-guide {
	padding: 100px 0;
	background: var(--cloud-dancer);
}

.measure-step {
	background: #fff;
	padding: 40px;
	border-radius: 24px;
	height: 100%;
	transition: all 0.4s ease;
	text-align: center;
	border: 1px solid rgba(0,0,0,0.03);
}

.measure-step:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.step-icon {
	width: 70px;
	height: 70px;
	background: var(--primary);
	color: var(--egret);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin: 0 auto 25px;
}

.measure-step h4 {
	margin-bottom: 15px;
	color: var(--primary);
}

.measure-step p {
	color: var(--text-light);
	font-size: 0.9rem;
	line-height: 1.6;
}

/* Promo Section */
.promo-section {
	padding: 120px 0;
	background: #fff;
}

.promo-content {
	padding-right: 50px;
}

.promo-content .section-title,
.promo-content .section-label {
	text-align: left;
}

.promo-content .section-title::after {
	left: 0;
	transform: none;
}

.promo-image {
	width: 100%;
	border-radius: 24px;
	box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.btn-promo {
	background: var(--primary);
	color: #fff;
	padding: 18px 45px;
	border-radius: 50px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 0.85rem;
	transition: all 0.4s;
	display: inline-block;
	text-decoration: none;
	margin-top: 20px;
}

.btn-promo:hover {
	background: #000;
	color: #fff;
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
	.page-hero h1 { font-size: 2.8rem; }
	.promo-content { padding-right: 0; margin-bottom: 40px; text-align: center; }
	.promo-content .section-title, .promo-content .section-label { text-align: center !important; }
}

/* =====================================================
   TIENDA - SHOP STYLES
   ===================================================== */
.shop-hero {
	background: linear-gradient(rgba(26, 23, 20, 0.75), rgba(26, 23, 20, 0.6)), url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/entro-talles-grandes-banner.jpg');
	background-size: cover;
	background-position: center 30%;
}

.breadcrumb-custom {
	margin-bottom: 25px;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-custom a {
	color: var(--acacia);
	text-decoration: none;
	transition: color 0.3s;
}

.breadcrumb-custom a:hover {
	color: #fff;
}

.sidebar-title {
	font-family: 'Outfit', sans-serif;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 700;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
}

.sidebar-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--primary);
}

.filter-list {
	list-style: none;
	padding: 0;
}

.filter-list li {
	margin-bottom: 12px;
}

.filter-list li a {
	color: var(--text-light);
	text-decoration: none;
	font-size: 0.95rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	padding: 5px 0;
}

.filter-list li a:hover {
	color: var(--primary);
	padding-left: 8px;
}

.filter-count {
	font-size: 0.8rem;
	opacity: 0.6;
	font-weight: 400;
}

.shop-toolbar {
	background: #fff;
	padding: 15px 25px;
	border-radius: 50px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.03);
	border: 1px solid rgba(0,0,0,0.05);
}

.shop-toolbar select.form-select {
	border: none;
	background-color: transparent;
	font-size: 0.85rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	color: var(--primary);
	padding-right: 35px;
}

.shop-toolbar select.form-select:focus {
	box-shadow: none;
}

@media (max-width: 991px) {
	.shop-toolbar {
		border-radius: 15px;
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	.shop-toolbar select.form-select {
		width: 100% !important;
	}
}

/* =====================================================
   FICHA PRODUCTO - DETAIL PAGE STYLES
   ===================================================== */
.product-page-section {
	padding: 80px 0 80px;
	background: #fff;
}

.product-gallery {
	position: sticky;
	top: 120px;
}

.main-image-container {
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
	background: var(--soft-bg);
	aspect-ratio: 4/5;
}

.main-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.thumbnail-list {
	display: flex;
	gap: 15px;
	justify-content: center;
}

.thumb-item {
	width: 80px;
	height: 100px;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	opacity: 0.6;
}

.thumb-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumb-item:hover, .thumb-item.active {
	opacity: 1;
	border-color: var(--primary);
	transform: translateY(-5px);
}

.product-info-wrapper {
	padding-left: 20px;
}

.product-title-main {
	font-size: 3rem;
	margin-bottom: 15px;
	color: var(--primary);
}

.product-price-main {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.product-price-main .old-price {
	font-size: 1.2rem;
	color: var(--underworld);
	text-decoration: line-through;
	font-weight: 400;
}

.product-short-desc {
	color: var(--text-light);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 35px;
}

.selector-label {
	display: block;
	font-family: 'Outfit', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--underworld);
	margin-bottom: 15px;
}

.size-options {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.size-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid var(--muted-clay);
	background: #fff;
	color: var(--primary);
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.size-btn:hover {
	border-color: var(--primary);
	background: var(--cloud-dancer);
}

.size-btn.active {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.color-options {
	display: flex;
	gap: 15px;
}

.color-dot {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	cursor: pointer;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px var(--muted-clay);
	transition: all 0.3s ease;
	position: relative;
}

.color-dot:hover {
	transform: scale(1.2);
}

.color-dot.active {
	box-shadow: 0 0 0 2px var(--primary);
}

.actions-wrapper {
	display: flex;
	gap: 15px;
	margin-bottom: 50px;
}

.actions-wrapper .btn-add-cart {
	flex: 1;
	font-size: 1rem;
	font-weight: 700;
	padding: 22px;
	border-radius: 8px;
	letter-spacing: 2px;
	background: #1A1714;
	color: #fff;
	border: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.actions-wrapper .btn-add-cart:hover {
	background: #333 !important;
	color: #fff !important;
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.actions-wrapper .btn-add-cart:active,
.actions-wrapper .btn-add-cart:focus {
	background: #000 !important;
	color: #fff !important;
	transform: translateY(0);
	box-shadow: none !important;
	outline: none !important;
}

.btn-whatsapp-direct {
	width: 65px;
	height: 65px;
	background: #25D366;
	color: #fff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-whatsapp-direct:hover {
	transform: scale(1.1) rotate(10deg);
	color: #fff;
	box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Tabs Custom */
.nav-tabs-custom {
	border-bottom: 1px solid var(--muted-clay);
	gap: 30px;
}

.nav-tabs-custom .nav-link {
	border: none;
	background: none;
	padding: 15px 0;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.8rem;
	color: var(--underworld);
	position: relative;
	transition: all 0.3s;
}

.nav-tabs-custom .nav-link:hover {
	color: var(--primary);
}

.nav-tabs-custom .nav-link.active {
	color: var(--primary);
	background: none;
}

.nav-tabs-custom .nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary);
}

.tab-content-custom {
	padding: 30px 0;
	color: var(--text);
	font-size: 0.95rem;
	line-height: 1.8;
}

.measurements-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 300px;
}

.measurements-table th {
	text-align: left;
	padding: 12px 15px;
	background: var(--cloud-dancer);
	border-radius: 8px;
	color: var(--primary);
	font-weight: 700;
}

.measurements-table td {
	padding: 12px 15px;
	border-bottom: 1px solid var(--muted-clay);
}

/* Alerta Envío Minimalista */
.alert-shipping {
	background: #fffcf0;
	border: 1px solid #ffeeba;
	padding: 15px 20px;
	border-radius: 12px;
	color: #856404;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.alert-shipping strong {
	color: #856404;
	margin: 0 4px;
}

/* Guía de Medidas Ficha */
.product-measurements-guide {
	margin-top: 30px;
}

.guide-title {
	font-family: 'Outfit', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--primary);
	margin-bottom: 20px;
}

.table-minimalist {
	width: 100%;
	border-collapse: collapse;
}

.table-minimalist th {
	text-align: left;
	padding: 15px 10px;
	font-family: 'Outfit', sans-serif;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--underworld);
	border-bottom: 1px solid var(--muted-clay);
}

.table-minimalist td {
	padding: 15px 10px;
	font-size: 0.9rem;
	color: var(--text);
	border-bottom: 1px solid rgba(0,0,0,0.03);
}

.alert-shipping i {
	color: #A67C00;
	font-size: 1.1rem;
}

/* Detalles Expandidos */
.editorial-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.8rem;
	color: var(--primary);
	font-weight: 400;
}

.editorial-text {
	color: var(--text);
	line-height: 1.8;
	font-size: 1.05rem;
}

.editorial-text ul {
	padding-left: 20px;
	list-style: none;
}

.editorial-text ul li {
	position: relative;
	margin-bottom: 12px;
	padding-left: 25px;
}

.editorial-text ul li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-size: 1.5rem;
	line-height: 1;
}

@media (max-width: 991px) {
	.product-page-section { padding: 100px 0 60px; }
	.product-info-wrapper { padding-left: 0; margin-top: 30px; }
	.product-title-main { font-size: 2.2rem; }
	.main-image-container { aspect-ratio: 1/1; }
	.editorial-title { font-size: 2rem; }
}

/* =====================================================
   CONTACTO - CONTACT PAGE STYLES (V2)
   ===================================================== */
.contact-section-wrapper {
	background: #faf7f2;
	overflow: hidden;
	z-index: 1;
}

.contact-watermark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20rem;
	font-weight: 900;
	color: rgba(0,0,0,0.02);
	z-index: 0;
	pointer-events: none;
	font-family: 'Outfit', sans-serif;
	letter-spacing: 20px;
}

.contact-card-v2 {
	background: #fff;
	padding: 60px;
	border-radius: 40px;
	box-shadow: 0 40px 100px rgba(0,0,0,0.06);
	z-index: 1;
	position: relative;
}

.contact-hero-bg {
	background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/contacto-tallesgrandes.jpg');
	background-size: cover;
	background-position: center;
	min-height: 500px;
	display: flex;
	align-items: flex-start;
	padding-top: 110px;
	padding-bottom: 50px;
}

.map-section {
	filter: grayscale(1) contrast(1.2) invert(0.05);
	opacity: 0.9;
	transition: all 0.5s ease;
}

.map-section:hover {
	filter: grayscale(0.5);
	opacity: 1;
}

.icon-circle-black {
	width: 60px;
	height: 60px;
	background: #1A1714;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.info-label {
	display: block;
	font-family: 'Outfit', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: #1A1714;
	margin-bottom: 5px;
}

.info-text {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Form V2 */
.form-group-v2 {
	margin-bottom: 5px;
}

.form-group-v2 label {
	display: block;
	font-family: 'Outfit', sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: #444;
	margin-bottom: 10px;
}

.form-control-v2 {
	background: #F8F9FA;
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 15px 20px;
	font-size: 0.9rem;
	color: var(--primary);
	transition: all 0.3s;
	width: 100%;
}

.form-control-v2:focus {
	background: #fff;
	border-color: var(--primary);
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	outline: none;
}

.btn-enviar-consulta {
	background: #1A1714;
	color: #fff;
	border: none;
	padding: 20px;
	border-radius: 50px;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 0.9rem;
	transition: all 0.4s;
	margin-top: 20px;
}

.btn-enviar-consulta:hover {
	background: #333;
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
	.contact-watermark { font-size: 10rem; }
	.contact-card-v2 { padding: 40px 25px; }
}

/* =====================================================
   SOBRE NOSOTRAS - ABOUT PAGE STYLES
   ===================================================== */
.about-hero-bg {
	background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://ropatallesgrandes.com/wp-content/themes/bootscore-child/images/acercadenosotrosweb.jpg');
	background-size: cover;
	background-position: center;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-section {
	padding: 100px 0;
	overflow: hidden;
}

.editorial-text-block {
	padding: 40px;
}

.editorial-img-wrapper {
	position: relative;
	padding: 20px;
}

.editorial-img-wrapper img {
	width: 100%;
	height: 600px;
	object-fit: cover;
	border-radius: 40px;
	box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.editorial-img-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid var(--muted-clay);
	border-radius: 40px;
	z-index: -1;
	transform: translate(20px, 20px);
}

.section-tag {
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 4px;
	color: var(--underworld);
	text-transform: uppercase;
	display: block;
	margin-bottom: 20px;
}

.editorial-h2 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3.5rem;
	color: var(--primary);
	line-height: 1.1;
	margin-bottom: 30px;
}

.editorial-p {
	font-size: 1.1rem;
	line-height: 1.9;
	color: var(--text-light);
	margin-bottom: 25px;
}

.cta-box {
	background: #faf7f2;
	padding: 100px 0;
	text-align: center;
	margin-top: 50px;
}

.btn-premium-outline {
	display: inline-block;
	padding: 18px 45px;
	border: 1px solid var(--primary);
	color: var(--primary);
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-decoration: none;
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.btn-premium-outline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--primary);
	transition: all 0.4s ease;
	z-index: -1;
}

.btn-premium-outline:hover {
	color: #fff;
}

.btn-premium-outline:hover::before {
	width: 100%;
}

@media (max-width: 991px) {
	.editorial-h2 { font-size: 2.5rem; }
	.editorial-img-wrapper img { height: 400px; }
}

