/**
 * home.css — Estilos del home Royal Chic Lingerie
 * Secciones 1-6: Ann Bar, Hero, Trust, Categories, Urgency, Products
 */

/* ── Utilidades compartidas ── */
.rc-eyebrow {
	display: block;
	font-size: var(--rc-fs-btn);
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--rc-gold);
}
.rc-sec-header {
	margin-bottom: 40px;
}
.rc-sec-header--center {
	text-align: center;
}
.rc-sec-title {
	font-family: "Playfair Display", serif;
	font-size: 34px;
	font-weight: 400;
	color: var(--rc-ink);
	margin-top: 10px;
}
.rc-sec-line {
	width: 40px;
	height: 1px;
	background: var(--rc-gold);
	margin: 14px auto 0;
}
.rc-btn-dark {
	display: inline-block;
	background: var(--rc-ink);
	color: var(--rc-gold-lt);
	padding: 14px 32px;
	font-size: var(--rc-fs-btn);
	letter-spacing: 3px;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: background 0.25s;
	text-decoration: none;
	font-family: "Inter", sans-serif;
}
.rc-btn-dark:hover {
	background: var(--rc-gold);
	color: #fff;
}

/* ════════════════════════════════════════
   1. ANNOUNCEMENT BAR
   (estilos movidos a royal-chic.css para
    que apliquen también en single-product)
════════════════════════════════════════ */

/* ════════════════════════════════════════
   2. HERO
════════════════════════════════════════ */
.rc-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
	background: var(--rc-cream);
	overflow: hidden;
}
.rc-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 64px;
}
.rc-hero__eyebrow {
	margin-bottom: 18px;
}
.rc-hero__title {
	font-family: "Playfair Display", serif;
	font-size: 54px;
	line-height: 1.08;
	font-weight: 400;
	color: var(--rc-ink);
	margin-bottom: 22px;
}
.rc-hero__title em {
	font-style: italic;
	color: var(--rc-gold);
}
.rc-hero__desc {
	font-size: 14px;
	line-height: 1.85;
	color: var(--rc-muted);
	max-width: 360px;
	margin-bottom: 36px;
}
.rc-hero__actions {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
}
.rc-hero__ghost {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--rc-ink);
	border-bottom: 1px solid var(--rc-ink);
	padding-bottom: 2px;
	cursor: pointer;
	text-decoration: none;
	transition:
		color 0.2s,
		border-color 0.2s;
}
.rc-hero__ghost:hover {
	color: var(--rc-gold);
	border-color: var(--rc-gold);
}
.rc-hero__media {
	display: block;
	position: relative;
	overflow: hidden;
	min-height: 560px;
	background: var(--rc-cream-dk);
	text-decoration: none;
}
.rc-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	position: absolute;
	inset: 0;
}
.rc-hero__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, #eae4da, #d8cebf);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 28px;
	position: absolute;
	inset: 0;
}
.rc-hero__img-tag {
	background: var(--rc-ink);
	color: var(--rc-gold-lt);
	font-size: var(--rc-fs-tag);
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 8px 20px;
}
.rc-hero__badge {
	position: absolute;
	top: 28px;
	right: 28px;
	background: var(--rc-gold);
	color: #fff;
	font-size: 8px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 8px 14px;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	z-index: 2;
}

