/* Fooppers Day Hero */

.fdh-hero {
	--fdh-accent: #d02233;
	--fdh-radius: 18px;
	--fdh-display: "Oswald", "Barlow Condensed", "Arial Narrow", "Helvetica Neue", system-ui, sans-serif;
	--fdh-body: inherit;
	box-sizing: border-box;
	display: block;
	margin: 0 auto 28px;
	max-width: 1200px;
	padding: 0 14px;
	width: 100%;
}

.fdh-hero *,
.fdh-hero *::before,
.fdh-hero *::after {
	box-sizing: border-box;
}

.fdh-skin-dark {
	--fdh-surface: linear-gradient(160deg, #1c2027 0%, #121418 62%, #16181c 100%);
	--fdh-ink: #f3f0ea;
	--fdh-muted: #a2a8b2;
	--fdh-hairline: rgba(255, 255, 255, 0.12);
	--fdh-chip: rgba(255, 255, 255, 0.07);
	--fdh-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.85);
}

.fdh-skin-light {
	--fdh-surface: linear-gradient(160deg, #ffffff 0%, #fbfaf8 100%);
	--fdh-ink: #17181b;
	--fdh-muted: #6b7078;
	--fdh-hairline: rgba(0, 0, 0, 0.1);
	--fdh-chip: rgba(0, 0, 0, 0.045);
	--fdh-shadow: 0 14px 34px -26px rgba(0, 0, 0, 0.55);
}

.fdh-title {
	color: var(--fdh-muted);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1.2;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.fdh-skin-dark .fdh-title {
	color: #6f7681;
}

/* Card */

.fdh-stage {
	position: relative;
}

.fdh-card {
	background: var(--fdh-surface);
	border: 1px solid var(--fdh-hairline);
	border-radius: var(--fdh-radius);
	box-shadow: var(--fdh-shadow);
	color: var(--fdh-ink);
	display: grid;
	gap: 0;
	grid-template-columns: 1fr;
	overflow: hidden;
	padding: 20px 18px 18px;
	position: relative;
}

.fdh-card[hidden] {
	display: none !important;
}

.fdh-card::before {
	background: var(--fdh-accent);
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	top: 0;
	width: 64px;
}

.fdh-eyebrow {
	align-items: center;
	color: var(--fdh-muted);
	display: flex;
	font-size: 11px;
	font-weight: 600;
	gap: 7px;
	letter-spacing: 0.14em;
	line-height: 1;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.fdh-dotlive {
	background: var(--fdh-accent);
	border-radius: 50%;
	display: inline-block;
	flex: 0 0 auto;
	height: 7px;
	width: 7px;
}

.fdh-label {
	color: var(--fdh-ink);
	font-family: var(--fdh-display);
	font-size: clamp(30px, 8.5vw, 46px);
	font-weight: 600;
	letter-spacing: 0.005em;
	line-height: 0.95;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.fdh-sub {
	color: var(--fdh-muted);
	font-size: 14px;
	line-height: 1.45;
	margin: 0 0 16px;
	max-width: 46ch;
}

.fdh-card-text {
	min-width: 0;
}

/* Product row */

.fdh-item {
	align-items: center;
	border-top: 1px dashed var(--fdh-hairline);
	display: flex;
	gap: 12px;
	padding-top: 14px;
}

.fdh-thumb {
	background: var(--fdh-chip);
	border-radius: 12px;
	display: block;
	flex: 0 0 auto;
	height: 68px;
	object-fit: cover;
	width: 68px;
}

.fdh-item-meta {
	min-width: 0;
}

.fdh-item-name {
	color: var(--fdh-ink);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 3px;
}

.fdh-price {
	color: var(--fdh-ink);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
}

.fdh-price del {
	color: var(--fdh-muted);
	font-size: 13px;
	font-weight: 500;
	margin-right: 5px;
	opacity: 0.8;
}

.fdh-price ins {
	background: none;
	color: var(--fdh-ink);
	text-decoration: none;
}

.fdh-price .woocommerce-Price-amount {
	white-space: nowrap;
}

.fdh-badge {
	background: var(--fdh-accent);
	border-radius: 999px;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	margin-top: 7px;
	padding: 6px 10px;
}

/* Call to action */

.fdh-cta {
	align-items: center;
	background: var(--fdh-accent);
	border-radius: 12px;
	color: #fff !important;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	margin-top: 16px;
	padding: 14px 20px;
	text-decoration: none !important;
	transition: transform 0.18s ease, filter 0.18s ease;
	width: 100%;
}

.fdh-cta svg {
	transition: transform 0.18s ease;
}

.fdh-cta:hover,
.fdh-cta:focus {
	color: #fff !important;
	filter: brightness(1.07);
}

.fdh-cta:hover svg,
.fdh-cta:focus svg {
	transform: translateX(3px);
}

.fdh-cta:focus-visible {
	outline: 3px solid var(--fdh-ink);
	outline-offset: 3px;
}

.fdh-note {
	color: var(--fdh-muted);
	font-size: 12px;
	line-height: 1.4;
	margin: 10px 0 0;
	text-align: center;
}

/* Large decorative image, desktop only */

.fdh-card-media {
	display: none;
}

/* Countdown */

.fdh-timer {
	align-items: center;
	color: var(--fdh-muted);
	display: flex;
	font-size: 11px;
	gap: 7px;
	justify-content: center;
	letter-spacing: 0.12em;
	margin: 12px 0 0;
	text-transform: uppercase;
}

.fdh-clock {
	color: var(--fdh-ink);
	font-feature-settings: "tnum" 1;
	font-variant-numeric: tabular-nums;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.fdh-skin-dark .fdh-clock {
	color: #f3f0ea;
}

/* Weekly strip */

.fdh-strip {
	-ms-overflow-style: none;
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 14px 0 0;
	overflow-x: auto;
	padding: 2px 0 4px;
	scrollbar-width: none;
}

.fdh-strip::-webkit-scrollbar {
	display: none;
}

.fdh-pill {
	background: var(--fdh-chip);
	border: 1px solid transparent;
	border-radius: 11px;
	color: var(--fdh-muted);
	flex: 0 0 auto;
	line-height: 1.2;
	padding: 8px 12px;
	text-align: center;
	transition: background 0.18s ease, color 0.18s ease;
}

.fdh-skin-light .fdh-pill {
	border-color: var(--fdh-hairline);
}

.fdh-pill-day {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.fdh-pill-name {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-top: 2px;
	white-space: nowrap;
}

.fdh-pill.is-today {
	background: var(--fdh-accent);
	border-color: var(--fdh-accent);
	color: #fff;
}

/* Desktop */

@media (min-width: 782px) {
	.fdh-card {
		align-items: center;
		grid-template-columns: minmax(0, 1fr) 240px;
		padding: 32px 34px;
	}

	.fdh-card::before {
		height: 4px;
		width: 96px;
	}

	.fdh-label {
		font-size: clamp(40px, 3.6vw, 54px);
	}

	.fdh-sub {
		font-size: 15px;
	}

	.fdh-item {
		border-top: 0;
		border-bottom: 1px dashed var(--fdh-hairline);
		padding: 0 0 16px;
	}

	.fdh-thumb {
		display: none;
	}

	.fdh-price {
		font-size: 20px;
	}

	.fdh-cta {
		width: auto;
	}

	.fdh-note {
		text-align: left;
	}

	.fdh-card-media {
		display: block;
		padding-left: 28px;
	}

	.fdh-card-media img {
		aspect-ratio: 1 / 1;
		border-radius: 16px;
		display: block;
		height: auto;
		object-fit: cover;
		width: 100%;
	}

	.fdh-timer {
		justify-content: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fdh-cta,
	.fdh-cta svg,
	.fdh-pill {
		transition: none;
	}
}
