/*!
 * Offerteria — front-end styles (ported from the reference Tailwind design).
 * All rules are scoped under .ofr-app to avoid clashing with the active theme.
 */

.ofr-app {
	--ofr-accent: #f97316;
	--ofr-accent-600: #ea580c;
	--ofr-dark: #0f172a;
	--ofr-blue: #1e293b;
	--ofr-slate-50: #f8fafc;
	--ofr-slate-100: #f1f5f9;
	--ofr-slate-200: #e2e8f0;
	--ofr-slate-300: #cbd5e1;
	--ofr-slate-400: #94a3b8;
	--ofr-slate-500: #64748b;
	--ofr-slate-600: #475569;
	--ofr-slate-700: #334155;
	--ofr-emerald-500: #10b981;
	--ofr-emerald-600: #059669;
	--ofr-amber-50: #fffbeb;
	--ofr-amber-400: #fbbf24;
	--ofr-red-600: #dc2626;
	--ofr-font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--ofr-display: "Outfit", var(--ofr-font);
	--ofr-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

	font-family: var(--ofr-font);
	color: var(--ofr-dark);
	background: var(--ofr-slate-50);
	line-height: 1.5;
	scroll-behavior: smooth;
}

.ofr-app *,
.ofr-app *::before,
.ofr-app *::after {
	box-sizing: border-box;
}

.ofr-app img {
	max-width: 100%;
	display: block;
}

.ofr-icon {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	stroke-width: 2;
}

.ofr-container {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.ofr-container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
	.ofr-container { padding: 0 2rem; }
}

/* ---------------------------------------------------------------- Buttons */
.ofr-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.65rem 1.1rem;
	border-radius: 0.7rem;
	font-weight: 700;
	font-size: 0.8rem;
	line-height: 1;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	white-space: nowrap;
}

.ofr-btn .ofr-icon { width: 16px; height: 16px; }
.ofr-btn-primary { background: var(--ofr-accent); color: #fff; }
.ofr-btn-primary:hover { background: var(--ofr-dark); }
.ofr-btn-ghost { background: #fff; color: var(--ofr-slate-500); border-color: var(--ofr-slate-200); }
.ofr-btn-ghost:hover { color: var(--ofr-dark); background: var(--ofr-slate-100); }
.ofr-btn-block { width: 100%; }
.ofr-accent { color: var(--ofr-accent); }

/* ---------------------------------------------------------------- Header */
.ofr-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 1.25rem 0;
	transition: all 0.3s ease;
}

.ofr-header.is-scrolled {
	padding: 0.7rem 0;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
	border-bottom: 1px solid var(--ofr-slate-200);
}

.ofr-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.ofr-logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.ofr-logo-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem;
	background: var(--ofr-accent);
	color: #fff;
	border-radius: 0.75rem;
	transition: background 0.3s ease;
}
.ofr-logo-badge .ofr-icon { width: 22px; height: 22px; }
.ofr-logo:hover .ofr-logo-badge { background: var(--ofr-dark); }
.ofr-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.ofr-logo-name { font-family: var(--ofr-display); font-weight: 900; font-size: 1.25rem; letter-spacing: -0.02em; color: #020617; }
.ofr-logo-tag { font-family: var(--ofr-mono); font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ofr-slate-400); font-weight: 700; }

.ofr-nav { display: none; align-items: center; gap: 0.25rem; }
.ofr-nav-link {
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--ofr-slate-600);
	text-decoration: none;
	transition: all 0.2s ease;
}
.ofr-nav-link:hover { color: var(--ofr-dark); background: var(--ofr-slate-100); }
.ofr-nav-link.is-active { color: var(--ofr-accent); background: rgba(249, 115, 22, 0.1); }

.ofr-header-cta { display: none; align-items: center; }
.ofr-live {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #047857;
	padding: 0.25rem 0.65rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
}
.ofr-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ofr-emerald-500); animation: ofr-pulse 1.6s infinite; }

.ofr-burger {
	display: inline-flex;
	background: transparent;
	border: 0;
	padding: 0.4rem;
	border-radius: 0.5rem;
	color: var(--ofr-slate-600);
	cursor: pointer;
}
.ofr-burger:hover { background: var(--ofr-slate-100); }
.ofr-burger .ofr-icon { width: 24px; height: 24px; }
.ofr-burger-close { display: none; }
.ofr-header.is-open .ofr-burger-open { display: none; }
.ofr-header.is-open .ofr-burger-close { display: inline-flex; }

