/* ── Hero Carousel ── */
.breezan-hero { position: relative; overflow: hidden; }
.breezan-hero__slides { position: relative; height: 520px; }
@media (min-width: 768px) { .breezan-hero__slides { height: 600px; } }
.breezan-hero__slide {
	position: absolute; inset: 0;
	opacity: 0; transition: opacity 0.7s ease;
	overflow: hidden; z-index: 0;
}
.breezan-hero__slide.is-active { opacity: 1; z-index: 1; }
.breezan-hero__dots {
	display: flex; justify-content: center; gap: 0.5rem;
	position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
	z-index: 20;
}
.breezan-hero__dot {
	width: 0.625rem; height: 0.625rem; border-radius: 9999px;
	background: rgba(0,0,0,0.2); border: none; cursor: pointer;
	transition: all 0.5s;
}
.breezan-hero__dot.is-active { width: 2rem; background: var(--breezan-primary); }
.breezan-hero__progress {
	height: 3px; background: rgba(0,0,0,0.08);
	position: absolute; bottom: 0; left: 0; right: 0; z-index: 20;
}
.breezan-hero__progress-bar {
	height: 100%; background: var(--breezan-primary);
	width: 0; transition: width 0.1s linear;
}

/* ── Hero layout helpers ── */
.breezan-hero__bg-solid,
.breezan-hero__bg-gradient { position: absolute; inset: 0; z-index: 0; }
.breezan-hero__bg-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; z-index: 0; }
.breezan-hero__overlay {
	position: absolute; inset: 0; z-index: 1;
	background:
		rgba(0,0,0,0.4),
		linear-gradient(to left, transparent, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}
.breezan-hero__glow {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
	width: 500px; height: 500px; border-radius: 50%;
	opacity: 0.07; filter: blur(100px);
	pointer-events: none; z-index: 1;
}

/* Blob decorations */
.breezan-hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 1; }
.breezan-hero__blob--1 { top: 0; left: 0; width: 400px; height: 300px; background: #d8bfe8; opacity: 0.3; filter: blur(80px); }
.breezan-hero__blob--2 { top: -40px; left: 100px; width: 250px; height: 200px; background: #c4a0db; opacity: 0.2; }

/* Centered layout (Perfume slide) */
.breezan-hero__centered {
	position: relative; z-index: 2;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	height: 100%; text-align: center; gap: 0.25rem;
	padding-block: 1.5rem;
}
.breezan-hero__product-center { position: relative; z-index: 2; flex-shrink: 1; min-height: 0; }
.breezan-hero__centered .breezan-hero__product-img {
	max-height: 320px;
}
@media (min-width: 768px) { .breezan-hero__centered .breezan-hero__product-img { max-height: 380px; } }
.breezan-hero__product-img {
	width: 260px; height: auto; object-fit: contain;
	filter: drop-shadow(0 25px 25px rgba(0,0,0,0.15));
}
@media (min-width: 768px) { .breezan-hero__product-img { width: 320px; } }
@media (min-width: 1024px) { .breezan-hero__product-img { width: 360px; } }

/* Split layout (Skincare slide) */
.breezan-hero__split {
	position: relative; z-index: 2;
	display: flex; flex-direction: column; align-items: center;
	height: 100%; padding-block: 2rem;
}
@media (min-width: 768px) {
	.breezan-hero__split {
		flex-direction: row; align-items: center; gap: 2rem;
	}
}
.breezan-hero__text-block { flex: 1; z-index: 2; }
.breezan-hero__product-side {
	flex: 1; position: relative;
	display: flex; align-items: center; justify-content: center;
	height: 100%;
}
.breezan-hero__product-side .breezan-hero__product-img { width: 280px; }
@media (min-width: 768px) { .breezan-hero__product-side .breezan-hero__product-img { width: 360px; } }

/* Row layout (Beauty slide with bg) */
.breezan-hero__row {
	position: relative; z-index: 2;
	display: flex; align-items: center; height: 100%;
}
.breezan-hero__row .breezan-hero__text-block { max-width: 520px; }

/* Titles */
.breezan-hero__title {
	font-size: 2rem; line-height: 1.5; color: #1f2937;
	margin-bottom: 0.5rem; font-weight: 700;
}
@media (min-width: 768px) { .breezan-hero__title { font-size: 2.75rem; } }
@media (min-width: 1024px) { .breezan-hero__title { font-size: 3.5rem; } }
.breezan-hero__title--beauty { color: #fff; }
.breezan-hero__accent--warm { color: #d4967a; }
.breezan-hero__accent--gold { color: #cc9966; }
.breezan-hero__accent--purple { color: #8b6aae; }

/* Labels & descriptions */
.breezan-hero__label { font-size: 0.875rem; margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.breezan-hero__desc { font-size: 0.875rem; color: #6b7280; line-height: 1.8; margin-bottom: 1.75rem; max-width: 400px; }
.breezan-hero__desc--light { color: #e5e7eb; }

/* Floating badges (Skincare slide) */
.breezan-hero__badge {
	position: absolute; display: none; align-items: center; gap: 0.5rem;
	background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
	border-radius: 9999px; padding: 0.5rem 1rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	font-size: 0.75rem; color: #374151; white-space: nowrap;
}
@media (min-width: 768px) { .breezan-hero__badge { display: flex; } }
.breezan-hero__badge--top { top: 4rem; left: 2rem; }
.breezan-hero__badge--bottom { bottom: 7rem; right: 1rem; }
.breezan-hero__badge-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; flex-shrink: 0; }

/* Button variants for hero */
.breezan-btn--outline-warm {
	border: 2px solid #d4967a; color: #d4967a; background: transparent;
	transition: background 0.3s, color 0.3s;
}
.breezan-btn--outline-warm:hover { background: #d4967a; color: #fff; }
.breezan-btn--gold { background: #cc9966; color: #fff; }
.breezan-btn--gold:hover { background: #b8864f; }
.breezan-btn--purple { background: #8b6aae; color: #fff; }
.breezan-btn--purple:hover { background: #7a5c9e; }

/* ── Categories ── */
.breezan-categories {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 1rem;
}
@media (min-width: 768px) { .breezan-categories { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1.5rem; } }
.breezan-category-card {
	display: flex; flex-direction: column; align-items: center;
	gap: 0.75rem; text-align: center;
	transition: transform 0.3s;
}
.breezan-category-card:hover { transform: translateY(-4px); }
.breezan-category-card__image {
	width: 100px; height: 100px; border-radius: 50%;
	overflow: hidden; background: var(--breezan-bg-soft);
	border: 2px solid var(--breezan-border);
	transition: border-color 0.3s;
}
.breezan-category-card:hover .breezan-category-card__image { border-color: var(--breezan-primary); }
.breezan-category-card__image img { width: 100%; height: 100%; object-fit: cover; }
.breezan-category-card__name { font-size: 0.8125rem; font-weight: 500; color: var(--breezan-text); }

/* ── Banner ── */
.breezan-banner { padding-block: 2rem; }
.breezan-banner__card {
	border-radius: var(--breezan-radius-lg);
	padding: 3rem 2rem;
	text-align: center;
}
@media (min-width: 768px) { .breezan-banner__card { padding: 4rem 3rem; } }

/* ── Deals Timer ── */
.breezan-deals-timer {
	display: flex; justify-content: center; align-items: center;
	gap: 0.25rem; margin-bottom: 2rem;
}
.breezan-deals-timer__item {
	display: flex; flex-direction: column; align-items: center;
	background: var(--breezan-primary); color: #fff;
	border-radius: var(--breezan-radius-sm);
	padding: 0.5rem 0.75rem; min-width: 3.5rem;
}
.breezan-deals-timer__item span { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.breezan-deals-timer__item small { font-size: 0.625rem; margin-top: 0.125rem; }
.breezan-deals-timer__sep { font-size: 1.5rem; font-weight: 700; color: var(--breezan-primary); }

/* ── Testimonials ── */
.breezan-testimonials {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 640px) { .breezan-testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .breezan-testimonials { grid-template-columns: repeat(4, 1fr); } }
.breezan-testimonial-card {
	background: #fff; border-radius: var(--breezan-radius);
	padding: 1.5rem; border: 1px solid var(--breezan-border);
	display: flex; flex-direction: column; gap: 0.75rem;
}
.breezan-testimonial-card__stars { display: flex; gap: 0.125rem; }
.breezan-testimonial-card__text { font-size: 0.875rem; color: var(--breezan-text-light); line-height: 1.8; flex: 1; }
.breezan-testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.breezan-testimonial-card__avatar {
	width: 2.5rem; height: 2.5rem; border-radius: 50%;
	background: linear-gradient(135deg, var(--breezan-primary), #e8b87a);
	color: #fff; display: flex; align-items: center; justify-content: center;
	font-size: 0.875rem; font-weight: 600;
}
.breezan-testimonial-card__name { font-size: 0.8125rem; font-weight: 600; color: var(--breezan-text); }

/* ── Section helpers ── */
.breezan-section--white { background: #fff; }
.breezan-section--nopad { padding-block: 2rem; }

/* ── Category count ── */
.breezan-category-card__count { font-size: 0.6875rem; color: var(--breezan-text-muted); }

/* ── Full-width banner (FaceSkin/Perfume) ── */
.breezan-fullbanner {
	position: relative; border-radius: var(--breezan-radius-lg); overflow: hidden;
	min-height: 400px; display: flex; align-items: center;
}
@media (min-width: 768px) { .breezan-fullbanner { min-height: 450px; } }
.breezan-fullbanner__bg {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; object-position: top;
}
.breezan-fullbanner__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to left, transparent, rgba(0,0,0,0.3), rgba(0,0,0,0.65));
}
.breezan-fullbanner__content {
	position: relative; z-index: 2;
	padding: 2rem; max-width: 500px;
}
@media (min-width: 768px) { .breezan-fullbanner__content { padding: 3rem 4rem; } }
.breezan-fullbanner__label {
	color: #cc9966; font-size: 0.75rem; margin-bottom: 0.75rem;
	letter-spacing: 0.1em; text-transform: uppercase;
}
.breezan-fullbanner__title {
	color: #fff; font-size: 1.5rem; line-height: 1.6; margin-bottom: 1rem;
}
@media (min-width: 768px) { .breezan-fullbanner__title { font-size: 1.875rem; } }
.breezan-fullbanner__desc {
	color: #d1d5db; font-size: 0.875rem; line-height: 1.8;
	margin-bottom: 2rem; max-width: 420px;
}

/* ── Split banner (Beauty / Special Offer / Before-After) ── */
.breezan-splitbanner {
	display: flex; flex-direction: column; gap: 2rem;
	background: linear-gradient(to left, #fdf2f0, #f9f5f2);
	border-radius: var(--breezan-radius-lg); overflow: hidden;
}
@media (min-width: 768px) { .breezan-splitbanner { flex-direction: row; align-items: center; } }
.breezan-splitbanner--reverse { background: transparent; }
@media (min-width: 768px) { .breezan-splitbanner--reverse { flex-direction: row; } }
.breezan-splitbanner__image { flex: 1; position: relative; }
.breezan-splitbanner__image img {
	width: 100%; height: 300px; object-fit: cover;
}
@media (min-width: 768px) { .breezan-splitbanner__image img { height: 400px; } }
.breezan-splitbanner__image--rounded img { border-radius: var(--breezan-radius-lg); }
.breezan-splitbanner__text { flex: 1; padding: 2rem; }
@media (min-width: 768px) { .breezan-splitbanner__text { padding: 3rem; } }
.breezan-splitbanner__label {
	color: var(--breezan-primary); font-size: 0.875rem;
	margin-bottom: 0.75rem; letter-spacing: 0.05em;
}
.breezan-splitbanner__title {
	font-size: 1.5rem; color: var(--breezan-text); line-height: 1.6;
	margin-bottom: 1rem;
}
@media (min-width: 768px) { .breezan-splitbanner__title { font-size: 1.875rem; } }
.breezan-splitbanner__title--accent { }
.breezan-splitbanner__desc {
	color: #6b7280; font-size: 0.875rem; line-height: 1.8;
	margin-bottom: 2rem; max-width: 420px;
}

/* ── Before/After labels ── */
.breezan-ba-label {
	position: absolute; bottom: 1rem; padding: 0.375rem 1rem;
	border-radius: 9999px; font-size: 0.875rem;
	backdrop-filter: blur(8px);
}
.breezan-ba-label--before { right: 1rem; background: rgba(255,255,255,0.9); color: #374151; }
.breezan-ba-label--after  { left: 1rem; background: rgba(204,153,102,0.9); color: #fff; }

/* ── Stats row ── */
.breezan-stats { display: flex; gap: 2rem; margin-bottom: 2rem; }
.breezan-stats__item { text-align: center; }
.breezan-stats__value { display: block; font-size: 1.5rem; color: var(--breezan-primary); font-weight: 700; }
@media (min-width: 768px) { .breezan-stats__value { font-size: 1.875rem; } }
.breezan-stats__label { font-size: 0.6875rem; color: #9ca3af; margin-top: 0.25rem; }

/* ── Dark button ── */
.breezan-btn--dark { background: #1f2937; color: #fff; }
.breezan-btn--dark:hover { background: #111827; }

/* ── Deals timer dark variant ── */
.breezan-deals-timer__item--dark {
	background: #1f2937; color: #fff;
	border-radius: var(--breezan-radius); padding: 0.5rem 0.75rem; min-width: 3.5rem;
	display: flex; flex-direction: column; align-items: center;
}
.breezan-deals-timer__item--dark span { font-size: 1.25rem; font-weight: 700; line-height: 1; }
.breezan-deals-timer__item--dark small { font-size: 0.625rem; color: #9ca3af; margin-top: 0.125rem; }

/* ── Duo cards (Love Skin) ── */
.breezan-duo-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 768px) { .breezan-duo-cards { gap: 1.5rem; } }
.breezan-duo-card {
	position: relative; border-radius: var(--breezan-radius-lg); overflow: hidden;
	display: block;
}
.breezan-duo-card img {
	width: 100%; height: 200px; object-fit: cover;
	transition: transform 0.5s;
}
@media (min-width: 768px) { .breezan-duo-card img { height: 320px; } }
.breezan-duo-card:hover img { transform: scale(1.05); }
.breezan-duo-card__overlay {
	position: absolute; bottom: 0; left: 0; right: 0;
	padding: 1.5rem;
	background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}
.breezan-duo-card__overlay h3 { color: #fff; font-size: 1.125rem; margin-bottom: 0.5rem; }

/* ── Testimonials — shadow style matching React ── */
.breezan-testimonial-card {
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	border: none;
	border-radius: 0.75rem;
}