/* ════════════════════════════════════════
   3. TRUST BAR
════════════════════════════════════════ */
.rc-trust {
	background: var(--rc-ink);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.rc-trust__item {
	padding: 26px 24px;
	display: flex;
	align-items: center;
	gap: 14px;
	justify-content: center;
}
.rc-trust__item + .rc-trust__item {
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.rc-trust__icon {
	width: 36px;
	height: 36px;
	border: 1px solid var(--rc-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--rc-gold);
}
.rc-trust__icon svg {
	width: 15px;
	height: 15px;
}
.rc-trust__title {
	font-size: var(--rc-fs-reading);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--rc-gold-lt);
}
.rc-trust__sub {
	font-size: 12px;
	color: #666;
	margin-top: 2px;
}

/* ════════════════════════════════════════
   4. CATEGORÍAS
════════════════════════════════════════ */
.rc-cats {
	background: var(--rc-cream);
	padding: 64px 60px;
	border-bottom: 1px solid var(--rc-cream-border);
}
.rc-cats__grid {
	display: flex;
	gap: 7px;
	margin-top: 40px;
	padding: 0px;
}
.rc-cats__grid > li {
	flex: 1;
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background: var(--rc-cream-dk);
	list-style: none;
}
.rc-cat-item {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.rc-cat-item__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform 0.38s ease;
}
.rc-cat-item:hover .rc-cat-item__img {
	transform: scale(1.05);
}
/* Label: flotando en la parte inferior de la imagen */
.rc-cat-item__label {
	position: absolute;
	bottom: 14px;
	left: 0;
	right: 0;
	margin: 0;
	padding: 7px 12px;
	font-family: var(--rc-font-sans);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	transition: background 0.28s ease, padding 0.28s ease;
}
/* Hover: fondo semitransparente rectangular */
.rc-cat-item:hover .rc-cat-item__label {
	background: rgba(20, 18, 14, 0.72);
	text-shadow: none;
}

/* ── Puntos de carrusel (visibles solo en móvil via JS) ── */
.rc-cats__dots {
	display: none;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}
.rc-cats__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: var(--rc-cream-border);
	cursor: pointer;
	padding: 0;
	transition: background 0.35s ease, width 0.35s ease, border-radius 0.35s ease;
	flex-shrink: 0;
}
.rc-cats__dot.is-active {
	background: var(--rc-ink);
	width: 17px;
	border-radius: 10px;
}

/* ════════════════════════════════════════
   5. URGENCY + COUNTDOWN
════════════════════════════════════════ */
.rc-urgency {
	background: var(--rc-ink2);
	padding: 18px 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	flex-wrap: wrap;
}
.rc-urgency__copy {
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--rc-gold-lt);
}
.rc-urgency__timer {
	display: flex;
	align-items: center;
	gap: 6px;
}
.rc-timer-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
}
.rc-timer-digit {
	background: var(--rc-ink);
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	font-family: "Playfair Display", serif;
	padding: 8px 14px;
	min-width: 50px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.rc-timer-label {
	font-size: 7px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #666;
}
.rc-timer-sep {
	color: var(--rc-gold);
	font-size: 22px;
	font-weight: 300;
	margin-bottom: 16px;
}
.rc-urgency__btn {
	background: var(--rc-gold);
	color: #fff;
	font-size: var(--rc-fs-btn);
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 12px 22px;
	border: none;
	cursor: pointer;
	font-family: "Inter", sans-serif;
	transition: background 0.2s;
	text-decoration: none;
	white-space: nowrap;
}
.rc-urgency__btn:hover {
	background: var(--rc-gold-lt);
}

/* ════════════════════════════════════════
   6. PRODUCTOS DESTACADOS
════════════════════════════════════════ */
.rc-products {
	background: var(--rc-cream);
	padding: 72px 60px;
}
.rc-filter-tabs {
	display: flex;
	justify-content: center;
	border: 1px solid var(--rc-cream-border);
	max-width: 357px;
	margin: 32px auto 52px;
}
.rc-ftab {
	padding: 10px 32px;
	font-size: var(--rc-fs-btn);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--rc-muted);
	cursor: pointer;
	border: none;
	background: none;
	font-family: "Inter", sans-serif;
	transition: all 0.2s;
}
.rc-ftab--active,
.rc-ftab:hover {
	background: var(--rc-ink);
	color: var(--rc-gold-lt);
}
.rc-products__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	transition: opacity 0.2s;
}
.rc-products__grid.is-loading {
	opacity: 0.5;
	pointer-events: none;
}
.rc-products__cta {
	text-align: center;
	margin-top: 48px;
}
.rc-products__empty {
	grid-column: 1 / -1;
	text-align: center;
	color: var(--rc-muted);
	padding: 40px;
}