.ofr-mobile-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border-bottom: 1px solid var(--ofr-slate-200);
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
	padding: 0.75rem 1rem 1.25rem;
}
.ofr-mobile-link {
	display: block;
	padding: 0.75rem 1rem;
	border-radius: 0.75rem;
	font-weight: 600;
	color: var(--ofr-slate-700);
	text-decoration: none;
}
.ofr-mobile-link:hover { color: var(--ofr-accent); background: var(--ofr-slate-50); }
.ofr-mobile-status {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 0.75rem;
	padding: 0.85rem 1rem 0;
	border-top: 1px solid var(--ofr-slate-100);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--ofr-slate-500);
}

@media (min-width: 900px) {
	.ofr-nav { display: flex; }
	.ofr-header-cta { display: flex; }
	.ofr-burger { display: none; }
}

/* ---------------------------------------------------------------- Hero */
.ofr-hero {
	position: relative;
	overflow: hidden;
	padding: 8rem 0 5rem;
	color: #fff;
	background: linear-gradient(135deg, #0f172a 0%, #020617 55%, #431407 100%);
}
.ofr-hero-pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.05;
	background-image: radial-gradient(#f97316 1.5px, transparent 1.5px);
	background-size: 14px 14px;
	pointer-events: none;
}
.ofr-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}
.ofr-hero-col { display: flex; flex-direction: column; gap: 1.25rem; }
.ofr-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	align-self: center;
	padding: 0.4rem 0.8rem;
	border-radius: 0.7rem;
	background: rgba(249, 115, 22, 0.1);
	border: 1px solid rgba(249, 115, 22, 0.3);
	color: var(--ofr-accent);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.ofr-hero-badge .ofr-icon { width: 16px; height: 16px; }
.ofr-hero-title {
	font-family: var(--ofr-display);
	font-weight: 900;
	font-size: 2.25rem;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0;
	text-align: center;
}
.ofr-hero-title .ofr-accent { color: var(--ofr-accent); }
.ofr-hero-sub { color: var(--ofr-slate-300); font-size: 1rem; font-weight: 300; margin: 0; text-align: center; }

.ofr-hero-search {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.3rem;
	background: #fff;
	border: 1px solid var(--ofr-slate-700);
	border-radius: 0.75rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
	max-width: 36rem;
	width: 100%;
	margin: 0 auto;
}
.ofr-hero-search .ofr-icon { color: var(--ofr-slate-400); margin-left: 0.6rem; flex: none; }
.ofr-hero-search input {
	flex: 1;
	border: 0;
	outline: none;
	padding: 0.7rem 0.6rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: #0f172a;
	background: transparent;
	min-width: 0;
}
.ofr-hero-search button {
	padding: 0.65rem 1.1rem;
	background: var(--ofr-accent);
	color: #fff;
	border: 0;
	border-radius: 0.55rem;
	font-weight: 700;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: background 0.2s ease;
}
.ofr-hero-search button:hover { background: var(--ofr-accent-600); }

.ofr-hero-quick {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-size: 0.75rem;
	color: var(--ofr-slate-400);
}
.ofr-quick {
	padding: 0.25rem 0.6rem;
	background: var(--ofr-blue);
	color: var(--ofr-slate-200);
	border: 1px solid var(--ofr-slate-700);
	border-radius: 0.5rem;
	font-size: 0.7rem;
	cursor: pointer;
	transition: background 0.2s ease;
}
.ofr-quick:hover { background: var(--ofr-slate-700); }

