/**
 * Starter Adult Shop — Front Page Styles
 */
:root {
	--c-primary: #2d2235;
	--c-secondary: #3d2f4a;
	--c-accent: #e8628a;
	--c-accent-lt: #f48ba6;
	--c-gold: #d4a0b9;
	--c-surface: #fdf5f8;
	--c-white: #fff;
	--c-text: #2d2235;
	--c-muted: #8a7b8e;
	--c-border: #f0dce4;
	--ff-heading: 'Playfair Display', serif;
	--ff-body: 'Inter', sans-serif;
	--r-sm: 6px;
	--r-md: 10px;
	--r-lg: 16px;
	--shadow: 0 2px 12px rgba(45,34,53,.08);
	--tr: .3s ease;
}
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--ff-body); color: var(--c-text); }

/* ===== Buttons ===== */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--ff-body); font-weight: 600; font-size: .875rem;
	letter-spacing: .04em; text-transform: uppercase; text-decoration: none;
	padding: .75rem 1.75rem; border-radius: var(--r-sm); border: 2px solid transparent;
	cursor: pointer; transition: var(--tr);
}
.btn--accent { background: var(--c-accent); color: var(--c-white); border-color: var(--c-accent); }
.btn--accent:hover { background: var(--c-accent-lt); border-color: var(--c-accent-lt); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,.4); }
.btn--outline:hover { border-color: var(--c-white); background: rgba(255,255,255,.08); }
.btn--lg { padding: 1rem 2.25rem; font-size: .95rem; }
.btn--sm { padding: .5rem 1.25rem; font-size: .75rem; }

/* ===== Hero Slider ===== */
.fp-hero-slider {
	position: relative; overflow: hidden;
	background: linear-gradient(135deg, #2d2235 0%, #4a2848 50%, #6b3a5e 100%);
	color: var(--c-white);
}
.fp-hero-slider__track { position: relative; overflow: hidden; }
.fp-hero-slide {
	position: absolute; inset: 0; width: 100%; height: 100%;
	display: flex; flex-direction: column;
	padding: 4rem 2rem;
	background-size: cover; background-position: center;
	opacity: 0; visibility: hidden;
	transition: opacity .8s ease, visibility .8s ease;
	z-index: 0;
}
.fp-hero-slide::before {
	content: ''; position: absolute; inset: 0;
	background: var(--slide-overlay, rgba(45,34,53,.6));
	z-index: 1; pointer-events: none;
}
.fp-hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.fp-hero-slide__inner {
	position: relative; z-index: 3;
	max-width: 900px; width: 100%;
}
/* text animation on active slide */
.fp-hero-slide.active .fp-hero__badge,
.fp-hero-slide.active .fp-hero__title,
.fp-hero-slide.active .fp-hero__desc,
.fp-hero-slide.active .fp-hero__actions {
	animation: heroFadeUp .7s ease both;
}
.fp-hero-slide.active .fp-hero__badge   { animation-delay: .1s; }
.fp-hero-slide.active .fp-hero__title   { animation-delay: .25s; }
.fp-hero-slide.active .fp-hero__desc    { animation-delay: .4s; }
.fp-hero-slide.active .fp-hero__actions { animation-delay: .55s; }

@keyframes heroFadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Arrows */
.fp-hero-slider__arrow {
	position: absolute; top: 50%; z-index: 10;
	transform: translateY(-50%);
	background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
	color: var(--c-white); border-radius: 50%;
	width: 44px; height: 44px;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer; transition: var(--tr); backdrop-filter: blur(4px);
}
.fp-hero-slider__arrow:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.4); }
.fp-hero-slider__arrow--prev { left: 1.5rem; }
.fp-hero-slider__arrow--next { right: 1.5rem; }

