/* Adult Store Theme — Daily */

.adult-store-homepage {
	max-width: none;
	margin: 0;
	padding: 0;
}

.adult-store-homepage [data-module] {
	margin-bottom: 0;
	border: 0;
	border-radius: 0;
	overflow: visible;
}

/* ── Hero ── */
.adult-store-hp-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	background: var(--adult-store-bg);
	overflow: hidden;
}

.adult-store-hp-hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: #000000;
}

.adult-store-hp-hero__image,
.adult-store-hp-hero__fallback-image {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
	transform: translate(-50%, -50%);
}

.adult-store-hp-hero__video {
	position: absolute;
	inset: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	max-width: none;
	transform: none;
	object-fit: cover;
	object-position: center center;
	z-index: 0;
}

.adult-store-hp-hero__fallback-image {
	display: none;
	z-index: 0;
}

.adult-store-hp-hero.is-video-ready .adult-store-hp-hero__fallback-image {
	display: none;
}

.adult-store-hp-hero.is-video-failed .adult-store-hp-hero__video {
	display: none;
}

.adult-store-hp-hero.is-video-failed .adult-store-hp-hero__fallback-image {
	display: block;
}

.adult-store-hp-hero__placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.04) 0%, transparent 45%),
		linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.adult-store-hp-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.5) 100%),
		linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

.adult-store-hp-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 120px 24px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
	color: var(--adult-store-text);
}

.adult-store-hp-hero__title {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.6rem);
	line-height: 1.05;
	max-width: 12ch;
}

.adult-store-hp-hero__subtitle {
	margin: 0;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--adult-store-text-muted);
}

.adult-store-hp-hero__desc {
	margin: 0;
	max-width: 38ch;
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--adult-store-text-muted);
}

.adult-store-hp-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.adult-store-hp-hero__buttons .adult-store-showcase__btn--primary,
.adult-store-hp-hero__buttons .adult-store-showcase__btn--secondary {
	width: auto;
}

.adult-store-hp-hero .adult-store-showcase__btn--primary {
	background-color: var(--adult-store-button-bg);
	border-color: var(--adult-store-button-border);
	color: var(--adult-store-button-text);
}

.adult-store-hp-hero .adult-store-showcase__btn--secondary {
	background-color: rgba(0, 0, 0, 0.35);
	border-color: rgba(255, 255, 255, 0.4);
	color: var(--adult-store-text);
	backdrop-filter: blur(4px);
}

.adult-store-hp-hero .adult-store-showcase__btn--secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--adult-store-accent);
	color: var(--adult-store-text);
}

.adult-store-hp-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 28px;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: var(--adult-store-text-faint);
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.adult-store-hp-hero__scroll-icon {
	width: 22px;
	height: 34px;
	border: 1px solid var(--adult-store-border-strong);
	border-radius: 12px;
	position: relative;
}

.adult-store-hp-hero__scroll-icon::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 50%;
	width: 2px;
	height: 6px;
	transform: translateX(-50%);
	border-radius: 2px;
	background: var(--adult-store-accent);
	animation: adult-store-scroll-pulse 1.8s ease infinite;
}

@keyframes adult-store-scroll-pulse {
	0%, 100% { opacity: 0.35; transform: translateX(-50%) translateY(0); }
	50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ── ── */
.adult-store-hp-gender {
	background: var(--adult-store-bg);
}

.adult-store-hp-gender__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.adult-store-hp-gender__card {
	position: relative;
	min-height: 520px;
	overflow: hidden;
}

.adult-store-hp-gender__media {
	position: absolute;
	inset: 0;
}

.adult-store-hp-gender__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.adult-store-hp-gender__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(160deg, #121212 0%, #050505 100%);
}

.adult-store-hp-gender__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.adult-store-hp-gender__body {
	position: relative;
	z-index: 1;
	min-height: 520px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 10px;
	color: var(--adult-store-text);
}

.adult-store-hp-gender__title {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.adult-store-hp-gender__subtitle {
	margin: 0;
	font-size: 0.85rem;
	color: var(--adult-store-text-muted);
}

/* ── Tech product hero ── */
.adult-store-hp-tech {
	position: relative;
	isolation: isolate;
	padding: clamp(64px, 8vw, 104px) clamp(20px, 4vw, 40px) clamp(56px, 7vw, 88px);
	background:
		radial-gradient(ellipse 55% 48% at 50% 48%, rgba(201, 168, 106, 0.08) 0%, transparent 68%),
		radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 0, 0, 0.55) 0%, transparent 70%),
		var(--adult-store-bg-elevated, #0a0a0a);
	border-top: 1px solid var(--adult-store-border);
	border-bottom: 1px solid var(--adult-store-border);
	overflow: hidden;
}

.adult-store-hp-tech__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.adult-store-hp-tech__bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.22;
	filter: saturate(0.85) contrast(1.05);
}

