/* ========================================================
   Corrales Landings — Frontend block styles
   Reusa el sistema de variables del theme (--cc-*). Si el
   theme no está activo, los fallbacks mantienen un look ok.
   ======================================================== */

.cl-landing-main { display: block; }
.cl-block { padding: 48px var(--cc-pad-x, 28px); }
.cl-landing-main--full .cl-block { padding-left: 0; padding-right: 0; }

/* Diagnostic placeholder visible only to logged-in editors */
.cl-empty-frontend {
	padding: 20px !important;
	margin: 10px var(--cc-pad-x, 28px);
	background: #fff8e0;
	border: 1px dashed #b88b3b;
	border-radius: 10px;
	color: #6b5530;
	font-size: 13.5px;
	text-align: center;
}
.cl-empty-frontend p { margin: 0; }
.cl-section-title {
	font-family: var(--cc-display, -apple-system, BlinkMacSystemFont, sans-serif);
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 24px;
	color: var(--cc-ink, #0d0d0d);
	letter-spacing: -.01em;
	text-align: center;
}

/* ── Hero ───────────────────────────────────────────────── */
.cl-hero { position: relative; overflow: hidden; }
.cl-hero--cover {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Desktop heights (override the cover default min-height) */
.cl-hero--cover.cl-hero--d-sm   { min-height: 400px; }
.cl-hero--cover.cl-hero--d-md   { min-height: 550px; }
.cl-hero--cover.cl-hero--d-lg   { min-height: 720px; }
.cl-hero--cover.cl-hero--d-xl   { min-height: 900px; }
.cl-hero--cover.cl-hero--d-full { min-height: 90vh;  }
/* Mobile overrides */
@media (max-width: 768px) {
	.cl-hero--cover.cl-hero--m-sm   { min-height: 320px; }
	.cl-hero--cover.cl-hero--m-md   { min-height: 450px; }
	.cl-hero--cover.cl-hero--m-lg   { min-height: 600px; }
	.cl-hero--cover.cl-hero--m-xl   { min-height: 720px; }
	.cl-hero--cover.cl-hero--m-full { min-height: 70vh;  }
}
.cl-hero--cover .cl-hero__body { max-width: 760px; text-align: center; position: relative; z-index: 2; padding: 40px 20px; }
.cl-hero--cover::before {
	content: ""; position: absolute; inset: 0;
	background: rgba(13,13,13,0.4);
	pointer-events: none; z-index: 1;
}
.cl-hero--overlay-none::before { display: none; }
.cl-hero--overlay-light::before  { background: rgba(13,13,13,0.22); }
.cl-hero--overlay-medium::before { background: rgba(13,13,13,0.45); }
.cl-hero--overlay-strong::before { background: rgba(13,13,13,0.7);  }

.cl-hero--left, .cl-hero--right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
}
.cl-hero--right .cl-hero__media { order: 2; }
.cl-hero__media img { display: block; width: 100%; height: auto; border-radius: 16px; }
.cl-hero__body { padding: 20px 0; }
.cl-hero--left .cl-hero__body, .cl-hero--right .cl-hero__body { color: var(--cc-ink, #0d0d0d); }

.cl-hero__eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .2em;
	margin-bottom: 16px;
	color: var(--cc-accent, #b88b3b);
}
.cl-hero__title {
	font-family: var(--cc-display, inherit);
	font-size: 56px;
	font-weight: 700;
	margin: 0 0 16px;
	letter-spacing: -.02em;
	line-height: 1.05;
}
.cl-hero__subtitle {
	font-size: 18px;
	line-height: 1.5;
	margin: 0 0 28px;
	max-width: 540px;
}
.cl-hero--cover .cl-hero__subtitle { margin-left: auto; margin-right: auto; }
.cl-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.cl-hero--cover .cl-hero__ctas { justify-content: center; }

/* ── Text ───────────────────────────────────────────────── */
.cl-text__inner { margin: 0 auto; }
.cl-text--wide   .cl-text__inner { max-width: 780px; }
.cl-text--narrow .cl-text__inner { max-width: 560px; }
.cl-text--center { text-align: center; }
.cl-text--right  { text-align: right; }
.cl-text__title {
	font-family: var(--cc-display, inherit);
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 18px;
	letter-spacing: -.015em;
	color: var(--cc-ink, #0d0d0d);
}
.cl-text__body { font-size: 15.5px; line-height: 1.65; color: var(--cc-ink-2, #5e5e5e); }
.cl-text__body h3 { font-size: 22px; font-weight: 700; margin: 24px 0 10px; color: var(--cc-ink, #0d0d0d); }
.cl-text__body ul { padding-left: 1.4em; margin: 12px 0; }
.cl-text__body a { color: var(--cc-accent, #b88b3b); }

/* ── Products (self-contained cards, theme-agnostic) ──────── */
.cl-products__grid {
	display: grid;
	gap: 24px;
	max-width: 1280px;
	margin: 0 auto;
}
.cl-products--cols-1 .cl-products__grid { grid-template-columns: 1fr; }
.cl-products--cols-2 .cl-products__grid { grid-template-columns: repeat(2, 1fr); }
.cl-products--cols-3 .cl-products__grid { grid-template-columns: repeat(3, 1fr); }
.cl-products--cols-4 .cl-products__grid { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
	.cl-products--cols-3 .cl-products__grid,
	.cl-products--cols-4 .cl-products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
	.cl-products--cols-2 .cl-products__grid,
	.cl-products--cols-3 .cl-products__grid,
	.cl-products--cols-4 .cl-products__grid { grid-template-columns: 1fr; }
}

.cl-product-card {
	display: flex;
	flex-direction: column;
	background: var(--cc-surface, #fff);
	border: 1px solid var(--cc-line, #e7dcc1);
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none !important;
	color: inherit;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	height: 100%;
}
.cl-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(13,13,13,0.10);
	border-color: var(--cc-accent, #b88b3b);
}

.cl-product-card__media {
	position: relative;
	aspect-ratio: 4/3;
	background: var(--cc-bg, #fbf6eb);
	overflow: hidden;
}
.cl-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}
.cl-product-card:hover .cl-product-card__media img { transform: scale(1.04); }
.cl-product-card__placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, #f2e8c8, #e7dcc1);
}
.cl-product-card__badge {
	position: absolute;
	top: 10px; left: 10px;
	background: var(--cc-accent, #b88b3b);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: .03em;
	box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.cl-product-card__badge--sale { background: #d9534f; }

.cl-product-card__body {
	padding: 16px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.cl-product-card__name {
	font-family: var(--cc-display, inherit);
	font-size: 16px;
	font-weight: 700;
	color: var(--cc-ink, #0d0d0d);
	margin: 0;
	line-height: 1.25;
	letter-spacing: -.005em;
}
.cl-product-card__short {
	font-size: 13px;
	color: var(--cc-ink-2, #5e5e5e);
	margin: 0;
	line-height: 1.45;
	flex: 1;
}
.cl-product-card__price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 4px;
}
.cl-product-card__old {
	font-size: 12px;
	color: var(--cc-ink-3, #999);
	text-decoration: line-through;
}
.cl-product-card__old .amount,
.cl-product-card__old bdi { color: inherit; font-weight: normal; }
.cl-product-card__price {
	font-size: 18px;
	font-weight: 700;
	color: var(--cc-accent, #b88b3b);
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}
.cl-product-card__price .amount,
.cl-product-card__price bdi { color: inherit; font-weight: inherit; }
.cl-product-card__prefix {
	font-size: 12px;
	font-weight: 600;
	color: var(--cc-ink-2, #5e5e5e);
	text-transform: uppercase;
	letter-spacing: .04em;
}
.cl-product-card__cta {
	display: inline-block;
	margin-top: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--cc-ink, #0d0d0d);
	transition: color .15s ease;
}
.cl-product-card:hover .cl-product-card__cta { color: var(--cc-accent, #b88b3b); }

/* ── Categories grid ────────────────────────────────────── */
.cl-cats__grid {
	display: grid;
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
}
.cl-cats--cols-2 .cl-cats__grid { grid-template-columns: repeat(2, 1fr); }
.cl-cats--cols-3 .cl-cats__grid { grid-template-columns: repeat(3, 1fr); }
.cl-cats--cols-4 .cl-cats__grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
	.cl-cats--cols-3 .cl-cats__grid,
	.cl-cats--cols-4 .cl-cats__grid { grid-template-columns: repeat(2, 1fr); }
}

.cl-cat-tile {
	display: flex;
	flex-direction: column;
	border-radius: 14px;
	overflow: hidden;
	background: var(--cc-surface, #fff);
	border: 1px solid var(--cc-line, #e7dcc1);
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
	color: inherit;
}
.cl-cat-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.cl-cat-tile__img {
	display: block;
	aspect-ratio: 4/3;
	background: var(--cc-bg, #fbf6eb) center/cover no-repeat;
}
.cl-cat-tile__img--ph {
	background: linear-gradient(135deg, #f2e8c8, #e7dcc1);
}
.cl-cat-tile__body { padding: 14px 16px; }
.cl-cat-tile__name { display: block; color: var(--cc-ink, #0d0d0d); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cl-cat-tile__count { font-size: 12px; color: var(--cc-ink-2, #5e5e5e); }

/* ── CTA Banner ─────────────────────────────────────────── */
.cl-cta {
	max-width: 1280px;
	margin: 0 auto;
	border-radius: 18px;
	overflow: hidden;
	background: var(--cc-bg, #fbf6eb);
}
.cl-cta--image-left, .cl-cta--image-right {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
}
.cl-cta--image-left .cl-cta__media  { order: 1; }
.cl-cta--image-right .cl-cta__media { order: 2; }
.cl-cta__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.cl-cta__body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.cl-cta__title { font-family: var(--cc-display, inherit); font-size: 32px; font-weight: 700; margin: 0; line-height: 1.15; }
.cl-cta__text  { font-size: 15px; color: var(--cc-ink-2, #5e5e5e); margin: 0 0 8px; line-height: 1.55; }
.cl-cta--bg {
	background-size: cover;
	background-position: center;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: relative;
}
.cl-cta--bg::before {
	content: ""; position: absolute; inset: 0;
	background: rgba(13,13,13,0.4);
}
.cl-cta--bg .cl-cta__body { text-align: center; position: relative; z-index: 1; color: #fff; }
.cl-cta--bg .cl-cta__text { color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
	.cl-cta--image-left, .cl-cta--image-right { grid-template-columns: 1fr; }
	.cl-cta--image-right .cl-cta__media { order: 1; }
	.cl-cta--image-right .cl-cta__body  { order: 2; }
	.cl-cta__body { padding: 28px 22px; }
	.cl-cta__title { font-size: 24px; }
}

/* ── Gallery ────────────────────────────────────────────── */
.cl-gallery__grid { display: grid; gap: 10px; max-width: 1280px; margin: 0 auto; }
.cl-gallery--grid-2 .cl-gallery__grid { grid-template-columns: repeat(2, 1fr); }
.cl-gallery--grid-3 .cl-gallery__grid { grid-template-columns: repeat(3, 1fr); }
.cl-gallery--grid-4 .cl-gallery__grid { grid-template-columns: repeat(4, 1fr); }
.cl-gallery--masonry .cl-gallery__grid { display: block; columns: 3 280px; column-gap: 10px; }
.cl-gallery--masonry .cl-gallery__item { break-inside: avoid; margin-bottom: 10px; display: block; }
.cl-gallery--carousel .cl-gallery__grid {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 12px;
	padding-bottom: 8px;
}
.cl-gallery--carousel .cl-gallery__item { flex: 0 0 280px; scroll-snap-align: start; }
.cl-gallery__item img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	transition: transform .2s ease;
}
.cl-gallery__item:hover img { transform: scale(1.02); }
.cl-gallery--grid-2 .cl-gallery__item img,
.cl-gallery--grid-3 .cl-gallery__item img,
.cl-gallery--grid-4 .cl-gallery__item img {
	aspect-ratio: 1/1;
	object-fit: cover;
}
@media (max-width: 768px) {
	.cl-gallery--grid-3 .cl-gallery__grid,
	.cl-gallery--grid-4 .cl-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── FAQ ────────────────────────────────────────────────── */
.cl-faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.cl-faq__item {
	background: var(--cc-surface, #fff);
	border: 1px solid var(--cc-line, #e7dcc1);
	border-radius: 12px;
	padding: 0;
}
.cl-faq__item summary {
	padding: 18px 22px;
	cursor: pointer;
	font-weight: 600;
	color: var(--cc-ink, #0d0d0d);
	font-size: 15px;
	list-style: none;
	position: relative;
	user-select: none;
}
.cl-faq__item summary::-webkit-details-marker { display: none; }
.cl-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	color: var(--cc-accent, #b88b3b);
	font-weight: 300;
	transition: transform .2s ease;
}
.cl-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.cl-faq__answer { padding: 0 22px 18px; color: var(--cc-ink-2, #5e5e5e); font-size: 14px; line-height: 1.55; }
.cl-faq__answer p { margin: 0 0 10px; }
.cl-faq__answer p:last-child { margin-bottom: 0; }

/* ── Video ──────────────────────────────────────────────── */
.cl-video { max-width: 960px; margin: 0 auto; }
.cl-video__frame { position: relative; }
.cl-video--16-9 .cl-video__frame { aspect-ratio: 16/9; }
.cl-video--4-3  .cl-video__frame { aspect-ratio: 4/3;  }
.cl-video--1-1  .cl-video__frame { aspect-ratio: 1/1;  }
.cl-video__frame iframe,
.cl-video__frame video {
	position: absolute; inset: 0;
	width: 100% !important; height: 100% !important;
	border: 0; border-radius: 12px;
}

/* ── Spacer ─────────────────────────────────────────────── */
.cl-spacer { padding: 0 !important; }
.cl-spacer--sm { height: 24px; }
.cl-spacer--md { height: 48px; }
.cl-spacer--lg { height: 80px; }
.cl-spacer--xl { height: 120px; }
.cl-spacer--with-line { position: relative; }
.cl-spacer--with-line::after {
	content: "";
	position: absolute;
	left: 10%; right: 10%;
	top: 50%;
	height: 1px;
	background: var(--cc-line, #e7dcc1);
}

/* Responsive */
@media (max-width: 768px) {
	.cl-block { padding: 32px 18px; }
	.cl-hero--cover { min-height: 60vh; }
	.cl-hero__title { font-size: 36px; }
	.cl-hero__subtitle { font-size: 16px; }
	.cl-hero--left, .cl-hero--right { grid-template-columns: 1fr; gap: 24px; }
	.cl-hero--right .cl-hero__media { order: 1; }
	.cl-hero--right .cl-hero__body  { order: 2; }
	.cl-section-title { font-size: 24px; }
	.cl-text__title { font-size: 24px; }
}

/* ── CTA Banner heights (per-breakpoint) ──────────────────── */
.cl-cta--bg.cl-cta--d-sm   { min-height: 320px; }
.cl-cta--bg.cl-cta--d-md   { min-height: 420px; }
.cl-cta--bg.cl-cta--d-lg   { min-height: 560px; }
.cl-cta--bg.cl-cta--d-xl   { min-height: 720px; }
.cl-cta--bg.cl-cta--d-full { min-height: 90vh;  }
.cl-cta--image-left  .cl-cta__media,
.cl-cta--image-right .cl-cta__media {
	display: block; min-height: 100%;
}
.cl-cta--d-sm .cl-cta__media { min-height: 320px; }
.cl-cta--d-md .cl-cta__media { min-height: 420px; }
.cl-cta--d-lg .cl-cta__media { min-height: 560px; }
.cl-cta--d-xl .cl-cta__media { min-height: 720px; }
@media (max-width: 768px) {
	.cl-cta--bg.cl-cta--m-sm   { min-height: 260px; }
	.cl-cta--bg.cl-cta--m-md   { min-height: 360px; }
	.cl-cta--bg.cl-cta--m-lg   { min-height: 460px; }
	.cl-cta--bg.cl-cta--m-xl   { min-height: 600px; }
	.cl-cta--bg.cl-cta--m-full { min-height: 70vh;  }
	.cl-cta--m-sm .cl-cta__media { min-height: 220px; }
	.cl-cta--m-md .cl-cta__media { min-height: 280px; }
	.cl-cta--m-lg .cl-cta__media { min-height: 360px; }
	.cl-cta--m-xl .cl-cta__media { min-height: 460px; }
}
/* Object-fit overrides for the inline <img> in image-left/right layouts */
.cl-cta--image-left  .cl-cta__media img,
.cl-cta--image-right .cl-cta__media img {
	width: 100%; height: 100%;
}

/* ── Deal banner heights (per-breakpoint) ─────────────────── */
.cl-deal-banner.cl-deal-banner--d-sm   .cl-deal-banner__inner { min-height: 340px; }
.cl-deal-banner.cl-deal-banner--d-md   .cl-deal-banner__inner { min-height: 440px; }
.cl-deal-banner.cl-deal-banner--d-lg   .cl-deal-banner__inner { min-height: 600px; }
.cl-deal-banner.cl-deal-banner--d-xl   .cl-deal-banner__inner { min-height: 760px; }
.cl-deal-banner.cl-deal-banner--d-full .cl-deal-banner__inner { min-height: 90vh; }
@media (max-width: 768px) {
	.cl-deal-banner.cl-deal-banner--m-sm   .cl-deal-banner__inner { min-height: 280px; }
	.cl-deal-banner.cl-deal-banner--m-md   .cl-deal-banner__inner { min-height: 380px; }
	.cl-deal-banner.cl-deal-banner--m-lg   .cl-deal-banner__inner { min-height: 500px; }
	.cl-deal-banner.cl-deal-banner--m-xl   .cl-deal-banner__inner { min-height: 640px; }
	.cl-deal-banner.cl-deal-banner--m-full .cl-deal-banner__inner { min-height: 70vh;  }
}
/* When using "contain" on the deal banner, pad the white area around */
.cl-deal-banner--fit-contain .cl-deal-banner__inner { background-color: #fbf6eb; }

/* ── Hero "contain" mode: white space around the image is the bg color */
.cl-hero--fit-contain.cl-hero--cover { background-color: #fbf6eb; }

/* ── Mobile image override (cover backgrounds) ─────────────
   Cuando el bloque tiene `--cl-bg-mobile` inline, swappea el
   background-image en mobile. Aplica a hero cover, cta_banner
   layout=bg, deal_banner y banner-cards.                     */
@media (max-width: 768px) {
	.cl-hero--has-mobile-img.cl-hero--cover                { background-image: var(--cl-bg-mobile) !important; }
	.cl-cta--has-mobile-img.cl-cta--bg                     { background-image: var(--cl-bg-mobile) !important; }
	.cl-deal-banner__inner--has-mobile-img                 { background-image: var(--cl-bg-mobile) !important; }
	.cl-banner-card__media--has-mobile-img                 { background-image: var(--cl-bg-mobile) !important; }
}


/* ============================================================
   Hero slider mode (is_slider = true)
   ============================================================ */
.cl-hero--slider { position: relative; isolation: isolate; }
.cl-hero--slider .cl-hero__slides {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}
.cl-hero__slide {
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	opacity: 0;
	pointer-events: none;
	transition: opacity .6s ease;
	z-index: 0;
}
.cl-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}
/* Inside a slider we need the section to be relative + tall — borrow
   the body / size classes the wrapper already has, but make the slide
   itself behave like a hero so layouts (cover/left/right) still apply.
   The slides inherit the parent's cover/left/right modifier; we just
   stretch them. */
.cl-hero--slider .cl-hero__slide .cl-hero__body,
.cl-hero--slider .cl-hero__slide .cl-hero__media {
	/* No structural changes — they already inherit theme.css. */
}

/* Arrows */
.cl-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 0;
	background: rgba(255,255,255,0.92);
	color: #0d0d0d;
	font: 700 26px/1 -apple-system, sans-serif;
	cursor: pointer;
	z-index: 5;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 20px rgba(0,0,0,0.25);
	transition: transform .15s ease, background .15s ease;
}
.cl-hero__arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.cl-hero__arrow--prev { left: 18px; padding-right: 3px; }
.cl-hero__arrow--next { right: 18px; padding-left: 3px; }

/* Dots */
.cl-hero__dots {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 5;
}
.cl-hero__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(255,255,255,0.5);
	cursor: pointer;
	padding: 0;
	transition: width .25s ease, background .15s ease;
}
.cl-hero__dot.is-active {
	background: var(--cc-accent, #b88b3b);
	width: 28px;
	border-radius: 6px;
}

@media (max-width: 600px) {
	.cl-hero__arrow { width: 38px; height: 38px; font-size: 20px; }
	.cl-hero__arrow--prev { left: 8px; }
	.cl-hero__arrow--next { right: 8px; }
	.cl-hero__dots { bottom: 12px; }
}

/* ============================================================
   Products select — generic card classes (used by grid + slider)
   ============================================================ */
.cl-ps-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e7dcc1;
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none !important;
	color: inherit;
	transition: transform .25s ease, box-shadow .25s ease;
}
.cl-ps-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.10); }
.cl-ps-card__media {
	aspect-ratio: 4/3;
	background: #fbf6eb;
	overflow: hidden;
}
.cl-ps-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cl-ps-card__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #f2e8c8, #e7dcc1); }
.cl-ps-card__body {
	padding: 16px 18px 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}
.cl-ps-card__title { font-size: 16px; font-weight: 700; margin: 0; color: #0d0d0d; line-height: 1.25; }
.cl-ps-card__prices { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.cl-ps-card__old { font-size: 12px; color: #999; text-decoration: line-through; }
.cl-ps-card__price {
	font-size: 18px;
	font-weight: 700;
	color: var(--cc-accent, #b88b3b);
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}
.cl-ps-card__prefix {
	font-size: 11px;
	font-weight: 600;
	color: #5e5e5e;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.cl-ps-card__cuotas { font-size: 12px; color: #5e5e5e; }
.cl-ps-card__cta { margin-top: 4px; font-size: 13px; font-weight: 700; color: #0d0d0d; }

/* ── Focal slider ────────────────────────────────────────── */
.cl-ps-slider {
	position: relative;
	margin: 0 auto;
	overflow: hidden; /* hide the off-screen clones used for infinite loop */
}
.cl-ps-slider__viewport {
	padding: 12px 0 24px;
	margin: 0 70px; /* room for arrows on the outside */
	/* Soft fade on the left/right edges so adjacent / clipped slides
	   blur into the background instead of being hard-cut. */
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
	        mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.cl-ps-slider__track {
	display: flex;
	align-items: stretch; /* slides fill the track height equally */
	gap: 16px;
	transition: transform .55s cubic-bezier(.2,.85,.3,1);
	height: 460px;        /* fixed → longer titles can't bump the row */
	will-change: transform;
}
/* Snap-without-animation flag, set by JS when wrapping the loop. */
.cl-ps-slider__track.cl-ps-no-transition,
.cl-ps-slider__track.cl-ps-no-transition .cl-ps-slide,
.cl-ps-slider__track.cl-ps-no-transition .cl-ps-card {
	transition: none !important;
}
.cl-ps-slide {
	flex: 0 0 auto;
	width: 240px;
	height: 100%;          /* match the fixed-height track */
	display: flex;         /* so the inner card can stretch to full height */
	transition:
		width .55s cubic-bezier(.2,.85,.3,1),
		transform .55s cubic-bezier(.2,.85,.3,1),
		opacity .35s ease,
		filter .35s ease;
	opacity: .35;
	filter: saturate(.55);
	transform: scale(.82);
}
.cl-ps-slide.is-active {
	width: 360px;
	opacity: 1;
	filter: none;
	transform: scale(1);
	z-index: 3;
}
.cl-ps-slide.is-adjacent {
	width: 270px;
	opacity: .7;
	filter: saturate(.8);
	transform: scale(.92);
	z-index: 2;
}
/* Card inside a slide fills the full available area; long titles
   clamp to 2 lines so they never blow up the card. */
.cl-ps-card--slider {
	width: 100%;
	height: 100%;
}
.cl-ps-card--slider .cl-ps-card__media { flex: 1 1 auto; aspect-ratio: 4/3; }
.cl-ps-card--slider .cl-ps-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.5em;       /* keeps the price row anchored even with short titles */
}
.cl-ps-slide.is-active .cl-ps-card__title { font-size: 18px; }
.cl-ps-slide.is-active .cl-ps-card__price { font-size: 21px; }

/* Arrows + dots — glass pill buttons with a fine SVG chevron.
   Less in-your-face than black circles; sit above the fade mask
   so they read as attached to the page background, not the cards. */
.cl-ps-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(13,13,13,0.08);
	background: rgba(255,255,255,0.85);
	-webkit-backdrop-filter: blur(8px) saturate(1.2);
	        backdrop-filter: blur(8px) saturate(1.2);
	color: #0d0d0d;
	cursor: pointer;
	z-index: 10;
	display: grid;
	place-items: center;
	box-shadow: 0 6px 18px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
	font: 0/0 sans-serif; /* hide any text content for SR-only glyph */
	transition:
		transform .18s cubic-bezier(.2,.85,.3,1),
		background .18s ease,
		color .18s ease,
		border-color .18s ease,
		box-shadow .18s ease;
}
/* The visible icon is a CSS-mask'd SVG chevron tinted with
   currentColor, so it picks up the hover color automatically. */
.cl-ps-slider__nav::before {
	content: '';
	width: 14px;
	height: 14px;
	background: currentColor;
	-webkit-mask: var(--chev) center/contain no-repeat;
	        mask: var(--chev) center/contain no-repeat;
}
.cl-ps-slider__nav--prev {
	left: 12px;
	--chev: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 6 9 12 15 18'/></svg>");
}
.cl-ps-slider__nav--next {
	right: 12px;
	--chev: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>");
}
.cl-ps-slider__nav:hover {
	background: #0d0d0d;
	color: #fff;
	border-color: #0d0d0d;
	transform: translateY(-50%) scale(1.04);
	box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.cl-ps-slider__nav:focus-visible {
	outline: 2px solid var(--cc-accent, #b88b3b);
	outline-offset: 2px;
}
.cl-ps-slider__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 6px;
}
.cl-ps-slider__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 0;
	background: #d6cdb1;
	cursor: pointer;
	padding: 0;
	transition: width .25s ease, background .15s ease;
}
.cl-ps-slider__dot.is-active {
	background: var(--cc-accent, #b88b3b);
	width: 22px;
	border-radius: 5px;
}
.cl-ps-empty {
	padding: 20px;
	background: #fff8e0;
	border: 2px dashed #b88b3b;
	border-radius: 10px;
	text-align: center;
}

/* Mobile: shrink everything, keep the fade so the neighbour slides
   still peek in but soften into the bg. Arrows stay (smaller). */
@media (max-width: 768px) {
	.cl-ps-slider__viewport {
		margin: 0 8px;
		padding: 8px 0 18px;
		-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
		        mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
	}
	.cl-ps-slider__track { gap: 10px; min-height: 360px; }
	.cl-ps-slide { width: 56vw; max-width: 220px; transform: scale(.84); opacity: .35; }
	.cl-ps-slide.is-adjacent { width: 60vw; max-width: 240px; opacity: .6; transform: scale(.9); }
	.cl-ps-slide.is-active   { width: 72vw; max-width: 300px; transform: scale(1); opacity: 1; }
	.cl-ps-slider__nav { width: 36px; height: 36px; }
	.cl-ps-slider__nav::before { width: 12px; height: 12px; }
	.cl-ps-slider__nav--prev { left: 4px; }
	.cl-ps-slider__nav--next { right: 4px; }
}


/* ============================================================
   Trust badges (beneficios con íconos)
   ============================================================ */
.cl-trust-badges { padding: 40px 28px; }
.cl-trust-badges__head { margin-bottom: 24px; text-align: center; }
.cl-trust-badges__head h2 { font-size: 28px; font-weight: 700; margin: 0; }
.cl-trust-badges__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, 1fr);
	max-width: 1280px;
	margin: 0 auto;
	justify-items: stretch;
}
.cl-trust-badges--cols-1 .cl-trust-badges__grid { grid-template-columns: 1fr; max-width: 460px; }
.cl-trust-badges--cols-2 .cl-trust-badges__grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.cl-trust-badges--cols-3 .cl-trust-badges__grid { grid-template-columns: repeat(3, 1fr); max-width: 1080px; }
.cl-trust-badges--cols-4 .cl-trust-badges__grid { grid-template-columns: repeat(4, 1fr); max-width: 1280px; }
@media (max-width: 880px) {
	.cl-trust-badges__grid,
	.cl-trust-badges--cols-4 .cl-trust-badges__grid,
	.cl-trust-badges--cols-3 .cl-trust-badges__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 520px) {
	.cl-trust-badges__grid,
	.cl-trust-badges--cols-4 .cl-trust-badges__grid,
	.cl-trust-badges--cols-3 .cl-trust-badges__grid,
	.cl-trust-badges--cols-2 .cl-trust-badges__grid {
		grid-template-columns: 1fr;
	}
}
.cl-trust-badge {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #fff;
	border: 1px solid #e7dcc1;
	border-radius: 16px;
	padding: 16px 18px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cl-trust-badge:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(0,0,0,0.08);
	border-color: var(--cc-accent, #b88b3b);
}
.cl-trust-badge__icon {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, #fdf9ef 0%, #f2e8c8 100%);
	display: grid;
	place-items: center;
	font-size: 24px;
	line-height: 1;
}
.cl-trust-badge__body { flex: 1; min-width: 0; }
.cl-trust-badge__title {
	display: block;
	font-size: 15px;
	font-weight: 700;
	color: #0d0d0d;
	margin: 0 0 2px;
	line-height: 1.25;
}
.cl-trust-badge__text {
	font-size: 13px;
	color: #5e5e5e;
	margin: 0;
	line-height: 1.45;
}

/* ============================================================
   Payment methods (Mercado Pago + tarjetas)
   ============================================================ */
.cl-payment-methods {
	padding: 48px 28px;
	background: linear-gradient(180deg, #fbf6eb 0%, #f7eed0 100%);
}
.cl-payment-card {
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #e7dcc1;
	border-radius: 22px;
	padding: 36px 32px;
	text-align: center;
	box-shadow: 0 18px 50px rgba(13,13,13,0.08);
}
.cl-payment-card__logo {
	margin: 0 auto 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.cl-payment-card__logo svg { width: 220px; height: auto; display: block; max-width: 100%; }
@media (max-width: 520px) {
	.cl-payment-card__logo svg { width: 180px; }
}
.cl-payment-card__title {
	font-size: 26px;
	font-weight: 800;
	color: #0d0d0d;
	margin: 0 0 8px;
	line-height: 1.15;
	letter-spacing: -.01em;
}
.cl-payment-card__subtitle {
	font-size: 15px;
	color: #5e5e5e;
	margin: 0 0 22px;
	line-height: 1.5;
}
.cl-payment-card__cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 18px 0 6px;
}
.cl-payment-card__card {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e7dcc1;
	border-radius: 8px;
	padding: 6px 10px;
	height: 38px;
	min-width: 60px;
	box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.cl-payment-card__card svg { display: block; height: 22px; width: auto; max-width: 64px; }
.cl-payment-card__cta { margin-top: 22px; }

@media (max-width: 520px) {
	.cl-payment-methods { padding: 32px 16px; }
	.cl-payment-card { padding: 26px 20px; border-radius: 18px; }
	.cl-payment-card__title { font-size: 21px; }
	.cl-payment-card__cards { gap: 6px; }
	.cl-payment-card__card { padding: 4px 8px; height: 32px; min-width: 52px; }
	.cl-payment-card__card svg { height: 18px; max-width: 52px; }
}

/* Admin: the cl-pm-card-opt looks tighter inside the checkbox grid */
.cl-pm-card-opt {
	padding: 6px 10px;
	background: #fbf6eb;
	border: 1px solid #e7dcc1;
	border-radius: 8px;
	font-size: 13px;
}


/* ============================================================
   Products select — Cyber mode (landing-only sale styling)
   ============================================================ */

/* Card adopts a hot-deal vibe when cyber is on. */
.cl-ps-card--cyber {
	border-color: #ff8a3d;
	background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
	box-shadow: 0 6px 20px rgba(255, 100, 0, 0.08);
}
.cl-ps-card--cyber:hover {
	border-color: #ff5a1a;
	box-shadow: 0 16px 36px rgba(255, 100, 0, 0.18);
}

/* Top-left badge: "⚡ CYBER CORRALES" */
.cl-ps-cyber-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 11px 6px 9px;
	background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
	color: #fff;
	font: 800 11px/1 var(--cc-display, "Bricolage Grotesque", -apple-system, sans-serif);
	letter-spacing: .08em;
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(238, 9, 121, 0.35);
	text-transform: uppercase;
}
.cl-ps-cyber-badge__bolt {
	font-size: 12px;
	animation: cl-cyber-bolt 1.4s ease-in-out infinite;
}
@keyframes cl-cyber-bolt {
	0%,   50%, 100% { transform: scale(1)   rotate(0deg); }
	20%,  70%       { transform: scale(1.2) rotate(-8deg); }
	35%,  85%       { transform: scale(1.05) rotate(6deg); }
}

/* Media needs position:relative so the badge anchors correctly. */
.cl-ps-card--cyber .cl-ps-card__media { position: relative; }

/* The two-tier price block. */
.cl-ps-cyber-price {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 4px;
}

/* Top row: "Precio normal" + struck-through amount. */
.cl-ps-cyber-price__regular {
	display: flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
}
.cl-ps-cyber-price__regular-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #888;
	font-weight: 600;
}
.cl-ps-cyber-price__regular-amount {
	font-size: 14px;
	color: #888;
	text-decoration: line-through;
	font-weight: 500;
}
.cl-ps-cyber-price__regular-amount .amount,
.cl-ps-cyber-price__regular-amount bdi { color: inherit; font-weight: inherit; }

/* Sale row: 🔥 + "CYBER CORRALES" + big sale amount. */
.cl-ps-cyber-price__sale {
	display: flex;
	align-items: baseline;
	gap: 6px;
	padding: 8px 10px;
	background: linear-gradient(135deg, #1a0f0a 0%, #2d1410 100%);
	border-radius: 10px;
	color: #fff;
	box-shadow: inset 0 0 0 1px rgba(255, 138, 61, 0.25);
}
.cl-ps-cyber-price__sale-flame {
	font-size: 17px;
	line-height: 1;
	display: inline-block;
	transform-origin: 50% 90%;
	animation: cl-cyber-flame 1.1s ease-in-out infinite;
	filter: drop-shadow(0 0 6px rgba(255, 138, 61, 0.6));
}
@keyframes cl-cyber-flame {
	0%,   100% { transform: scale(1)    translateY(0)    rotate(-2deg); }
	25%        { transform: scale(1.12) translateY(-1px) rotate(3deg); }
	50%        { transform: scale(0.96) translateY(0)    rotate(-3deg); }
	75%        { transform: scale(1.08) translateY(-1px) rotate(2deg); }
}
.cl-ps-cyber-price__sale-label {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: #ffb86b;
}
.cl-ps-cyber-price__sale-amount {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	margin-left: auto;
}
.cl-ps-cyber-price__sale-amount .amount,
.cl-ps-cyber-price__sale-amount bdi {
	color: inherit;
	font-weight: inherit;
}

/* Slider variant of cyber: slightly bigger sale price in the focal card. */
.cl-ps-slide.is-active .cl-ps-card--cyber .cl-ps-cyber-price__sale-amount { font-size: 23px; }

@media (max-width: 520px) {
	.cl-ps-cyber-price__sale { padding: 8px; }
	.cl-ps-cyber-price__sale-amount { font-size: 18px; }
}


/* ============================================================
   Products select grid — flex with centered last row
   (replaces the old inline `display:grid` so 5 items in a
   3-col layout center the last row of 2 instead of clipping
   to the left.)
   ============================================================ */
.cl-ps-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px;
}
.cl-ps-grid > .cl-ps-card {
	min-width: 0;
	box-sizing: border-box;
}
.cl-ps-grid--cols-2 > .cl-ps-card { flex: 0 1 calc((100% - 22px) / 2);  max-width: calc((100% - 22px) / 2); }
.cl-ps-grid--cols-3 > .cl-ps-card { flex: 0 1 calc((100% - 44px) / 3);  max-width: calc((100% - 44px) / 3); }
.cl-ps-grid--cols-4 > .cl-ps-card { flex: 0 1 calc((100% - 66px) / 4);  max-width: calc((100% - 66px) / 4); }
@media (max-width: 900px) {
	.cl-ps-grid--cols-3 > .cl-ps-card,
	.cl-ps-grid--cols-4 > .cl-ps-card {
		flex-basis: calc((100% - 22px) / 2);
		max-width:  calc((100% - 22px) / 2);
	}
}
@media (max-width: 520px) {
	.cl-ps-grid > .cl-ps-card {
		flex-basis: 100%;
		max-width: 100%;
	}
}

/* ============================================================
   Deal banner — Cyber mode
   (same visual language as the products card cyber mode, scaled
   up to fit the banner's larger info column.)
   ============================================================ */
.cl-deal-banner__cyber-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px 8px 11px;
	background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
	color: #fff;
	font: 800 12px/1 var(--cc-display, "Bricolage Grotesque", -apple-system, sans-serif);
	letter-spacing: .12em;
	border-radius: 999px;
	box-shadow: 0 6px 20px rgba(238, 9, 121, 0.4);
	text-transform: uppercase;
	margin-bottom: 16px;
	text-shadow: none;
}
.cl-deal-banner__cyber-bolt {
	font-size: 14px;
	animation: cl-cyber-bolt 1.4s ease-in-out infinite; /* shares keyframes with products */
}

.cl-deal-banner__cyber-price {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 22px;
	text-shadow: none;
}
.cl-deal-banner__cyber-price-regular {
	display: flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
}
.cl-deal-banner__cyber-price-regular-label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: rgba(255,255,255,0.7);
	font-weight: 700;
}
.cl-deal-banner__cyber-price-regular-amount {
	font-size: 16px;
	color: rgba(255,255,255,0.65);
	text-decoration: line-through;
	font-weight: 500;
}
.cl-deal-banner__cyber-price-regular-amount .amount,
.cl-deal-banner__cyber-price-regular-amount bdi {
	color: inherit;
	font-weight: inherit;
}
.cl-deal-banner__cyber-price-sale {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: linear-gradient(135deg, #1a0f0a 0%, #3a1a14 100%);
	border-radius: 12px;
	box-shadow: inset 0 0 0 1px rgba(255, 138, 61, 0.3),
	            0 8px 24px rgba(255, 90, 26, 0.2);
	flex-wrap: wrap;
	max-width: 420px;
}
.cl-deal-banner__cyber-price-flame {
	font-size: 22px;
	line-height: 1;
	display: inline-block;
	transform-origin: 50% 90%;
	animation: cl-cyber-flame 1.1s ease-in-out infinite; /* shared keyframes */
	filter: drop-shadow(0 0 8px rgba(255, 138, 61, 0.7));
}
.cl-deal-banner__cyber-price-label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: #ffb86b;
}
.cl-deal-banner__cyber-price-amount {
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	margin-left: auto;
	line-height: 1;
}
.cl-deal-banner__cyber-price-amount .amount,
.cl-deal-banner__cyber-price-amount bdi {
	color: inherit;
	font-weight: inherit;
}
.cl-deal-banner__cyber-discount {
	background: #ee0979;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 5px 11px;
	border-radius: 999px;
	margin-left: 4px;
}
.cl-deal-banner__cyber-cuotas {
	font-size: 14px;
	color: rgba(255,255,255,0.78);
	margin-top: 2px;
}

@media (max-width: 768px) {
	.cl-deal-banner__cyber-price-amount { font-size: 26px; }
	.cl-deal-banner__cyber-price-flame { font-size: 18px; }
	.cl-deal-banner__cyber-price-sale { padding: 10px 12px; }
}


/* ============================================================
   Extra button variants (plugin-scoped, prefixed cl-btn--*).
   Pair these with the theme's `.cc-btn` base so padding/font/
   transitions come from the theme.
   ============================================================ */
.cl-btn--white {
	background: #fff;
	color: #0d0d0d !important;
	border: 1px solid transparent;
}
.cl-btn--white:hover { background: #f5f5f5; }

.cl-btn--gradient-cyber {
	background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
	color: #fff !important;
	border: 0;
	box-shadow: 0 10px 24px rgba(238, 9, 121, 0.32);
}
.cl-btn--gradient-cyber:hover { filter: brightness(1.08); transform: translateY(-1px); }

.cl-btn--gradient-gold {
	background: linear-gradient(135deg, #f7c873 0%, #b88b3b 100%);
	color: #0d0d0d !important;
	border: 0;
	box-shadow: 0 8px 22px rgba(184, 139, 59, 0.28);
}
.cl-btn--gradient-gold:hover { filter: brightness(1.05); transform: translateY(-1px); }

.cl-btn--outline-white {
	background: transparent;
	color: #fff !important;
	border: 1.5px solid rgba(255,255,255,0.85);
}
.cl-btn--outline-white:hover { background: rgba(255,255,255,0.12); }

.cl-btn--outline-dark {
	background: transparent;
	color: #0d0d0d !important;
	border: 1.5px solid #0d0d0d;
}
.cl-btn--outline-dark:hover { background: rgba(13,13,13,0.06); }


/* ============================================================
   Deal banner — embedded countdown
   Renders between the price block and the CTA inside the deal
   banner's info column. Light/dark friendly: the digit pill uses
   a translucent background that picks up the surrounding theme.
   ============================================================ */
.cl-deal-banner__countdown {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 8px 0 20px;
}
.cl-deal-banner__countdown-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .18em;
	opacity: .8;
}
.cl-deal-banner__countdown-cells {
	display: inline-flex;
	gap: 8px;
	font-variant-numeric: tabular-nums;
}
.cl-deal-banner__countdown-cell {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: rgba(0,0,0,0.55);
	color: #fff;
	border-radius: 10px;
	padding: 10px 12px 8px;
	min-width: 64px;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.cl-deal-banner__countdown-cell strong {
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
	color: #ffb86b;
}
.cl-deal-banner__countdown-cell small {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: rgba(255,255,255,0.72);
	font-weight: 700;
}
/* When the countdown reaches zero the JS replaces the cells with
   a single done-message div. */
.cl-countdown__done {
	font-size: 18px;
	font-weight: 800;
	padding: 12px 18px;
	border-radius: 10px;
	background: #1a1a1a;
	color: #ffb86b;
	display: inline-block;
}
@media (max-width: 600px) {
	.cl-deal-banner__countdown-cell strong { font-size: 22px; }
	.cl-deal-banner__countdown-cell { min-width: 54px; padding: 8px 10px; }
}