/* Dots */
.fp-hero-slider__dots {
	position: absolute; bottom: 1.5rem; left: 50%; z-index: 10;
	transform: translateX(-50%);
	display: flex; gap: .5rem;
}
.fp-hero-slider__dot {
	width: 10px; height: 10px; border-radius: 50%;
	background: rgba(255,255,255,.35); border: none;
	cursor: pointer; transition: var(--tr); padding: 0;
}
.fp-hero-slider__dot.active,
.fp-hero-slider__dot:hover { background: var(--c-accent); transform: scale(1.2); }
.fp-hero__badge {
	display: inline-block; background: var(--c-accent); color: var(--c-white);
	font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
	padding: .35rem .9rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.fp-hero__title {
	font-family: var(--ff-heading); font-weight: 700;
	line-height: 1.15; margin: 0 0 1rem;
}
.fp-hero__desc {
	color: rgba(255,255,255,.75); line-height: 1.7;
	margin: 0 auto 2rem;
}
.fp-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Trust Bar ===== */
.fp-trust { background: var(--c-white); border-bottom: 1px solid var(--c-border); }
.fp-trust__inner {
	max-width: 1200px; margin: 0 auto; padding: 1.5rem 2rem;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.fp-trust__item {
	display: flex; align-items: center; gap: .75rem;
}
.fp-trust__item svg { flex-shrink: 0; color: var(--c-gold); }
.fp-trust__item strong { display: block; font-size: .85rem; color: var(--c-text); }
.fp-trust__item span { font-size: .75rem; color: var(--c-muted); }

/* ===== Section Common ===== */
.fp-section { padding: 4rem 2rem; }
.fp-section:nth-child(even) { background: var(--c-surface); }
.fp-section__inner { max-width: 1200px; margin: 0 auto; }
.fp-section__head {
	display: flex; justify-content: space-between; align-items: baseline;
	margin-bottom: 2rem;
}
.fp-section__title {
	font-family: var(--ff-heading); font-size: 1.75rem; font-weight: 600;
	color: var(--c-primary); margin: 0;
}
.fp-section__link {
	font-size: .85rem; font-weight: 600; color: var(--c-accent);
	text-decoration: none; transition: var(--tr);
}
.fp-section__link:hover { color: var(--c-accent-lt); }

/* Section empty placeholder */
.fp-section__empty {
	text-align: center; color: var(--c-muted); font-size: .9rem;
	padding: 3rem 1rem; background: var(--c-white); border-radius: var(--r-md);
	border: 1px dashed var(--c-border);
}

/* ===== Category Grid ===== */
.fp-cat-grid {
	display: grid; gap: 1.25rem;
}
.fp-cat-card {
	position: relative; overflow: hidden;
	text-decoration: none; color: var(--c-white);
	display: flex; align-items: flex-end;
}
.fp-cat-card__img {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	transition: transform .5s ease;
}
.fp-cat-card::after {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(45,34,53,.7) 0%, rgba(107,58,94,.2) 40%, transparent 70%);
	z-index: 1;
}
.fp-cat-card:hover .fp-cat-card__img { transform: scale(1.06); }
.fp-cat-card__info {
	position: relative; z-index: 2; padding: 1.25rem;
}
.fp-cat-card__info h3 {
	font-family: var(--ff-heading); font-size: 1.15rem; font-weight: 600;
	margin: 0 0 .15rem; color: var(--c-white);
}
.fp-cat-card__info span { font-size: .75rem; opacity: .8; }

/* ===== Product Grid ===== */
.fp-product-grid { display: grid; gap: 1.25rem; }
.fp-product-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Product Card ===== */
.fp-pcard {
	background: var(--c-white); border-radius: var(--r-md); overflow: hidden;
	box-shadow: var(--shadow); transition: var(--tr);
	display: flex; flex-direction: column;
}
.fp-pcard:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(232,98,138,.12); }
.fp-pcard__img-wrap {
	position: relative; overflow: hidden;
	display: block;
}
.fp-pcard__img-wrap img {
	width: 100%; height: 100%; object-fit: cover; display: block;
	transition: transform .4s ease;
}
.fp-pcard:hover .fp-pcard__img-wrap img { transform: scale(1.05); }
.fp-pcard__badge {
	position: absolute; top: .6rem; left: .6rem; z-index: 2;
	font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
	padding: .25rem .6rem; border-radius: var(--r-sm); color: var(--c-white);
}
.fp-pcard__badge--sale { background: var(--c-accent); }
.fp-pcard__badge--new { background: var(--c-gold); }
.fp-pcard__body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.fp-pcard__meta { display: flex; align-items: center; gap: .5rem; margin-bottom: .35rem; flex-wrap: wrap; }
.fp-pcard__stock {
	font-size: .65rem; font-weight: 600; font-family: var(--ff-body);
	padding: .15rem .5rem; border-radius: 4px; text-transform: lowercase;
}
.fp-pcard__stock--in { background: rgba(34, 197, 94, .12); color: #22c55e; }
.fp-pcard__stock--out { background: rgba(239, 68, 68, .12); color: #ef4444; }
.fp-pcard__title {
	font-family: var(--ff-heading); font-size: .95rem; font-weight: 500;
	color: var(--c-primary); text-decoration: none; line-height: 1.35;
	margin-bottom: .35rem; transition: var(--tr);
}
.fp-pcard__title:hover { color: var(--c-accent); }
.fp-pcard__rating { margin-bottom: .35rem; font-size: .8rem; }
.star { color: var(--c-border); }
.star--filled { color: var(--c-gold); }
.fp-pcard__price {
	font-size: .95rem; font-weight: 600; color: var(--c-accent); margin-top: auto;
}
.fp-pcard__price del { color: var(--c-muted); font-weight: 400; font-size: .8rem; }
.fp-pcard__price ins { text-decoration: none; }
.fp-pcard__savings {
	font-size: .7rem; color: var(--c-muted); font-family: var(--ff-body); margin-top: .2rem;
}
.fp-pcard__savings .woocommerce-Price-amount { text-decoration: line-through; }
.fp-pcard__btn { margin-top: .75rem; width: 100%; text-align: center; }

/* ===== Promo Banner ===== */
.fp-promo {
	background: linear-gradient(135deg, #3d2f4a 0%, #5c3a5e 50%, #2d2235 100%);
	color: var(--c-white); padding: 4rem 2rem; text-align: center;
}
.fp-promo__inner { max-width: 640px; margin: 0 auto; }
.fp-promo__badge {
	display: inline-block; background: var(--c-accent); color: var(--c-white);
	font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
	padding: .3rem .8rem; border-radius: 50px; margin-bottom: 1rem;
}
.fp-promo__title {
	font-family: var(--ff-heading); font-size: 2rem; font-weight: 700;
	margin: 0 0 .75rem;
}
.fp-promo p { color: rgba(255,255,255,.7); margin: 0 0 1.5rem; line-height: 1.6; }

/* ===== Age Gate ===== */
.age-gate {
	display: none; position: fixed; inset: 0; z-index: 999999;
	background: rgba(0,0,0,.85); backdrop-filter: blur(8px);
	align-items: center; justify-content: center;
}
.age-gate.active { display: flex; }
.age-gate__box {
	background: var(--c-white); border-radius: var(--r-lg); padding: 2.5rem;
	max-width: 420px; width: 90%; text-align: center;
}
.age-gate__box h2 {
	font-family: var(--ff-heading); font-size: 1.5rem; margin: 0 0 .75rem; color: var(--c-primary);
}
.age-gate__box p { color: var(--c-muted); margin: 0 0 1.5rem; }
.age-gate__btns { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1rem; }
.age-gate__btns .btn--outline { color: var(--c-muted); border-color: var(--c-border); }
.age-gate__btns .btn--outline:hover { background: var(--c-surface); }
.age-gate__box small { font-size: .7rem; color: var(--c-muted); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.fp-product-grid--4 { grid-template-columns: repeat(3, 1fr); }
	.fp-trust__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.fp-hero-slide { padding: 3rem 1.5rem; }
	.fp-hero__title { font-size: 2.25rem !important; }
	.fp-product-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.fp-section { padding: 3rem 1.5rem; }
	.fp-promo__title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
	.fp-hero__title { font-size: 1.75rem !important; }
	.fp-hero__actions { flex-direction: column; }
	.fp-hero-slider__arrow { width: 36px; height: 36px; }
	.fp-hero-slider__arrow--prev { left: .75rem; }
	.fp-hero-slider__arrow--next { right: .75rem; }
	.fp-product-grid--4 { grid-template-columns: 1fr; }
	.fp-trust__inner { grid-template-columns: 1fr; }
}

/* ===== Scroll Reveal ===== */
.fp-pcard, .fp-cat-card, .fp-trust__item {
	opacity: 0; transform: translateY(20px);
	transition: opacity .5s ease, transform .5s ease;
}
.fp-pcard.revealed, .fp-cat-card.revealed, .fp-trust__item.revealed {
	opacity: 1; transform: translateY(0);
}

/* ===== Showcase Banners ===== */
.fp-showcase-card {
	position: relative;
	overflow: hidden;
	display: block;
	text-decoration: none;
}
.fp-showcase-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.fp-showcase-card:hover img {
	transform: scale(1.05);
}
.fp-showcase-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.45) 100%);
	padding: 1rem;
}
.fp-showcase-card__title {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,.4);
	margin: 0;
	text-align: center;
}
.fp-showcase-card {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .5s ease, transform .5s ease;
}
.fp-showcase-card.revealed {
	opacity: 1;
	transform: translateY(0);
}
@media (max-width: 768px) {
	.fp-showcase-card__title { font-size: 1.1rem; }
}