.adult-store-hp-tech__bg-veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.28) 38%, rgba(5, 5, 5, 0.72) 100%),
		radial-gradient(ellipse 50% 45% at 50% 45%, transparent 0%, rgba(5, 5, 5, 0.55) 100%);
}

.adult-store-hp-tech__inner {
	position: relative;
	z-index: 1;
	width: min(100%, 1180px);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(28px, 4vw, 44px);
}

/* Header */
.adult-store-hp-tech__header {
	width: min(100%, 760px);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.adult-store-hp-tech__eyebrow {
	margin: 0;
	color: var(--adult-store-accent, #c9a86a);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	line-height: 1.4;
}

.adult-store-hp-tech__title {
	margin: 0;
	max-width: 16ch;
	color: var(--adult-store-text, #f5f5f5);
	font-size: clamp(1.65rem, 3.6vw, 2.75rem);
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.15;
}

.adult-store-hp-tech__desc {
	margin: 4px 0 0;
	max-width: 36rem;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.84rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.55;
}

/* Stage: points + product */
.adult-store-hp-tech__stage {
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 420px) minmax(0, 1fr);
	align-items: center;
	gap: clamp(16px, 3vw, 36px);
}

.adult-store-hp-tech__stage--visual-only {
	grid-template-columns: minmax(0, 1fr);
	justify-items: center;
}

.adult-store-hp-tech__stage--visual-only .adult-store-hp-tech__points--left,
.adult-store-hp-tech__stage--visual-only .adult-store-hp-tech__points--right {
	display: none;
}

.adult-store-hp-tech__points {
	display: flex;
	flex-direction: column;
	gap: 28px;
	min-width: 0;
}

.adult-store-hp-tech__points--left {
	align-items: flex-end;
	text-align: right;
}

.adult-store-hp-tech__points--right {
	align-items: flex-start;
	text-align: left;
}

.adult-store-hp-tech__points--mobile {
	display: none;
}

.adult-store-hp-tech__point {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	max-width: 220px;
}

.adult-store-hp-tech__points--left .adult-store-hp-tech__point {
	flex-direction: row-reverse;
}

.adult-store-hp-tech__point-marker {
	position: relative;
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	margin-top: 0.35rem;
	border-radius: 50%;
	background: radial-gradient(circle, var(--adult-store-accent) 0%, var(--adult-store-accent) 35%, transparent 40%);
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--adult-store-accent) 55%, transparent);
}

.adult-store-hp-tech__point-marker::after {
	content: "";
	position: absolute;
	inset: -5px;
	border: 1px solid color-mix(in srgb, var(--adult-store-accent) 55%, transparent);
	border-radius: 50%;
	opacity: 0;
	animation: mtpg-pulse 2.6s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes mtpg-pulse {
	0% {
		transform: scale(0.65);
		opacity: 0.75;
	}
	70% {
		opacity: 0.2;
	}
	100% {
		transform: scale(1.55);
		opacity: 0;
	}
}

.adult-store-hp-tech__point-copy {
	min-width: 0;
}

.adult-store-hp-tech__point-title {
	margin: 0;
	color: var(--adult-store-text, #f5f5f5);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1.4;
}

.adult-store-hp-tech__point-desc {
	margin: 6px 0 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.78rem;
	line-height: 1.5;
	letter-spacing: 0.02em;
	text-transform: none;
}

.adult-store-hp-tech__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	padding: 12px 8px 28px;
}

.adult-store-hp-tech__glow {
	position: absolute;
	left: 50%;
	top: 42%;
	width: 78%;
	height: 68%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201, 168, 106, 0.22) 0%, rgba(201, 168, 106, 0.05) 42%, transparent 70%);
	filter: blur(8px);
	pointer-events: none;
	z-index: 0;
}

.adult-store-hp-tech__pedestal {
	position: absolute;
	left: 50%;
	bottom: 8%;
	width: 62%;
	height: 18%;
	transform: translateX(-50%);
	border-radius: 50%;
	background: radial-gradient(ellipse, rgba(201, 168, 106, 0.18) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 72%);
	filter: blur(6px);
	pointer-events: none;
	z-index: 0;
}