/* ════════════════════════════════════════
   SKELETON LOADING
   Aparece mientras el AJAX trae productos
════════════════════════════════════════ */
.rc-skeleton-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.rc-skeleton-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.rc-skeleton-img {
	aspect-ratio: 3/4;
	background: var(--rc-cream-dk);
	border-radius: 2px;
	animation: rc-pulse 1.5s ease-in-out infinite;
}
.rc-skeleton-line {
	height: 12px;
	background: var(--rc-cream-dk);
	border-radius: 2px;
	animation: rc-pulse 1.5s ease-in-out infinite;
}
.rc-skeleton-line--short {
	width: 60%;
}
.rc-skeleton-line--price {
	width: 40%;
	height: 16px;
}
@keyframes rc-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.4;
	}
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
════════════════════════════════════════ */
@media (max-width: 900px) {
	.rc-hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.rc-hero__media {
		min-height: 320px;
		order: -1;
	}
	.rc-hero__content {
		padding: 40px 28px;
	}
	.rc-hero__title {
		font-size: 38px;
	}
	.rc-hero__badge {
		display: none;
	}

	.rc-trust {
		grid-template-columns: 1fr;
	}
	.rc-trust__item + .rc-trust__item {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}
	.rc-trust__item {
		justify-content: flex-start;
		padding: 18px 28px;
	}

	.rc-cats {
		padding: 48px 28px;
	}
	.rc-cats__grid {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		flex-wrap: nowrap;
		gap: 8px;
	}
	.rc-cats__grid::-webkit-scrollbar {
		display: none;
	}
	.rc-cats__grid > li {
		flex: 0 0 calc(33.333% - 6px);
		width: calc(33.333% - 6px);
		scroll-snap-align: start;
	}
	.rc-cats__dots {
		display: flex;
	}
	.rc-cat-item__label {
		font-size: 12px;
		letter-spacing: 1.5px;
	}

	.rc-urgency {
		padding: 16px 28px;
		gap: 16px;
	}
	.rc-products {
		padding: 56px 28px;
	}
	.rc-products__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.rc-skeleton-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.rc-filter-tabs {
		max-width: 100%;
	}
}