.ofr-hero-widget-wrap { position: relative; align-items: center; }
.ofr-hero-glow {
	position: absolute;
	inset: -4px;
	max-width: 24rem;
	height: 20rem;
	margin: auto;
	background: linear-gradient(90deg, #f97316, #dc2626);
	border-radius: 1.5rem;
	filter: blur(40px);
	opacity: 0.2;
}
.ofr-hero-widget {
	position: relative;
	width: 100%;
	max-width: 24rem;
	background: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(10px);
	border: 1px solid var(--ofr-slate-700);
	border-radius: 1rem;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}
.ofr-widget-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--ofr-slate-700);
	font-family: var(--ofr-display);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ofr-slate-200);
}
.ofr-widget-live {
	font-family: var(--ofr-mono);
	font-size: 0.6rem;
	font-weight: 700;
	color: var(--ofr-accent);
	background: rgba(249, 115, 22, 0.1);
	border: 1px solid rgba(249, 115, 22, 0.3);
	border-radius: 0.3rem;
	padding: 0.15rem 0.4rem;
}
.ofr-widget-item { display: flex; align-items: center; gap: 0.85rem; }
.ofr-widget-ico {
	display: inline-flex;
	padding: 0.6rem;
	border-radius: 0.75rem;
	border: 1px solid transparent;
}
.ofr-ico-orange { background: rgba(249, 115, 22, 0.15); color: var(--ofr-accent); border-color: rgba(249, 115, 22, 0.2); }
.ofr-ico-green { background: rgba(16, 185, 129, 0.15); color: #34d399; border-color: rgba(16, 185, 129, 0.2); }
.ofr-ico-sky { background: rgba(14, 165, 233, 0.15); color: #38bdf8; border-color: rgba(14, 165, 233, 0.2); }
.ofr-widget-item h3 { margin: 0; font-size: 0.85rem; font-weight: 700; color: #fff; }
.ofr-widget-item p { margin: 0.1rem 0 0; font-size: 0.7rem; color: var(--ofr-slate-400); }

@media (min-width: 640px) {
	.ofr-hero-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
	.ofr-hero { padding: 9rem 0 6rem; }
	.ofr-hero-grid { grid-template-columns: 7fr 5fr; }
	.ofr-hero-col { text-align: left; }
	.ofr-hero-badge { align-self: flex-start; }
	.ofr-hero-title, .ofr-hero-sub { text-align: left; }
	.ofr-hero-title { font-size: 3.5rem; }
	.ofr-hero-search { margin: 0; }
	.ofr-hero-quick { justify-content: flex-start; }
}

/* ---------------------------------------------------------------- Sections shared */
.ofr-offers, .ofr-faq { padding: 5rem 0; background: var(--ofr-slate-50); border-top: 1px solid var(--ofr-slate-200); }
.ofr-section-head { border-bottom: 1px solid var(--ofr-slate-200); padding-bottom: 1.25rem; margin-bottom: 2rem; }
.ofr-section-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--ofr-display);
	font-weight: 900;
	font-size: 1.5rem;
	color: #0f172a;
	margin: 0;
}
.ofr-bar { width: 6px; height: 24px; border-radius: 999px; background: var(--ofr-accent); }
.ofr-section-sub { font-size: 0.85rem; color: var(--ofr-slate-500); font-weight: 300; margin: 0.4rem 0 0; }

/* ---------------------------------------------------------------- Controls */
.ofr-controls {
	background: #fff;
	border: 1px solid var(--ofr-slate-200);
	border-radius: 1.5rem;
	padding: 1.5rem;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
	margin-bottom: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.ofr-controls-row { display: flex; flex-direction: column; gap: 1rem; }
.ofr-search-wrap { position: relative; flex: 1; max-width: 28rem; }
.ofr-search-wrap input {
	width: 100%;
	padding: 0.65rem 2.4rem 0.65rem 1rem;
	background: var(--ofr-slate-50);
	border: 1px solid var(--ofr-slate-200);
	border-radius: 0.75rem;
	font-size: 0.875rem;
	outline: none;
	transition: all 0.2s ease;
}
.ofr-search-wrap input:focus { border-color: var(--ofr-accent); box-shadow: 0 0 0 4px var(--ofr-amber-50); }
.ofr-search-clear {
	position: absolute;
	right: 0.6rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: 0;
	color: var(--ofr-slate-400);
	cursor: pointer;
	display: inline-flex;
}
.ofr-search-clear:hover { color: var(--ofr-slate-600); }
.ofr-controls-tools { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.ofr-filter-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1rem;
	border: 1px solid var(--ofr-slate-200);
	background: #fff;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ofr-slate-700);
	cursor: pointer;
	transition: all 0.2s ease;
}
.ofr-filter-toggle:hover { border-color: var(--ofr-slate-300); }
.ofr-filter-toggle.is-active { border-color: var(--ofr-accent); background: var(--ofr-amber-50); color: var(--ofr-accent); }
.ofr-sort {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--ofr-slate-50);
	border: 1px solid var(--ofr-slate-200);
	border-radius: 0.75rem;
	padding: 0.35rem 0.75rem;
	color: var(--ofr-slate-400);
}
.ofr-sort select {
	background: transparent;
	border: 0;
	outline: none;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ofr-slate-700);
	cursor: pointer;
}
.ofr-filters {
	padding-top: 1rem;
	border-top: 1px solid var(--ofr-slate-100);
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
}
.ofr-filter-field { flex: 1; min-width: 240px; }
.ofr-filter-field label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ofr-slate-500);
	margin-bottom: 0.5rem;
}
.ofr-range-row { display: flex; align-items: center; gap: 1rem; }
.ofr-range-row input[type="range"] { flex: 1; accent-color: var(--ofr-accent); height: 6px; }
.ofr-range-val {
	font-size: 0.85rem;
	font-weight: 800;
	color: var(--ofr-accent);
	background: var(--ofr-amber-50);
	border: 1px solid #fde68a;
	padding: 0.25rem 0.7rem;
	border-radius: 0.5rem;
	white-space: nowrap;
}
.ofr-reset {
	background: none;
	border: 0;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--ofr-slate-500);
	text-decoration: underline;
	cursor: pointer;
}
.ofr-reset:hover { color: var(--ofr-accent); }
.ofr-cats { padding-top: 1rem; border-top: 1px solid var(--ofr-slate-100); }
.ofr-cats-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ofr-slate-500);
	margin-bottom: 0.75rem;
}
.ofr-cats-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.ofr-cat {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	background: var(--ofr-slate-50);
	border: 1px solid var(--ofr-slate-200);
	color: var(--ofr-slate-600);
	cursor: pointer;
	transition: all 0.2s ease;
}
.ofr-cat:hover { background: var(--ofr-slate-100); border-color: var(--ofr-slate-300); }
.ofr-cat.is-active { background: var(--ofr-dark); color: #fff; border-color: var(--ofr-dark); }
.ofr-cat .ofr-icon { width: 16px; height: 16px; }

@media (min-width: 768px) {
	.ofr-controls-row { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------------------------------------------------------------- Cards grid */
.ofr-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 640px) { .ofr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ofr-grid { grid-template-columns: repeat(3, 1fr); } }

.ofr-card {
	background: #fff;
	border: 1px solid var(--ofr-slate-200);
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	cursor: pointer;
}
.ofr-card:hover { box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12); border-color: var(--ofr-slate-300); }
.ofr-card-media { position: relative; aspect-ratio: 16 / 9; background: var(--ofr-slate-100); overflow: hidden; }
.ofr-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ofr-card:hover .ofr-card-media img { transform: scale(1.05); }
.ofr-card-badges { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.ofr-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0.6rem;
	font-size: 0.62rem;
	font-weight: 700;
	color: #fff;
	border-radius: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.ofr-badge .ofr-icon { width: 12px; height: 12px; }
.ofr-badge-dotd { background: var(--ofr-red-600); }
.ofr-badge-dark { background: var(--ofr-dark); }
.ofr-badge-exp { background: var(--ofr-slate-500); }
.ofr-badge-out { background: var(--ofr-slate-600); }
.ofr-badge-lim { background: var(--ofr-amber-400); color: #7c2d12; }
.ofr-card--expired { opacity: 0.72; }
.ofr-card--expired .ofr-card-discount { background: var(--ofr-slate-400); }
.ofr-card-discount {
	position: absolute;
	bottom: 0.75rem;
	right: 0.75rem;
	background: var(--ofr-accent);
	color: #fff;
	font-family: var(--ofr-display);
	font-weight: 800;
	font-size: 1.25rem;
	padding: 0.35rem 0.7rem;
	border-radius: 1rem;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.ofr-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.ofr-card-cat { font-size: 0.72rem; font-weight: 600; color: var(--ofr-slate-400); text-transform: uppercase; letter-spacing: 0.05em; }
.ofr-card-title {
	font-family: var(--ofr-display);
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.35;
	color: var(--ofr-dark);
	margin: 0;
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ofr-card:hover .ofr-card-title { color: var(--ofr-accent); }
.ofr-stars { display: flex; align-items: center; gap: 0.3rem; }
.ofr-stars-row { display: inline-flex; color: var(--ofr-slate-300); }
.ofr-stars-row .ofr-icon { width: 16px; height: 16px; }
.ofr-stars-row .is-filled { color: var(--ofr-amber-400); fill: var(--ofr-amber-400); }
.ofr-stars-num { font-size: 0.75rem; font-weight: 700; color: var(--ofr-slate-600); }
.ofr-stars-rev { font-size: 0.75rem; color: var(--ofr-slate-400); }
.ofr-card-desc {
	font-size: 0.85rem;
	color: var(--ofr-slate-500);
	font-weight: 300;
	margin: 0;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.ofr-coupon {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.5rem 0.65rem;
	background: var(--ofr-amber-50);
	border: 1px dashed rgba(249, 115, 22, 0.5);
	border-radius: 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--ofr-accent);
	cursor: pointer;
	width: 100%;
	transition: background 0.2s ease;
}
.ofr-coupon:hover { background: #fef3c7; }
.ofr-coupon-left { display: inline-flex; align-items: center; gap: 0.4rem; }
.ofr-coupon-tag { background: var(--ofr-accent); color: #fff; font-size: 0.55rem; padding: 0.1rem 0.35rem; border-radius: 0.25rem; text-transform: uppercase; font-weight: 800; }
.ofr-coupon-act { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--ofr-slate-500); }
.ofr-coupon-act .ofr-icon { width: 14px; height: 14px; }
.ofr-coupon.is-copied { border-color: var(--ofr-emerald-500); }
.ofr-coupon.is-copied .ofr-coupon-act { color: var(--ofr-emerald-600); }
.ofr-card-foot {
	padding-top: 1rem;
	border-top: 1px solid var(--ofr-slate-100);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}
.ofr-price-old { display: block; font-size: 0.72rem; color: var(--ofr-slate-400); text-decoration: line-through; }
.ofr-price-new { font-family: var(--ofr-display); font-weight: 800; font-size: 1.4rem; color: var(--ofr-dark); }
.ofr-card-actions { display: flex; align-items: center; gap: 0.5rem; }
.ofr-card-buy .ofr-icon { width: 14px; height: 14px; }

.ofr-empty {
	background: #fff;
	border: 1px solid var(--ofr-slate-200);
	border-radius: 1.5rem;
	padding: 3rem;
	text-align: center;
	max-width: 32rem;
	margin: 0 auto;
}
.ofr-empty .ofr-icon { width: 48px; height: 48px; color: var(--ofr-slate-400); margin: 0 auto 1rem; }
.ofr-empty h3 { font-size: 1.1rem; font-weight: 700; color: var(--ofr-dark); margin: 0; }
.ofr-empty p { font-size: 0.85rem; color: var(--ofr-slate-500); margin: 0.4rem 0 1rem; }

/* ---------------------------------------------------------------- Modal */
.ofr-modal {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
.ofr-modal-backdrop { position: fixed; inset: 0; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); }
.ofr-modal-box {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	max-width: 42rem;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	animation: ofr-scaleup 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.ofr-modal-media { position: relative; height: 16rem; background: var(--ofr-slate-100); }
.ofr-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.ofr-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.5rem;
	background: rgba(255, 255, 255, 0.85);
	border: 0;
	border-radius: 50%;
	color: #1e293b;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	display: inline-flex;
}
.ofr-modal-flag {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	background: var(--ofr-red-600);
	color: #fff;
	font-family: var(--ofr-display);
	font-weight: 800;
	font-size: 0.8rem;
	padding: 0.3rem 0.7rem;
	border-radius: 0.5rem;
}
.ofr-modal-flag .ofr-icon { width: 16px; height: 16px; }
.ofr-modal-body { padding: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.ofr-modal-cat { font-size: 0.72rem; font-weight: 600; color: var(--ofr-slate-400); text-transform: uppercase; letter-spacing: 0.05em; }
.ofr-modal-title { font-family: var(--ofr-display); font-weight: 800; font-size: 1.5rem; color: var(--ofr-dark); margin: 0.25rem 0 0; }
.ofr-modal-prices {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem;
	background: var(--ofr-slate-50);
	border: 1px solid var(--ofr-slate-200);
	border-radius: 1rem;
}
.ofr-modal-prices small { font-size: 0.7rem; color: var(--ofr-slate-400); display: block; }
.ofr-mp-old { font-size: 1rem; color: var(--ofr-slate-500); text-decoration: line-through; }
.ofr-mp-save { font-size: 1.1rem; font-weight: 700; color: var(--ofr-emerald-600); }
.ofr-mp-now { font-family: var(--ofr-display); font-weight: 800; font-size: 1.85rem; color: var(--ofr-accent); }
.ofr-verify-box {
	display: flex;
	gap: 0.75rem;
	padding: 1rem;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 1rem;
}
.ofr-verify-ok { background: var(--ofr-emerald-500); color: #fff; font-weight: 700; font-size: 0.7rem; padding: 0.15rem 0.45rem; border-radius: 0.4rem; height: fit-content; }
.ofr-verify-box h4 { margin: 0; font-size: 0.85rem; font-weight: 700; color: #065f46; }
.ofr-verify-box p { margin: 0.25rem 0 0; font-size: 0.75rem; color: #047857; font-weight: 300; }
.ofr-chart-title { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ofr-dark); margin: 0 0 0.6rem; }
.ofr-chart-title .ofr-icon { width: 16px; height: 16px; color: var(--ofr-slate-500); }
.ofr-chart { border: 1px solid var(--ofr-slate-200); border-radius: 1rem; padding: 1rem; }
.ofr-chart-bars { height: 7rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--ofr-slate-200); padding: 1rem 0.5rem 0; }
.ofr-chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.25rem; height: 100%; justify-content: flex-end; }
.ofr-chart-bar { width: 100%; max-width: 40px; background: var(--ofr-slate-300); border-radius: 0.3rem 0.3rem 0 0; }
.ofr-chart-bar.is-now { background: var(--ofr-accent); }
.ofr-chart-col span { font-family: var(--ofr-mono); font-size: 0.6rem; font-weight: 700; color: var(--ofr-slate-400); }
.ofr-chart-col span.is-now { color: var(--ofr-accent); }
.ofr-chart-legend { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--ofr-slate-500); margin-top: 0.75rem; }
.ofr-modal-desc h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ofr-dark); margin: 0 0 0.4rem; }
.ofr-modal-desc p { font-size: 0.85rem; color: var(--ofr-slate-600); font-weight: 300; margin: 0; }
.ofr-modal-actions { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--ofr-slate-100); }
.ofr-modal-actions .ofr-btn { padding: 0.85rem; }
.ofr-btn-soft { background: var(--ofr-slate-100); color: var(--ofr-slate-700); }
.ofr-btn-soft:hover { background: var(--ofr-slate-200); }

@media (min-width: 640px) {
	.ofr-modal-actions { flex-direction: row; }
	.ofr-modal-actions .ofr-btn { flex: 1; }
}

/* ---------------------------------------------------------------- How it works */
.ofr-how { padding: 5rem 0; background: #fff; }
.ofr-how-head { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.ofr-pill { display: inline-block; background: var(--ofr-amber-50); color: var(--ofr-accent); font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.85rem; border-radius: 999px; }
.ofr-how-head h2 { font-family: var(--ofr-display); font-weight: 800; font-size: 2rem; color: var(--ofr-dark); margin: 0.75rem 0 0.5rem; }
.ofr-how-head p { color: var(--ofr-slate-600); font-weight: 300; margin: 0; }
.ofr-steps { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
.ofr-step {
	position: relative;
	background: var(--ofr-slate-50);
	border: 1px solid var(--ofr-slate-200);
	border-radius: 1.5rem;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: box-shadow 0.3s ease;
}
.ofr-step:hover { box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1); }
.ofr-step-num { position: absolute; top: 1.5rem; right: 2rem; font-family: var(--ofr-display); font-weight: 900; font-size: 2.5rem; color: rgba(226, 232, 240, 0.6); }
.ofr-step-ico { display: inline-flex; padding: 1rem; border-radius: 1rem; border: 1px solid; width: fit-content; }
.ofr-step-ico .ofr-icon { width: 24px; height: 24px; }
.ofr-step-orange { background: #fef3c7; color: var(--ofr-accent); border-color: #fde68a; }
.ofr-step-blue { background: #dbeafe; color: #2563eb; border-color: #bfdbfe; }
.ofr-step-green { background: #d1fae5; color: var(--ofr-emerald-600); border-color: #a7f3d0; }
.ofr-step h3 { font-family: var(--ofr-display); font-weight: 700; font-size: 1.25rem; color: var(--ofr-dark); margin: 0; }
.ofr-step p { font-size: 0.85rem; color: var(--ofr-slate-500); font-weight: 300; margin: 0; }

.ofr-values {
	background: linear-gradient(90deg, var(--ofr-blue), var(--ofr-dark));
	border-radius: 1.5rem;
	padding: 2rem;
	color: #fff;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}
.ofr-value { display: flex; flex-direction: column; gap: 0.6rem; }
.ofr-value-ico { display: inline-flex; padding: 0.7rem; background: rgba(249, 115, 22, 0.15); color: var(--ofr-accent); border-radius: 0.85rem; width: fit-content; }
.ofr-value h4 { font-family: var(--ofr-display); font-weight: 700; font-size: 1.05rem; margin: 0; }
.ofr-value p { font-size: 0.82rem; color: var(--ofr-slate-300); font-weight: 300; margin: 0; }

.ofr-testi-head { text-align: center; margin: 4rem 0 2rem; }
.ofr-testi-head h3 { font-family: var(--ofr-display); font-weight: 800; font-size: 1.5rem; color: var(--ofr-dark); margin: 0; }
.ofr-testi { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.ofr-testi-card { background: var(--ofr-slate-50); border: 1px solid var(--ofr-slate-200); border-radius: 1.25rem; padding: 1.5rem; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.ofr-testi-stars { display: inline-flex; color: var(--ofr-slate-300); }
.ofr-testi-stars .ofr-icon { width: 16px; height: 16px; }
.ofr-testi-stars .is-filled { color: var(--ofr-amber-400); fill: var(--ofr-amber-400); }
.ofr-testi-card blockquote { margin: 0; font-size: 0.9rem; color: var(--ofr-slate-600); line-height: 1.6; }
.ofr-testi-author { display: flex; align-items: center; gap: 0.75rem; }
.ofr-testi-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.ofr-testi-author span { display: flex; flex-direction: column; }
.ofr-testi-author strong { font-size: 0.85rem; color: var(--ofr-dark); }
.ofr-testi-author small { font-size: 0.72rem; color: var(--ofr-slate-500); }

@media (min-width: 768px) {
	.ofr-steps { grid-template-columns: repeat(3, 1fr); }
	.ofr-values { grid-template-columns: repeat(3, 1fr); padding: 3rem; }
	.ofr-testi { grid-template-columns: repeat(3, 1fr); }
	.ofr-how-head h2 { font-size: 2.25rem; }
}

/* ---------------------------------------------------------------- FAQ + contact */
.ofr-faq-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.ofr-faq-head h3 { font-family: var(--ofr-display); font-weight: 700; font-size: 1.5rem; color: var(--ofr-dark); margin: 0; }
.ofr-faq-head p { font-size: 0.85rem; color: var(--ofr-slate-500); font-weight: 300; margin: 0.25rem 0 1.5rem; }
.ofr-accordion { display: flex; flex-direction: column; gap: 1rem; }
.ofr-acc-item { background: #fff; border: 1px solid var(--ofr-slate-200); border-radius: 1rem; overflow: hidden; }
.ofr-acc-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.5rem;
	background: none;
	border: 0;
	text-align: left;
	font-family: var(--ofr-display);
	font-weight: 700;
	font-size: 1rem;
	color: var(--ofr-dark);
	cursor: pointer;
	transition: color 0.2s ease;
}
.ofr-acc-q:hover { color: var(--ofr-accent); }
.ofr-acc-chevron { color: var(--ofr-slate-400); transition: transform 0.2s ease; }
.ofr-acc-item.is-open .ofr-acc-chevron { transform: rotate(180deg); }
.ofr-acc-a { display: none; padding: 0 1.5rem 1.25rem; border-top: 1px solid var(--ofr-slate-100); }
.ofr-acc-item.is-open .ofr-acc-a { display: block; }
.ofr-acc-a p { font-size: 0.85rem; color: var(--ofr-slate-600); font-weight: 300; line-height: 1.6; margin: 0.75rem 0 0; }

.ofr-contact-card { background: #fff; border: 1px solid var(--ofr-slate-200); border-radius: 1.5rem; padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.ofr-contact-head h3 { display: flex; align-items: center; gap: 0.5rem; font-family: var(--ofr-display); font-weight: 700; font-size: 1.5rem; color: var(--ofr-dark); margin: 0; }
.ofr-contact-head h3 .ofr-icon { color: var(--ofr-accent); }
.ofr-contact-head p { font-size: 0.75rem; color: var(--ofr-slate-500); font-weight: 300; margin: 0.25rem 0 0; }
.ofr-form { display: flex; flex-direction: column; gap: 1rem; }
.ofr-field label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ofr-slate-500); margin-bottom: 0.4rem; }
.ofr-req { color: #ef4444; }
.ofr-field input, .ofr-field textarea {
	width: 100%;
	padding: 0.65rem 1rem;
	background: var(--ofr-slate-50);
	border: 1px solid var(--ofr-slate-200);
	border-radius: 0.75rem;
	font-size: 0.875rem;
	font-family: inherit;
	outline: none;
	transition: all 0.2s ease;
	resize: vertical;
}
.ofr-field input:focus, .ofr-field textarea:focus { border-color: var(--ofr-accent); box-shadow: 0 0 0 4px var(--ofr-amber-50); }
.ofr-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.ofr-form-alert { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; border-radius: 1rem; font-size: 0.85rem; }
.ofr-form-alert .ofr-icon { width: 20px; height: 20px; flex: none; margin-top: 0.1rem; }
.ofr-form-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.ofr-form-success p { margin: 0.2rem 0 0; font-size: 0.75rem; font-weight: 300; }
.ofr-form-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; font-weight: 600; }
.ofr-submit-spin { width: 16px; height: 16px; border: 2px solid #fff; border-top-color: transparent; border-radius: 50%; animation: ofr-spin 0.7s linear infinite; }
.ofr-contact-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding-top: 1.25rem; border-top: 1px solid var(--ofr-slate-100); font-size: 0.72rem; color: var(--ofr-slate-400); }
.ofr-contact-foot span { display: inline-flex; align-items: center; gap: 0.3rem; }
.ofr-contact-foot .ofr-icon { width: 14px; height: 14px; }

@media (min-width: 1024px) {
	.ofr-faq-grid { grid-template-columns: 7fr 5fr; }
}

/* ---------------------------------------------------------------- Footer */
.ofr-footer { background: var(--ofr-dark); color: var(--ofr-slate-300); border-top: 1px solid var(--ofr-slate-700); padding: 4rem 0 2rem; }
.ofr-footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--ofr-slate-700); }
.ofr-footer-brand p { font-size: 0.85rem; color: var(--ofr-slate-400); font-weight: 300; line-height: 1.6; margin: 1rem 0; }
.ofr-footer-logo { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; color: #fff; font-family: var(--ofr-display); font-weight: 700; font-size: 1.25rem; }
.ofr-footer-logo .ofr-logo-badge { padding: 0.45rem; }
.ofr-footer-logo .ofr-icon { width: 20px; height: 20px; }
.ofr-footer-social { display: flex; gap: 0.6rem; }
.ofr-footer-social a { display: inline-flex; padding: 0.5rem; background: var(--ofr-blue); color: var(--ofr-slate-400); border-radius: 0.5rem; transition: all 0.2s ease; }
.ofr-footer-social a:hover { background: var(--ofr-accent); color: #fff; }
.ofr-footer-nav h4, .ofr-footer-trust h4 { font-size: 0.8rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 1rem; }
.ofr-footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.ofr-footer-nav a { color: var(--ofr-slate-300); text-decoration: none; font-size: 0.875rem; font-weight: 300; }
.ofr-footer-nav a:hover { color: var(--ofr-accent); }
.ofr-trust-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.75rem; color: var(--ofr-slate-400); font-weight: 300; line-height: 1.5; margin-bottom: 0.85rem; }
.ofr-trust-item .ofr-icon { width: 16px; height: 16px; flex: none; margin-top: 0.1rem; color: var(--ofr-accent); }
.ofr-disclaimer { padding: 2rem 0; border-bottom: 1px solid var(--ofr-slate-700); font-size: 0.7rem; color: var(--ofr-slate-500); font-weight: 300; line-height: 1.6; }
.ofr-disclaimer p { margin: 0 0 0.6rem; }
.ofr-footer-bottom { padding-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; font-size: 0.75rem; color: var(--ofr-slate-500); font-weight: 300; text-align: center; }
.ofr-footer-made { display: inline-flex; align-items: center; gap: 0.3rem; }
.ofr-heart { width: 13px; height: 13px; color: #ef4444; fill: #ef4444; }

@media (min-width: 768px) {
	.ofr-footer-grid { grid-template-columns: 5fr 3fr 4fr; }
	.ofr-footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------------------------------------------------------------- Utilities / a11y */
.ofr-no-scroll { overflow: hidden; }
[hidden] { display: none !important; }

@keyframes ofr-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes ofr-spin { to { transform: rotate(360deg); } }
@keyframes ofr-scaleup { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
	.ofr-app *, .ofr-app *::before, .ofr-app *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