.adult-store-hp-tech__structure {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	max-width: 380px;
	max-height: min(46vh, 440px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}

/* Unified action panel */
.adult-store-hp-tech__action {
	width: 100%;
	display: flex;
	justify-content: center;
}

.adult-store-hp-tech__panel {
	width: min(100%, 520px);
	padding: clamp(22px, 3vw, 28px) clamp(20px, 3vw, 28px);
	border: 1px solid color-mix(in srgb, var(--adult-store-accent, #c9a86a) 22%, rgba(255, 255, 255, 0.08));
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, transparent 42%),
		color-mix(in srgb, #0d0d0f 88%, transparent);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.adult-store-hp-tech__panel-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
	margin-bottom: 20px;
}

.adult-store-hp-tech__panel-name {
	margin: 0;
	color: var(--adult-store-text, #f5f5f5);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	line-height: 1.4;
}

.adult-store-hp-tech__panel-price {
	color: var(--adult-store-text, #f5f5f5);
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.2;
}

.adult-store-hp-tech__panel-price del {
	margin-right: 8px;
	color: rgba(255, 255, 255, 0.38);
	font-size: 0.85em;
}

.adult-store-hp-tech__panel-price ins {
	text-decoration: none;
	color: var(--adult-store-accent, #c9a86a);
}

.adult-store-hp-tech__panel-price .amount {
	color: inherit;
}

.adult-store-hp-tech__stock {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	padding: 0 10px;
	border: 1px solid color-mix(in srgb, var(--adult-store-accent, #c9a86a) 45%, transparent);
	color: var(--adult-store-accent, #c9a86a);
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: color-mix(in srgb, var(--adult-store-accent, #c9a86a) 8%, transparent);
}

.adult-store-hp-tech__stock--out-of-stock {
	border-color: rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.04);
}

.adult-store-hp-tech__ctas {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.adult-store-hp-tech__cta {
	width: 100%;
	min-height: 52px;
	justify-content: center;
	text-align: center;
	text-decoration: none;
}

.adult-store-hp-tech__cta--primary {
	grid-column: 1 / -1;
	background: linear-gradient(90deg, #9f7d4f 0%, #c9a86a 28%, #e8d4a8 52%, #c9a86a 78%, #a88654 100%) !important;
	border-color: transparent !important;
	color: #111 !important;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.adult-store-hp-tech__cta--primary:hover {
	filter: brightness(1.05);
	color: #111 !important;
}

.adult-store-hp-tech__cta--secondary {
	background: transparent !important;
	border-color: color-mix(in srgb, var(--adult-store-accent, #c9a86a) 70%, transparent) !important;
	color: var(--adult-store-accent, #c9a86a) !important;
}

.adult-store-hp-tech__cta--secondary:hover {
	background: color-mix(in srgb, var(--adult-store-accent, #c9a86a) 12%, transparent) !important;
	color: #f2e4c4 !important;
}

.adult-store-hp-tech__cta--tertiary {
	grid-column: 1 / -1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	margin-top: 2px;
	padding: 0 8px;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.2s ease;
}

.adult-store-hp-tech__cta--tertiary:hover {
	color: var(--adult-store-accent, #c9a86a);
}

.adult-store-hp-tech__panel--solo .adult-store-hp-tech__ctas {
	grid-template-columns: 1fr;
}

.adult-store-hp-tech__panel--solo .adult-store-hp-tech__cta--primary {
	grid-column: auto;
}


/* ── ── */
.adult-store-hp-privacy {
	padding: 48px 24px;
	background: var(--adult-store-bg);
}

.adult-store-hp-privacy__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 32px;
	border: 1px solid var(--adult-store-border);
	border-radius: var(--adult-store-radius);
	background: var(--adult-store-bg-card);
}

.adult-store-hp-privacy__head {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 28px;
}

.adult-store-hp-privacy__icon {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	color: var(--adult-store-accent);
}

.adult-store-hp-privacy__icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
}

.adult-store-hp-privacy__title {
	margin: 0 0 6px;
	font-size: 0.95rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--adult-store-text);
}

.adult-store-hp-privacy__lead {
	margin: 0;
	font-size: 0.85rem;
	color: var(--adult-store-text-muted);
}

.adult-store-hp-privacy__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.adult-store-hp-privacy__item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.adult-store-hp-privacy__item-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--adult-store-text-muted);
}

.adult-store-hp-privacy__item-icon svg {
    width: 24px;
    height: 24px;
    fill: none;                        /* */
    stroke: var(--adult-store-accent); /* / */
    stroke-width: 1.25px;               /* */
    stroke-linecap: round;
    stroke-linejoin: round;
}

.adult-store-hp-privacy__item-title {
	margin: 0;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--adult-store-text);
}

.adult-store-hp-privacy__item-desc {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.5;
	color: var(--adult-store-text-faint);
}

/* ── ── */
.adult-store-hp-grid,
.adult-store-showcase__grid.adult-store-hp-grid {
	padding: 72px 24px;
	background: var(--adult-store-bg);
}

.adult-store-showcase__grid-header {
	max-width: 1280px;
	margin: 0 auto 28px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
}

.adult-store-showcase__grid-cards {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}

/* ── BUNDLE ── */
.adult-store-hp-bundle__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.adult-store-bundle-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
	transition: none;
}

.adult-store-bundle-card:hover {
	border-color: transparent;
	transform: none;
}

.adult-store-bundle-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1 1 auto;
}

.adult-store-bundle-card__title {
	margin: 0;
	font-size: 0.82rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.35;
}

.adult-store-bundle-card__title a {
	color: var(--adult-store-text);
	text-decoration: none;
}

.adult-store-bundle-card__title a:hover {
	color: var(--adult-store-accent);
}

.adult-store-bundle-card__subtitle {
	margin: 0;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--adult-store-text-muted);
}

.adult-store-bundle-card__desc {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.55;
	color: var(--adult-store-text-faint);
}

.adult-store-bundle-card__products {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.adult-store-bundle-card__products li {
	font-size: 0.72rem;
	line-height: 1.4;
	color: var(--adult-store-text-faint);
}

.adult-store-bundle-card__products a {
	color: var(--adult-store-text-muted);
	text-decoration: none;
}

.adult-store-bundle-card__products a:hover {
	color: var(--adult-store-accent);
}

.adult-store-bundle-card__products li::before {
	content: "·";
	margin-right: 6px;
	color: var(--adult-store-accent);
}

.adult-store-bundle-card__pricing {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-top: 4px;
	border-top: 1px solid var(--adult-store-border);
}

.adult-store-bundle-card__price-label {
	margin-right: 6px;
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--adult-store-text-faint);
}

.adult-store-bundle-card__original,
.adult-store-bundle-card__price {
	margin: 0;
	font-size: 0.82rem;
	color: var(--adult-store-text);
}

.adult-store-bundle-card__original-value {
	text-decoration: line-through;
	color: var(--adult-store-text-faint);
}

.adult-store-bundle-card__price-value {
	color: var(--adult-store-text);
	font-weight: 600;
}

.adult-store-bundle-card__price-value ins {
	color: var(--adult-store-accent);
	text-decoration: none;
}

.adult-store-bundle-card__price-value del {
	color: var(--adult-store-text-faint);
}

.adult-store-bundle-card__savings {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--adult-store-accent);
}

.adult-store-bundle-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
	padding-top: 8px;
}

.adult-store-bundle-card__btn--disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

/* ── Blog / Journal ── */
.adult-store-hp-journal {
	padding: 72px 24px;
	background: var(--adult-store-bg);
	border-top: 1px solid var(--adult-store-border);
}

.adult-store-hp-journal__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.adult-store-hp-journal__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
}

.adult-store-hp-journal__title {
	margin: 0 0 8px;
	font-size: 1.1rem;
	letter-spacing: var(--adult-store-heading-track);
	text-transform: uppercase;
	color: var(--adult-store-text);
}

.adult-store-hp-journal__subtitle {
	margin: 0;
	max-width: 42ch;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--adult-store-text-muted);
}

.adult-store-hp-journal__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.adult-store-hp-journal__card {
	background: var(--adult-store-bg-card);
	border: 1px solid var(--adult-store-border);
	border-radius: var(--adult-store-radius);
	overflow: hidden;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.adult-store-hp-journal__card:hover {
	border-color: var(--adult-store-border-strong);
	transform: translateY(-2px);
}

.adult-store-hp-journal__image-link {
	display: block;
	background: #111111;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.adult-store-hp-journal__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.adult-store-hp-journal__image--placeholder {
	background: linear-gradient(135deg, var(--adult-store-bg-soft), var(--adult-store-bg-card));
}

.adult-store-hp-journal__body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.adult-store-hp-journal__category {
	margin: 0;
	font-size: 0.62rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--adult-store-accent);
}

.adult-store-hp-journal__post-title {
	margin: 0;
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.4;
}

.adult-store-hp-journal__post-title a {
	color: var(--adult-store-text);
	text-decoration: none;
}

.adult-store-hp-journal__post-title a:hover {
	color: var(--adult-store-accent);
}

.adult-store-hp-journal__excerpt {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.6;
	color: var(--adult-store-text-faint);
}

.adult-store-hp-journal__date {
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	color: var(--adult-store-text-muted);
}

.adult-store-hp-journal__read-more {
	align-self: flex-start;
	margin-top: 4px;
}

/* ── ── */
.adult-store-hp-trust {
	padding: 28px 24px;
	border-top: 1px solid var(--adult-store-border);
	border-bottom: 1px solid var(--adult-store-border);
	background: var(--adult-store-bg-elevated);
}

.adult-store-hp-trust__inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.adult-store-hp-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 8px;
}

.adult-store-hp-trust__icon {
	width: 1.5rem;
	height: 1.5rem;
	color: var(--adult-store-accent);
}

.adult-store-hp-trust__icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
}

.adult-store-hp-trust__label {
	margin: 0;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--adult-store-text-muted);
}

@media (max-width: 1024px) {
	.adult-store-showcase__grid-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.adult-store-hp-bundle__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.adult-store-hp-journal__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.adult-store-hp-privacy__grid,
	.adult-store-hp-trust__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.adult-store-hp-tech__stage {
		grid-template-columns: 1fr;
		gap: 20px;
		justify-items: center;
	}

	.adult-store-hp-tech__points--left,
	.adult-store-hp-tech__points--right {
		display: none;
	}

	.adult-store-hp-tech__points--mobile {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px 16px;
		width: 100%;
		max-width: 520px;
		order: 2;
	}

	.adult-store-hp-tech__points--mobile .adult-store-hp-tech__point {
		max-width: none;
		flex-direction: row;
		text-align: left;
	}

	.adult-store-hp-tech__visual {
		order: 1;
		min-height: 0;
		padding: 8px 0 12px;
		width: 100%;
	}

	.adult-store-hp-tech__structure {
		max-width: min(280px, 72vw);
		max-height: 320px;
	}
}

@media (max-width: 768px) {
	.adult-store-hp-hero {
		min-height: 100svh;
		min-height: max(720px, 100svh);
	}

	.adult-store-hp-hero__content {
		padding: 96px 16px 64px;
	}

	body.adult-store-front-page.adult-store-has-announcement .adult-store-hp-hero__content {
		padding-top: 56px;
	}

	.adult-store-hp-hero__title {
		max-width: none;
		font-size: clamp(1.75rem, 8vw, 2.4rem);
	}

	.adult-store-hp-hero__buttons,
	.adult-store-showcase__anchor--hero .adult-store-showcase__anchor-actions {
		flex-direction: column;
		width: 100%;
		gap: 10px;
	}

	.adult-store-hp-hero__buttons .adult-store-showcase__btn,
	.adult-store-showcase__anchor--hero .adult-store-showcase__btn {
		width: 100%;
		min-height: 48px;
	}

	.adult-store-hp-tech {
		padding: 48px 16px 56px;
	}

	.adult-store-hp-tech__inner {
		gap: 24px;
	}

	.adult-store-hp-tech__header {
		gap: 10px;
	}

	.adult-store-hp-tech__title {
		max-width: none;
		font-size: clamp(1.4rem, 7vw, 1.9rem);
		letter-spacing: 0.06em;
	}

	.adult-store-hp-tech__desc {
		font-size: 0.72rem;
		letter-spacing: 0.1em;
	}

	.adult-store-hp-tech__points--mobile {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.adult-store-hp-tech__panel {
		width: 100%;
		padding: 20px 16px;
	}

	.adult-store-hp-tech__panel-meta {
		margin-bottom: 16px;
		gap: 8px;
	}

	.adult-store-hp-tech__ctas {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.adult-store-hp-tech__cta--primary,
	.adult-store-hp-tech__cta--secondary,
	.adult-store-hp-tech__cta--tertiary {
		grid-column: 1;
		width: 100%;
	}

	.adult-store-hp-tech__cta {
		min-height: 52px;
	}

	.adult-store-hp-tech__cta--tertiary {
		min-height: 40px;
	}

	.adult-store-hp-gender__grid {
		grid-template-columns: 1fr;
	}

	.adult-store-hp-gender__card,
	.adult-store-hp-gender__body {
		min-height: 360px;
	}

	.adult-store-showcase__grid-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.adult-store-hp-bundle__grid {
		grid-template-columns: 1fr;
	}

	.adult-store-bundle-card__actions {
		flex-direction: column;
	}

	.adult-store-bundle-card__actions .adult-store-showcase__btn {
		width: 100%;
	}

	.adult-store-hp-journal__grid {
		grid-template-columns: 1fr;
	}

	.adult-store-hp-journal__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.adult-store-hp-journal__view-all,
	.adult-store-hp-journal__read-more {
		width: 100%;
	}

}