/* ── Categorías: carrusel móvil ≤640px — 2 cards por vista ── */
@media (max-width: 640px) {
	.rc-cats__grid {
		gap: 3px;
	}
	.rc-cats__grid > li {
		flex: 0 0 calc(50% - 2px);
		width: calc(50% - 2px);
	}
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
	.rc-hero__media {
		min-height: 260px;
	}
	.rc-hero__content {
		padding: 32px 20px;
	}
	.rc-hero__title {
		font-size: 32px;
	}
	.rc-hero__desc {
		font-size: var(--rc-fs-reading);
		max-width: 100%;
	}
	.rc-hero__actions {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.rc-btn-dark {
		width: 100%;
		text-align: center;
	}

	.rc-cats {
		padding: 40px 0;
	}
	.rc-cats__grid {
		gap: 2px;
	}
	.rc-cat-item__label {
		font-size: 10px;
		letter-spacing: 1.2px;
		padding: 20px 8px 10px;
	}
	.rc-cat-item:hover .rc-cat-item__label {
		padding: 12px 8px;
	}

	.rc-urgency {
		flex-direction: column;
		padding: 20px;
		gap: 12px;
		text-align: center;
	}
	.rc-timer-digit {
		font-size: 18px;
		padding: 6px 10px;
		min-width: 42px;
	}
	.rc-urgency__btn {
		width: 100%;
	}

	.rc-products {
		padding: 48px 20px;
	}
	.rc-sec-title {
		font-size: 26px;
	}
	.rc-filter-tabs {
		width: 100%;
	}
	.rc-ftab {
		padding: 10px 12px;
		font-size: var(--rc-fs-tag);
		flex: 1;
	}
	.rc-products__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.rc-skeleton-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

/* ═══════════════════ 7. LOOKBOOK ═══════════════════ */
.rc-lookbook {
	background: var(--rc-cream);
	padding: 72px 60px;
	border-top: 1px solid var(--rc-cream-border);
}
.rc-lb__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 4px;
	margin-top: 48px;
	height: 800px;
}
.rc-lb__item {
	background: var(--rc-cream-dk);
	overflow: hidden;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 16px;
	text-decoration: none;
}
.rc-lb__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.rc-lb__ph {
	position: absolute;
	inset: 0;
	transition: transform 0.5s ease;
}
.rc-lb__item:hover .rc-lb__img,
.rc-lb__item:hover .rc-lb__ph {
	transform: scale(1.04);
}
.rc-lb__main {
	grid-row: 1/3;
	/* aspect-ratio: 3/3; */
}
.rc-lb__ph--rc-lb__main {
	background: linear-gradient(160deg, #e0d8cc, #c8beb0);
}
.rc-lb__ph--rc-lb__2 {
	background: linear-gradient(160deg, #d8d0c4, #c4baa8);
}
.rc-lb__ph--rc-lb__3 {
	background: linear-gradient(160deg, #ccc4b8, #b8b0a0);
}
.rc-lb__ph--rc-lb__4 {
	background: linear-gradient(160deg, #d4ccb8, #c0b8a4);
}
.rc-lb__ph--rc-lb__5 {
	background: linear-gradient(160deg, #c8c0b0, #b4ac9c);
}
.rc-lb__tag {
	position: relative;
	z-index: 1;
	background: rgba(28, 26, 23, 0.7);
	color: var(--rc-gold-lt);
	font-size: 8px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 6px 12px;
}

/* ═══════════════════ 8. BEST SELLERS ═══════════════════ */
.rc-bestsellers {
	background: var(--rc-cream-dk);
	padding: 72px 60px;
	border-top: 1px solid var(--rc-cream-border);
}
.rc-bs__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}
.rc-bs__card {
	background: #fff;
	padding: 24px;
	display: flex;
	gap: 16px;
	align-items: center;
	max-width: 600px;
	margin-inline: auto;
	width: 100%;
	position: relative;
	border: 1px solid transparent;
	transition: border-color 0.2s;
	text-decoration: none;
	color: inherit;
}
.rc-bs__card:hover {
	border-color: var(--rc-cream-border);
}
.rc-bs__badge {
	position: absolute;
	top: -1px;
	left: -1px;
	background: var(--rc-gold);
	color: #fff;
	font-size: 7px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 10px;
}
.rc-bs__num {
	font-family: "Playfair Display", serif;
	font-size: 52px;
	color: var(--rc-cream-border);
	line-height: 1;
	flex-shrink: 0;
	width: 44px;
}
.rc-bs__img {
	width: 70px;
	height: 90px;
	background: var(--rc-cream-dk);
	flex-shrink: 0;
	overflow: hidden;
}
.rc-bs__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.rc-bs__img-ph {
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, #e8e4d9, #d4cabb);
}
.rc-bs__cat {
	font-size: var(--rc-fs-btn);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--rc-muted);
	margin-bottom: 4px;
}
.rc-bs__name {
	font-size: var(--rc-fs-reading);
	color: var(--rc-ink);
	margin-bottom: 6px;
	line-height: 1.4;
}
.rc-bs__price {
	font-size: 16px;
	font-weight: 500;
	color: var(--rc-ink);
	margin-bottom: 8px;
}
.rc-bs__price .woocommerce-Price-amount {
	font: inherit;
	color: inherit;
}
.rc-bs__sold {
	font-size: var(--rc-fs-btn);
	color: var(--rc-gold);
	letter-spacing: 0.5px;
}

/* ═══════════════════ 9. BRAND STORY ═══════════════════ */
.rc-brand {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
	background: var(--rc-ink2);
	padding-inline: max(0px, calc((100% - 1829px) / 2));
}
.rc-brand__media {
	overflow: hidden;
	position: relative;
	background: var(--rc-ink);
}
.rc-brand__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
	position: absolute;
	inset: 0;
}
.rc-brand__ph {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, #252220, #1a1815);
	display: flex;
	align-items: center;
	justify-content: center;
}
.rc-brand__ph span {
	font-size: var(--rc-fs-btn);
	letter-spacing: 3px;
	color: #555;
	text-transform: uppercase;
}
.rc-brand__content {
	padding: 72px 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.rc-brand__content .rc-eyebrow {
	margin-bottom: 18px;
}
.rc-brand__title {
	font-family: "Playfair Display", serif;
	font-size: 36px;
	color: #f1efe7;
	font-weight: 400;
	line-height: 1.22;
	margin-bottom: 22px;
}
.rc-brand__title em {
	font-style: italic;
	color: var(--rc-gold);
}
.rc-brand__text {
	font-size: var(--rc-fs-reading);
	line-height: 1.9;
	color: #a09880;
	margin-bottom: 32px;
}
.rc-brand__stats {
	display: flex;
	gap: 28px;
	margin-bottom: 32px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	flex-wrap: wrap;
}
.rc-brand__stat-num {
	font-family: "Playfair Display", serif;
	font-size: 28px;
	color: var(--rc-gold-lt);
}
.rc-brand__stat-label {
	font-size: var(--rc-fs-tag);
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #666;
	margin-top: 2px;
}
.rc-btn-outline-gold {
	display: inline-block;
	border: 1px solid var(--rc-gold);
	color: var(--rc-gold-lt);
	padding: 13px 30px;
	font-size: var(--rc-fs-btn);
	letter-spacing: 3px;
	text-transform: uppercase;
	background: none;
	cursor: pointer;
	transition: all 0.25s;
	text-decoration: none;
	font-family: "Inter", sans-serif;
}
.rc-btn-outline-gold:hover {
	background: var(--rc-gold);
	color: #fff;
}

/* ═══════════════════ 10. EMAIL CAPTURE ═══════════════════ */
.rc-email-capture {
	background: var(--rc-cream-dk);
	padding: 72px 60px;
	text-align: center;
	border-top: 1px solid var(--rc-cream-border);
}
.rc-email__title {
	font-family: "Playfair Display", serif;
	font-size: 38px;
	font-weight: 400;
	color: var(--rc-ink);
	margin-bottom: 12px;
	margin-top: 14px;
}
.rc-email__title em {
	font-style: italic;
	color: var(--rc-gold);
}
.rc-email__sub {
	font-size: var(--rc-fs-reading);
	color: var(--rc-muted);
	margin-bottom: 36px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
.rc-email__form {
	display: flex;
	justify-content: center;
	gap: 4px;
	max-width: 480px;
	margin: 0 auto;
}
.rc-email__input {
	flex: 1;
	border: 1px solid var(--rc-cream-border);
	border-right: none;
	padding: 14px 20px;
	font-size: var(--rc-fs-reading);
	font-family: "Inter", sans-serif;
	background: #fff;
	color: var(--rc-ink);
	outline: none;
	min-width: 0;
}
.rc-email__input::placeholder {
	color: var(--rc-muted);
}
.rc-email__input:focus {
	border-color: var(--rc-gold);
}
.rc-email__submit {
	background: var(--rc-ink);
	color: var(--rc-gold-lt);
	font-size: var(--rc-fs-btn);
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 14px 24px;
	border: none;
	cursor: pointer;
	font-family: "Inter", sans-serif;
	white-space: nowrap;
	transition: background 0.2s;
}
.rc-email__submit:hover {
	background: var(--rc-gold);
}
.rc-email__submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}
.rc-email__msg {
	margin-top: 14px;
	font-size: var(--rc-fs-reading);
	padding: 10px 16px;
	border-radius: 4px;
}
.rc-email__msg--ok {
	color: #4caf7d;
	background: rgba(76, 175, 125, 0.08);
	border: 1px solid rgba(76, 175, 125, 0.2);
}
.rc-email__msg--err {
	color: #e05252;
	background: rgba(224, 82, 82, 0.08);
	border: 1px solid rgba(224, 82, 82, 0.2);
}
.rc-email__privacy {
	font-size: var(--rc-fs-btn);
	color: var(--rc-muted);
	margin-top: 14px;
}

/* ═══════════════════ 11. TESTIMONIALS ═══════════════════ */
.rc-testimonials {
	background: var(--rc-cream);
	padding: 72px 60px;
	border-top: 1px solid var(--rc-cream-border);
}
.rc-test__grid {
	display: flex;
	gap: 20px;
	margin-top: 48px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 8px;
	cursor: grab;
}
.rc-test__grid.is-dragging {
	cursor: grabbing;
	user-select: none;
	scroll-snap-type: none;
}
.rc-test__grid.is-dragging .rc-test__card {
	user-select: none;
}
.rc-test__grid::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}
.rc-test__card {
	flex: 0 0 calc((100% - 40px) / 3.15);
	min-width: 280px;
	max-width: 480px;
	scroll-snap-align: start;
	background: #fff;
	padding: 22px;
	border: 1px solid var(--rc-cream-border);
	transition: border-color 0.2s;
}
.rc-test__card:hover {
	border-color: var(--rc-gold);
}
.rc-test__stars {
	display: flex;
	gap: 4px;
	margin-bottom: 18px;
}
.rc-star-icon {
	display: inline-block;
	width: 9px;
	height: 9px;
	background: var(--rc-gold);
	clip-path: polygon(
		50% 0%,
		61% 35%,
		98% 35%,
		68% 57%,
		79% 91%,
		50% 70%,
		21% 91%,
		32% 57%,
		2% 35%,
		39% 35%
	);
}
.rc-star-icon--empty {
	background: var(--rc-cream-border);
}
.rc-test__quote {
	font-family: "Playfair Display", serif;
	font-size: 15px;
	line-height: 1.75;
	color: #5c5750;
	font-style: italic;
	margin-bottom: 22px;
}
.rc-test__divider {
	width: 28px;
	height: 1px;
	background: var(--rc-gold);
	margin-bottom: 18px;
}
.rc-test__author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.rc-test__avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--rc-cream-dk);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	color: var(--rc-muted);
	font-weight: 500;
	flex-shrink: 0;
}
.rc-test__name {
	font-size: 12px;
	color: var(--rc-ink);
	font-weight: 500;
}
.rc-test__product {
	font-size: var(--rc-fs-tag);
	color: var(--rc-gold);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 2px;
}

/* ── Puntos de carrusel ── */
.rc-test__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}
.rc-test__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: var(--rc-cream-border);
	cursor: pointer;
	padding: 0;
	transition: background 0.35s ease, width 0.35s ease, border-radius 0.35s ease;
	flex-shrink: 0;
}
.rc-test__dot.is-active {
	background: var(--rc-ink);
	width: 17px;
	border-radius: 10px;
}