/* ===== Features Slider (Why Choose Us) ===== */
.fp-features { overflow: hidden; }
.fp-section__head--center { justify-content: center; text-align: center; }
.fp-section__sub { color: var(--c-muted); font-size: .95rem; margin: .5rem 0 0; }
.fp-features__slider { overflow: hidden; }
.fp-features__track {
	display: flex; gap: 1.25rem;
	transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.fp-features__card {
	flex: 0 0 calc((100% - 1.25rem * 2) / 3);
	min-width: 0;
	background: var(--c-white);
	border-radius: var(--r-md);
	padding: 2.5rem 1.75rem;
	text-align: center;
	box-shadow: var(--shadow);
	transition: box-shadow .3s ease, transform .3s ease, opacity .5s ease;
	opacity: 0; transform: translateY(20px);
}
.fp-features__card.revealed { opacity: 1; transform: translateY(0); }
.fp-features__card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(232,98,138,.12); }
.fp-features__icon {
	width: 80px; height: 80px; margin: 0 auto 1.25rem;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, rgba(232,98,138,.1), rgba(212,160,185,.15));
	border-radius: 50%; font-size: 2.2rem;
}
.fp-features__icon img {
	width: 48px; height: 48px; object-fit: contain; border-radius: 0;
}
.fp-features__title {
	font-family: var(--ff-heading); font-size: 1.2rem; font-weight: 600;
	color: var(--c-primary); margin: 0 0 .75rem;
}
.fp-features__desc {
	font-size: .9rem; color: var(--c-muted); line-height: 1.7; margin: 0;
}

