/*!
 * SERPsKit Amazon Autopilot Lab — Frontend Styles
 * High-converting, fully responsive product blocks
 */

/* ─── Design tokens ────────────────────────────── */
:root {
	--sak-primary:       #ff9900;
	--sak-primary-dark:  #e68a00;
	--sak-primary-hover: #ffa726;
	--sak-text:          #0f172a;
	--sak-text-muted:    #64748b;
	--sak-border:        #e5e7eb;
	--sak-border-strong: #cbd5e1;
	--sak-bg:            #ffffff;
	--sak-bg-soft:       #f8fafc;
	--sak-bg-hover:      #f1f5f9;
	--sak-success:       #10b981;
	--sak-danger:        #ef4444;
	--sak-warning:       #f59e0b;
	--sak-prime:         #00a8e1;
	--sak-star:          #ffa41c;
	--sak-radius-sm:     6px;
	--sak-radius:        12px;
	--sak-radius-lg:     16px;
	--sak-shadow-sm:     0 1px 2px rgba(15, 23, 42, .05);
	--sak-shadow:        0 4px 16px rgba(15, 23, 42, .08);
	--sak-shadow-lg:     0 12px 28px rgba(15, 23, 42, .12);
	--sak-transition:    all .2s cubic-bezier(.4, 0, .2, 1);
	--sak-font:          -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ─── Base reset for our blocks ─────────────────── */
[class^="sak-"], [class*=" sak-"] {
	box-sizing: border-box;
}
.sak-product-box, .sak-comparison-wrap, .sak-product-list,
.sak-pros-cons, .sak-deal-box {
	font-family: var(--sak-font);
	color: var(--sak-text);
	line-height: 1.5;
	margin: 24px 0;
}

/* ─── Shared: CTA button ────────────────────────── */
.sak-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px 22px;
	background: var(--sak-primary);
	color: #111 !important;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none !important;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	transition: var(--sak-transition);
	box-shadow: 0 2px 6px rgba(255, 153, 0, .3);
	white-space: nowrap;
}
.sak-cta-btn:hover {
	background: var(--sak-primary-hover);
	transform: translateY(-1px);
	box-shadow: 0 6px 14px rgba(255, 153, 0, .4);
	color: #111 !important;
}
.sak-cta-btn:active { transform: translateY(0); }
.sak-cta-btn svg { transition: transform .2s; }
.sak-cta-btn:hover svg { transform: translateX(3px); }
.sak-cta-lg { padding: 14px 26px; font-size: 15px; }
.sak-cta-deal {
	background: var(--sak-danger);
	color: #fff !important;
	box-shadow: 0 2px 6px rgba(239, 68, 68, .35);
	font-size: 15px;
	padding: 14px 28px;
}
.sak-cta-deal:hover {
	background: #dc2626;
	color: #fff !important;
	box-shadow: 0 6px 14px rgba(239, 68, 68, .5);
}

/* ─── Shared: Stars ─────────────────────────────── */
.sak-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-size: 15px;
}
.sak-star { color: var(--sak-star); letter-spacing: 1px; }
.sak-star-empty { color: #d1d5db; }
.sak-star-half {
	background: linear-gradient(90deg, var(--sak-star) 50%, #d1d5db 50%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.sak-rating-number {
	margin-left: 6px;
	font-weight: 600;
	color: var(--sak-text);
	font-size: 14px;
}
.sak-rating-count {
	margin-left: 4px;
	color: var(--sak-text-muted);
	font-size: 13px;
}

/* ─── Shared: Prime badge ───────────────────────── */
.sak-prime-badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	background: var(--sak-prime);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	border-radius: 3px;
	letter-spacing: .3px;
	text-transform: uppercase;
	line-height: 1.4;
}

/* ─── Shared: Price ─────────────────────────────── */
.sak-price-now {
	font-size: 22px;
	font-weight: 800;
	color: var(--sak-danger);
	line-height: 1;
}
.sak-price-was {
	font-size: 13px;
	color: var(--sak-text-muted);
	text-decoration: line-through;
	margin-left: 6px;
}
.sak-price-save {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 6px;
	background: var(--sak-success);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	border-radius: 3px;
}
.sak-price-deal {
	font-size: 28px;
	color: var(--sak-danger);
}
.sak-price-na {
	font-size: 13px;
	color: var(--sak-text-muted);
}

/* ─── Shared: Discount badge ────────────────────── */
.sak-discount-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: var(--sak-danger);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 8px;
	border-radius: var(--sak-radius-sm);
	box-shadow: var(--sak-shadow-sm);
	z-index: 2;
}