/* ═══════════════════ 12. INSTAGRAM ═══════════════════ */
.rc-instagram {
	background: var(--rc-ink2);
	padding: 56px 60px;
}
.rc-ig__header {
	text-align: center;
	margin-bottom: 36px;
}
.rc-ig__handle {
	font-family: "Playfair Display", serif;
	font-size: 28px;
	color: var(--rc-cream);
	letter-spacing: 3px;
	text-decoration: none;
	display: block;
	transition: color 0.2s;
}
.rc-ig__handle a {
	color: var(--rc-cream);
	text-decoration: none;
	transition: color 0.2s;
}
.rc-ig__handle:hover,
.rc-ig__handle a:hover {
	color: var(--rc-gold);
}
.rc-ig__sub {
	font-size: var(--rc-fs-tag);
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--rc-gold);
	margin-top: 6px;
}
.rc-ig__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 3px;
}
.rc-ig__item {
	aspect-ratio: 1;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.rc-ig__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s;
}
.rc-ig__item:hover img {
	opacity: 0.7;
}
.rc-ig__ph {
	position: absolute;
	inset: 0;
	transition: opacity 0.3s;
}
.rc-ig__item:hover .rc-ig__ph {
	opacity: 0.7;
}
.rc-ig__ph--1 {
	background: linear-gradient(135deg, #2a2720, #222018);
}
.rc-ig__ph--2 {
	background: linear-gradient(135deg, #252220, #1e1c18);
}
.rc-ig__ph--3 {
	background: linear-gradient(135deg, #2d2a24, #252018);
}
.rc-ig__ph--4 {
	background: linear-gradient(135deg, #222018, #1c1a14);
}
.rc-ig__ph--5 {
	background: linear-gradient(135deg, #282520, #201e18);
}
.rc-ig__overlay {
	position: relative;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s;
	text-align: center;
}
.rc-ig__item:hover .rc-ig__overlay {
	opacity: 1;
}
.rc-ig__overlay span {
	font-size: 8px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}


/* ═══════════════════ SMASH BALLOON OVERRIDES ═══════════════════ */

/* #sb_instagram .sbi_header,
#sb_instagram .sbi_follow_btn_wrap {
	display: none !important;
}

#sb_instagram .sbi_load_more_btn_wrap {
	display: none !important;
}

#sb_instagram {
	background: transparent !important;
	padding: 0 !important;
	border: none !important;
	box-shadow: none !important;
}
#sb_instagram .sbi_inner_cont {
	padding: 0 !important;
	margin: 0 !important;
}

#sbi_images {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 3px !important;
	padding: 0 !important;
	margin: 0 !important;
	overflow: hidden !important;
	float: none !important;
	width: 100% !important;
}

#sbi_images .sbi_item:nth-child(n+9) {
	display: none !important;
}

#sbi_images .sbi_item {
	float: none !important;
	width: auto !important;
	padding: 0 !important;
	margin: 0 !important;
}


#sbi_images .sbi_photo_wrap {
	position: relative !important;
	aspect-ratio: 1 !important;
	overflow: hidden !important;
	display: block !important;
}


#sbi_images .sbi_photo_wrap .sbi_photo {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	padding: 0 !important;
	display: block !important;
}

#sbi_images .sbi_photo_wrap .sbi_photo img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
	transition: transform 0.4s ease !important;
}
#sbi_images .sbi_item:hover .sbi_photo img {
	transform: scale(1.05) !important;
}

#sbi_images .sbi_info {
	display: none !important;
} */

/*
 * Overlay "VER POST" en ::before del wrap.
 * Está sobre el <a> (z-index: 10 > auto del <a>).
 * pointer-events:none deja pasar el clic al link.
 */
#sbi_images .sbi_photo_wrap::before {
	content: 'VER POST';
	position: absolute;
	inset: 0;
	z-index: 10;
	background: rgba(28, 26, 23, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Inter", sans-serif;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 4px;
	color: var(--rc-cream);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
#sbi_images .sbi_item:hover .sbi_photo_wrap::before {
	opacity: 1;
}

@media (min-width: 901px) and (max-width: 1069px) {
	.rc-lb__grid {
		height: 470px;
	}
}

@media (min-width: 901px) and (max-width: 1320px) {
	.rc-brand__media {
		height: 640px;
	}
}

@media (min-width: 1321px) and (max-width: 1734px) {
	.rc-brand__media {
		height: 760px;
	}
}

@media (min-width: 1735px) {
	.rc-brand__media {
		height: 850px;
	}
}

@media (min-width: 1070px) and (max-width: 1320px) {
	.rc-lb__grid {
		height: 555px;
	}
}

@media (min-width: 1321px) and (max-width: 1460px) {
	.rc-lb__grid {
		height: 720px;
	}
}

@media (min-width: 1461px) and (max-width: 1949px) {
	.rc-lb__grid {
		height: 800px;
	}
}

@media (min-width: 1950px) {
	.rc-hero {
		min-height: 618px;
	}
	.rc-cats__grid {
		max-width: 1829px;
		margin-inline: auto;
	}
	.rc-products__grid {
		max-width: 1829px;
		margin-inline: auto;
	}
	.rc-bs__grid {
		max-width: 1829px;
		margin-inline: auto;
	}
	.rc-lb__grid {
		max-width: 1829px;
		margin-inline: auto;
	}
}



/* ═══════════════════ RESPONSIVE TABLET ≤ 900px ═══════════════════ */
@media (max-width: 900px) {
	.rc-lookbook {
		padding: 56px 28px;
	}
	.rc-lb__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		height: auto;
	}
	.rc-lb__main {
		grid-row: auto;
		grid-column: 1/3;
		aspect-ratio: 3/3;
	}
	.rc-lb__2,
	.rc-lb__3,
	.rc-lb__4,
	.rc-lb__5 {
		aspect-ratio: 1;
	}

	.rc-bestsellers {
		padding: 56px 28px;
	}
	.rc-bs__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.rc-brand {
		grid-template-columns: 1fr;
	}
	.rc-brand__media {
		aspect-ratio: 3/3;
		min-height: unset;
		order: -1;
	}
	.rc-brand__content {
		padding: 48px 28px;
	}
	.rc-brand__title {
		font-size: 28px;
	}

	.rc-email-capture {
		padding: 56px 28px;
	}
	.rc-email__title {
		font-size: 28px;
	}
	.rc-email__form {
		flex-direction: column;
	}
	.rc-email__input {
		border-right: 1px solid var(--rc-cream-border);
		border-bottom: none;
		width: 100%;
		padding: 10px !important;
	}
	.rc-email__submit {
		width: 100%;
		padding: 14px;
	}

	.rc-testimonials {
		padding: 56px 28px;
	}
	.rc-test__grid {
		gap: 14px;
		margin-top: 36px;
	}
	.rc-test__card {
		flex-basis: min(72vw, 340px);
		transform: scale(0.92);
		opacity: 0.55;
		transition: transform 0.35s ease, opacity 0.35s ease, border-color 0.2s;
		scroll-snap-align: center;
	}
	.rc-test__card.is-active {
		transform: scale(1);
		opacity: 1;
	}

	.rc-instagram {
		padding: 48px 28px;
	}
	.rc-ig__grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.rc-ig__item:nth-child(4),
	.rc-ig__item:nth-child(5) {
		display: none;
	}

	/* Smash Balloon — tablet: 3 cols, 6 posts */
	#sbi_images {
		grid-template-columns: repeat(3, 1fr) !important;
	}
	#sbi_images .sbi_item:nth-child(n+7) {
		display: none !important;
	}
}

/* ═══════════════════ RESPONSIVE MOBILE ≤ 480px ═══════════════════ */
@media (max-width: 480px) {
	.rc-lookbook {
		padding: 48px 20px;
	}
	.rc-lb__main {
		aspect-ratio: 3/3;
	}
	.rc-brand__media {
		aspect-ratio: 3/3;
		min-height: unset;
	}
	.rc-lb__tag {
		font-size: 7px;
		padding: 5px 8px;
	}

	.rc-bestsellers {
		padding: 48px 20px;
	}
	.rc-bs__card {
		padding: 16px;
	}
	.rc-bs__num {
		font-size: 32px;
		width: 34px;
	}
	.rc-bs__img {
		width: 56px;
		height: 72px;
	}

	.rc-brand__content {
		padding: 40px 20px;
	}
	.rc-brand__title {
		font-size: 24px;
	}
	.rc-brand__stats {
		gap: 16px;
	}

	.rc-email-capture {
		padding: 48px 20px;
	}
	.rc-email__title {
		font-size: 24px;
	}

	.rc-email__input{
		padding: 10px !important;
	}

	.rc-testimonials {
		padding: 48px 20px;
	}
	.rc-test__card {
		flex-basis: 82vw;
		padding: 22px;
	}
	.rc-test__quote {
		font-size: var(--rc-fs-reading);
	}

	.rc-instagram {
		padding: 40px 20px;
	}
	.rc-ig__handle {
		font-size: 20px;
		letter-spacing: 2px;
	}
	.rc-ig__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Smash Balloon — mobile: 2 cols, 4 posts */
	#sbi_images {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	#sbi_images .sbi_item:nth-child(n+5) {
		display: none !important;
	}
}