/* Arrows — on .fp-features__wrap, outside clipped slider */
.fp-features__wrap { position: relative; }
.fp-features__arrow {
	position: absolute; top: 50%; z-index: 10;
	transform: translateY(-50%);
	width: 48px; height: 48px; border-radius: 50%;
	background: var(--c-accent); border: none;
	color: #fff; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 16px rgba(232,98,138,.3);
	transition: var(--tr);
}
.fp-features__arrow svg { width: 22px; height: 22px; }
.fp-features__arrow:hover { background: var(--c-accent-lt); transform: translateY(-50%) scale(1.1); }
.fp-features__arrow--prev { left: -24px; }
.fp-features__arrow--next { right: -24px; }

/* Dots */
.fp-features__dots {
	display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem;
}
.fp-features__dot {
	width: 10px; height: 10px; border-radius: 50%;
	background: var(--c-border); border: none;
	cursor: pointer; transition: var(--tr); padding: 0;
}
.fp-features__dot.active,
.fp-features__dot:hover { background: var(--c-accent); transform: scale(1.2); }

/* Responsive */
@media (max-width: 768px) {
	.fp-features__card { flex: 0 0 calc((100% - 1.25rem) / 2); }
}
@media (max-width: 480px) {
	.fp-features__card { flex: 0 0 100%; }
}