/* ─── Shared: Disclosure ────────────────────────── */
.sak-disclosure {
	margin-top: 16px;
	padding: 10px 14px;
	background: var(--sak-bg-soft);
	border-left: 3px solid var(--sak-primary);
	border-radius: var(--sak-radius-sm);
	font-size: 12px;
	color: var(--sak-text-muted);
	font-style: italic;
}

/* ─── Placeholder ───────────────────────────────── */
.sak-placeholder {
	padding: 24px;
	border: 2px dashed var(--sak-border-strong);
	background: var(--sak-bg-soft);
	border-radius: var(--sak-radius);
	text-align: center;
	color: var(--sak-text-muted);
	font-size: 14px;
}

/* ═══ PRODUCT BOX ═══════════════════════════════ */
.sak-product-box {
	position: relative;
	background: var(--sak-bg);
	border: 1px solid var(--sak-border);
	border-radius: var(--sak-radius-lg);
	box-shadow: var(--sak-shadow-sm);
	overflow: hidden;
	transition: var(--sak-transition);
	display: flex;
	gap: 20px;
	padding: 20px;
}
.sak-product-box:hover {
	box-shadow: var(--sak-shadow);
	transform: translateY(-2px);
}
.sak-product-box.sak-layout-vertical {
	flex-direction: column;
	align-items: stretch;
	text-align: center;
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
}

.sak-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	background: linear-gradient(135deg, var(--sak-primary), #ff6b00);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 5px 10px;
	border-radius: 999px;
	letter-spacing: .5px;
	text-transform: uppercase;
	z-index: 2;
	box-shadow: 0 4px 10px rgba(255, 107, 0, .35);
}

.sak-product-media {
	flex: 0 0 180px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--sak-bg-soft);
	border-radius: var(--sak-radius);
	padding: 12px;
	min-height: 180px;
}
.sak-product-media img {
	max-width: 100%;
	max-height: 160px;
	height: auto;
	object-fit: contain;
	mix-blend-mode: multiply;
}
.sak-layout-vertical .sak-product-media {
	flex: 0 0 auto;
	width: 100%;
	min-height: 240px;
}
.sak-layout-vertical .sak-product-media img {
	max-height: 220px;
}

.sak-product-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.sak-product-brand {
	font-size: 12px;
	font-weight: 600;
	color: var(--sak-text-muted);
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 4px;
}
.sak-product-title {
	font-size: 17px !important;
	font-weight: 700 !important;
	margin: 0 0 8px !important;
	line-height: 1.35 !important;
	color: var(--sak-text) !important;
}
.sak-product-title a {
	color: inherit !important;
	text-decoration: none !important;
}
.sak-product-title a:hover {
	color: var(--sak-primary-dark) !important;
}
.sak-product-rating {
	margin: 4px 0 12px;
}

.sak-product-features {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 0 16px !important;
}
.sak-product-features li {
	position: relative;
	padding-left: 22px;
	font-size: 14px;
	color: var(--sak-text);
	margin: 4px 0;
	line-height: 1.5;
}
.sak-product-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--sak-success);
	font-weight: 800;
}

.sak-product-footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-top: 12px;
	flex-wrap: wrap;
}
.sak-product-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	flex-wrap: wrap;
}

/* Vertical layout footer adjustments */
.sak-layout-vertical .sak-product-footer {
	flex-direction: column;
	align-items: stretch;
}
.sak-layout-vertical .sak-product-price {
	justify-content: center;
}
.sak-layout-vertical .sak-cta-btn {
	width: 100%;
}

/* ═══ COMPARISON TABLE (v1.4.0) ══════════════════ */
.sak-ct-wrap {
	margin: 24px 0;
	font-family: inherit;
	color: #0f172a;
	position: relative;
}
.sak-ct-title {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 16px;
	color: #0f172a;
}
.sak-ct-pagination {
	display: flex;
	justify-content: center;
	gap: 2px;
	margin-bottom: 14px;
}
.sak-ct-pagination button {
	background: #6b7280;
	color: #fff;
	border: none;
	padding: 8px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background .15s;
}
.sak-ct-pagination button:hover:not(:disabled) { background: #4b5563; }
.sak-ct-pagination button:disabled { opacity: .4; cursor: not-allowed; }
.sak-ct-pagination .sak-ct-prev { border-radius: 6px 0 0 6px; }
.sak-ct-pagination .sak-ct-next { border-radius: 0 6px 6px 0; }
.sak-ct-scroll {
	overflow-x: auto;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: #fff;
}
.sak-ct {
	width: 100%;
	border-collapse: collapse;
	min-width: 720px;
	table-layout: fixed;
}
.sak-ct-page { display: none; }
.sak-ct-page.sak-ct-page-active { display: table-row-group; }
.sak-ct tr { border-bottom: 1px solid #e5e7eb; }
.sak-ct tr:last-child { border-bottom: none; }
.sak-ct .sak-ct-label {
	background: #f8fafc;
	padding: 18px 20px;
	text-align: left;
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	border-right: 1px solid #e5e7eb;
	vertical-align: middle;
	width: 150px;
}
.sak-ct-cell {
	padding: 16px 18px;
	border-right: 1px solid #e5e7eb;
	vertical-align: middle;
	width: calc((100% - 150px) / 4);
	font-size: 15px;
}
.sak-ct-cell:last-child, .sak-ct .sak-ct-empty:last-child { border-right: none; }
.sak-ct-empty { background: #fff; border-right: 1px solid #e5e7eb; }
.sak-ct-row-preview .sak-ct-cell-preview { text-align: center; padding: 14px 16px; }
.sak-ct-value-label {
	display: block;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 5px 10px;
	border-radius: 3px;
	margin-bottom: 8px;
	text-align: center;
}
.sak-ct-image-wrap {
	position: relative;
	background: #fff;
	border-radius: 4px;
	min-height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}
.sak-ct-image-wrap img { max-width: 100%; max-height: 160px; object-fit: contain; }
.sak-ct-rank {
	position: absolute;
	top: 6px;
	left: 6px;
	background: #475569;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 3px;
	z-index: 2;
}
.sak-ct-cell-title { font-weight: 700; font-size: 17px; line-height: 1.35; }
.sak-ct-price { color: #dc2626; font-weight: 700; font-size: 20px; margin-bottom: 4px; }
.sak-ct-price-link { color: #2563eb; font-size: 14px; text-decoration: none; }
.sak-ct-price-link:hover { text-decoration: underline; }
.sak-ct-score-bar { position: relative; cursor: help; outline: none; }
.sak-ct-score-track {
	position: relative;
	height: 22px;
	border-radius: 3px;
	overflow: hidden;
	background: linear-gradient(to right, #dc2626 0%, #f59e0b 25%, #facc15 45%, #84cc16 65%, #15803d 100%);
}
.sak-ct-score-mask { display: none; }
.sak-ct-score-value {
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0,0,0,0.4);
	z-index: 2;
	white-space: nowrap;
	left: auto;
}
.sak-ct-score-na { color: #94a3b8; font-size: 18px; }
.sak-ct-stars { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.sak-ct-stars-icons {
	position: relative;
	display: inline-block;
	font-size: 17px;
	line-height: 1;
	letter-spacing: 2px;
	white-space: nowrap;
}
.sak-ct-stars-bg { color: #d1d5db; }
.sak-ct-stars-fg {
	position: absolute;
	top: 0;
	left: 0;
	color: #f59e0b;
	overflow: hidden;
	white-space: nowrap;
}
.sak-ct-stars-num { font-weight: 700; font-size: 14px; }
.sak-ct-stars-count { color: #64748b; font-size: 13px; }
.sak-ct-cell-spec { font-size: 14px; line-height: 1.5; color: #334155; }
.sak-ct-tooltip {
	position: absolute;
	pointer-events: none;
	background: #fff;
	border: 1px solid #0f172a;
	border-radius: 6px;
	box-shadow: 0 12px 28px rgba(0,0,0,0.2);
	padding: 18px 22px;
	min-width: 300px;
	max-width: 360px;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity .15s, transform .15s;
	z-index: 1000;
	font-size: 14px;
}
.sak-ct-tooltip[aria-hidden="false"] { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sak-ct-tooltip h4 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: #0f172a; }
.sak-ct-tooltip p { margin: 4px 0; color: #475569; line-height: 1.5; font-size: 14px; }
.sak-ct-tooltip .sak-tt-brand { font-weight: 700; color: #0f172a; }
.sak-ct-tooltip .sak-tt-stats { font-size: 14px; color: #334155; margin: 10px 0 6px; }
.sak-ct-tooltip .sak-tt-break-label { font-weight: 600; margin-top: 12px; margin-bottom: 6px; font-size: 14px; color: #475569; }
.sak-ct-tooltip .sak-tt-row {
	display: grid;
	grid-template-columns: 56px 1fr 44px;
	align-items: center;
	gap: 10px;
	margin-bottom: 4px;
	font-size: 13px;
}
.sak-ct-tooltip .sak-tt-star { color: #2563eb; font-weight: 600; }
.sak-ct-tooltip .sak-tt-bar {
	height: 14px;
	background: #f1f5f9;
	border-radius: 2px;
	border: 1px solid #e2e8f0;
	overflow: hidden;
}
.sak-ct-tooltip .sak-tt-bar-fill { height: 100%; background: #ea580c; }
.sak-ct-tooltip .sak-tt-pct { text-align: right; color: #2563eb; font-weight: 600; font-size: 13px; }
.sak-ct-tooltip .sak-tt-score-pos { font-weight: 600; margin-top: 12px; margin-bottom: 6px; color: #475569; }
.sak-ct-tooltip .sak-tt-scale {
	height: 12px;
	border-radius: 3px;
	background: linear-gradient(to right, #dc2626 0%, #f59e0b 25%, #facc15 45%, #84cc16 65%, #16a34a 85%, #15803d 100%);
	position: relative;
}
.sak-ct-tooltip .sak-tt-scale-marker {
	position: absolute;
	top: -3px;
	width: 4px;
	height: 18px;
	background: #0f172a;
	border-radius: 2px;
	transform: translateX(-50%);
}
@media (max-width: 768px) {
	.sak-ct .sak-ct-label { width: 110px; padding: 12px 10px; font-size: 13px; }
	.sak-ct-cell { padding: 12px 10px; font-size: 13px; }
	.sak-ct-cell-title { font-size: 14px; }
	.sak-ct-price { font-size: 16px; }
	.sak-ct-image-wrap { min-height: 100px; }
	.sak-ct-image-wrap img { max-height: 100px; }
	.sak-ct-tooltip { min-width: 260px; max-width: 300px; }
}

/* ═══ PRODUCT LIST ══════════════════════════════ */
.sak-product-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.sak-list-title {
	font-size: 24px !important;
	font-weight: 800 !important;
	margin: 0 0 8px !important;
}
.sak-list-item {
	position: relative;
	display: grid;
	grid-template-columns: 80px 180px 1fr 200px;
	gap: 20px;
	align-items: center;
	background: var(--sak-bg);
	border: 1px solid var(--sak-border);
	border-radius: var(--sak-radius-lg);
	padding: 20px 24px;
	box-shadow: var(--sak-shadow-sm);
	transition: var(--sak-transition);
}
.sak-list-item:hover {
	box-shadow: var(--sak-shadow);
	transform: translateY(-2px);
	border-color: var(--sak-primary);
}

.sak-list-rank {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 28px;
	color: var(--sak-primary);
}
.sak-rank-badge.sak-list-rank,
.sak-list-rank.sak-rank-badge {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--sak-primary), #ff6b00);
	color: #fff;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(255, 153, 0, .35);
	font-size: 22px;
}
.sak-list-rank.sak-rank-medal {
	font-size: 40px;
	background: none;
	color: inherit;
	width: auto;
	height: auto;
	box-shadow: none;
}

.sak-list-image {
	position: relative;
	background: var(--sak-bg-soft);
	border-radius: var(--sak-radius);
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 160px;
}
.sak-list-image img {
	max-width: 100%;
	max-height: 140px;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.sak-list-body {
	min-width: 0;
}
.sak-list-brand {
	font-size: 11px;
	font-weight: 700;
	color: var(--sak-text-muted);
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 4px;
}
.sak-list-item-title {
	font-size: 18px !important;
	font-weight: 700 !important;
	margin: 0 0 8px !important;
	line-height: 1.35 !important;
}
.sak-list-item-title a {
	color: var(--sak-text);
	text-decoration: none;
}
.sak-list-item-title a:hover { color: var(--sak-primary-dark); }
.sak-list-rating { margin: 4px 0 10px; }
.sak-list-features {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 13px;
}
.sak-list-features li {
	position: relative;
	padding-left: 20px;
	margin: 3px 0;
	line-height: 1.5;
}
.sak-list-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--sak-success);
	font-weight: 800;
}

.sak-list-action {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	text-align: center;
}
.sak-list-price {
	margin-bottom: 4px;
}
.sak-list-action .sak-cta-btn { width: 100%; }
.sak-list-prime { margin-top: 4px; }

/* ═══ PROS & CONS ═══════════════════════════════ */
.sak-pros-cons {
	background: var(--sak-bg);
	border-radius: var(--sak-radius-lg);
	padding: 24px;
	border: 1px solid var(--sak-border);
	box-shadow: var(--sak-shadow-sm);
}
.sak-pc-heading {
	font-size: 20px !important;
	font-weight: 800 !important;
	text-align: center;
	margin: 0 0 20px !important;
}
.sak-pc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.sak-pc-col {
	border-radius: var(--sak-radius);
	padding: 20px;
	border: 2px solid;
}
.sak-pc-pros {
	background: #ecfdf5;
	border-color: #a7f3d0;
}
.sak-pc-cons {
	background: #fef2f2;
	border-color: #fca5a5;
}
.sak-pc-header {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: .5px;
}
.sak-pc-pros .sak-pc-header { color: var(--sak-success); }
.sak-pc-cons .sak-pc-header { color: var(--sak-danger); }
.sak-pc-col ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.sak-pc-col li {
	position: relative;
	padding-left: 24px;
	margin: 8px 0;
	font-size: 14px;
	line-height: 1.5;
}
.sak-pc-pros li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--sak-success);
	font-weight: 800;
	font-size: 16px;
}
.sak-pc-cons li::before {
	content: "✕";
	position: absolute;
	left: 0;
	color: var(--sak-danger);
	font-weight: 800;
	font-size: 16px;
}

/* ═══ DEAL BOX ══════════════════════════════════ */
.sak-deal-box {
	position: relative;
	background: linear-gradient(135deg, #fff5e6, #ffecd1);
	border-radius: var(--sak-radius-lg);
	overflow: hidden;
	box-shadow: var(--sak-shadow);
	border: 2px solid var(--sak-primary);
}
.sak-deal-ribbon {
	display: flex;
	align-items: center;
	gap: 6px;
	background: linear-gradient(135deg, var(--sak-danger), #b91c1c);
	color: #fff;
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	animation: sak-pulse-bg 2s ease-in-out infinite;
}
@keyframes sak-pulse-bg {
	0%, 100% { background: linear-gradient(135deg, var(--sak-danger), #b91c1c); }
	50% { background: linear-gradient(135deg, #dc2626, #991b1b); }
}
.sak-deal-inner {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 24px;
	padding: 24px;
	background: #fff;
	margin: 2px;
	border-radius: 0 0 calc(var(--sak-radius-lg) - 2px) calc(var(--sak-radius-lg) - 2px);
}
.sak-deal-media {
	position: relative;
	background: var(--sak-bg-soft);
	border-radius: var(--sak-radius);
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}
.sak-deal-media img {
	max-width: 100%;
	max-height: 180px;
	object-fit: contain;
	mix-blend-mode: multiply;
}
.sak-deal-discount {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--sak-danger);
	color: #fff;
	padding: 10px 14px;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(239, 68, 68, .4);
	transform: rotate(-8deg);
}
.sak-deal-save {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
}
.sak-deal-percent {
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}
.sak-deal-body { display: flex; flex-direction: column; }
.sak-deal-title {
	font-size: 20px !important;
	font-weight: 800 !important;
	margin: 0 0 8px !important;
	line-height: 1.3 !important;
}
.sak-deal-title a {
	color: var(--sak-text) !important;
	text-decoration: none !important;
}
.sak-deal-title a:hover { color: var(--sak-primary-dark) !important; }
.sak-deal-rating { margin: 4px 0 12px; }
.sak-deal-pricing {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 16px;
}

.sak-countdown {
	background: linear-gradient(135deg, #fef3c7, #fde68a);
	border-radius: var(--sak-radius);
	padding: 12px 16px;
	margin-bottom: 16px;
	border-left: 4px solid var(--sak-danger);
}
.sak-countdown-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--sak-danger);
	text-transform: uppercase;
	letter-spacing: .5px;
	display: block;
	margin-bottom: 6px;
}
.sak-countdown-units {
	display: flex;
	gap: 10px;
	align-items: center;
}
.sak-countdown-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: var(--sak-text);
	color: #fff;
	padding: 6px 10px;
	border-radius: var(--sak-radius-sm);
	min-width: 48px;
}
.sak-countdown-unit b {
	font-size: 18px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}
.sak-countdown-unit small {
	font-size: 10px;
	text-transform: uppercase;
	opacity: .8;
}
.sak-deal-prime {
	margin-top: 10px;
	font-size: 12px;
	color: var(--sak-text-muted);
}

/* ─── Style variants ────────────────────────────── */
.sak-style-minimal {
	border: 1px solid var(--sak-border);
	box-shadow: none;
}
.sak-style-minimal:hover {
	border-color: var(--sak-primary);
}
.sak-style-bold .sak-cta-btn {
	background: var(--sak-text);
	color: #fff !important;
}
.sak-style-bold .sak-cta-btn:hover {
	background: #000;
	color: #fff !important;
}
.sak-style-glass {
	background: rgba(255, 255, 255, .75);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, .4);
}

/* ═══════════════════════════════════════════════ */
/* RESPONSIVE — Mobile-first breakpoints            */
/* ═══════════════════════════════════════════════ */

/* Tablet ≤ 900px */
@media (max-width: 900px) {
	.sak-list-item {
		grid-template-columns: 60px 140px 1fr;
		grid-template-rows: auto auto;
	}
	.sak-list-rank { grid-row: 1 / 3; }
	.sak-list-image { grid-row: 1 / 3; }
	.sak-list-action {
		grid-column: 1 / -1;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding-top: 12px;
		border-top: 1px solid var(--sak-border);
	}
	.sak-list-action .sak-cta-btn { width: auto; flex: 1; margin-left: 12px; }

	.sak-deal-inner {
		grid-template-columns: 160px 1fr;
		padding: 16px;
	}
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
	.sak-product-box {
		flex-direction: column;
		padding: 16px;
		gap: 16px;
	}
	.sak-product-media {
		flex: 0 0 auto;
		width: 100%;
		min-height: 200px;
	}
	.sak-product-media img { max-height: 180px; }
	.sak-product-footer {
		flex-direction: column;
		align-items: stretch;
	}
	.sak-product-footer .sak-cta-btn { width: 100%; }
	.sak-product-price { justify-content: center; }

	.sak-list-item {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		text-align: center;
	}
	.sak-list-rank {
		grid-row: auto;
		margin: 0 auto;
	}
	.sak-list-image {
		grid-row: auto;
		height: 180px;
	}
	.sak-list-features li { text-align: left; }
	.sak-list-action {
		grid-column: 1;
		flex-direction: column;
	}
	.sak-list-action .sak-cta-btn { width: 100%; margin: 0; }

	.sak-pc-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.sak-deal-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.sak-deal-media { min-height: 180px; }
	.sak-deal-pricing { justify-content: center; }

	.sak-comparison-table {
		font-size: 13px;
	}
	.sak-comparison-table th,
	.sak-comparison-table td {
		padding: 10px 8px;
	}
	.sak-col-title { min-width: 150px; }
	.sak-col-image img { width: 60px; height: 60px; }

	.sak-countdown-units { flex-wrap: wrap; }
}

/* Small mobile ≤ 400px */
@media (max-width: 400px) {
	.sak-product-title,
	.sak-list-item-title,
	.sak-deal-title {
		font-size: 16px !important;
	}
	.sak-price-now { font-size: 20px; }
	.sak-price-deal { font-size: 24px; }
	.sak-cta-btn { padding: 10px 16px; font-size: 13px; }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	.sak-dark-auto {
		--sak-text:          #f1f5f9;
		--sak-text-muted:    #94a3b8;
		--sak-border:        #334155;
		--sak-border-strong: #475569;
		--sak-bg:            #1e293b;
		--sak-bg-soft:       #0f172a;
		--sak-bg-hover:      #334155;
	}
}

/* Print */
@media print {
	.sak-cta-btn, .sak-deal-ribbon, .sak-countdown {
		display: none !important;
	}
}
