/* =========================================================
   TESTED OK ELECTRONICS
   DEALS PAGE
   ========================================================= */


/* =========================================================
   PAGE BASE
   ========================================================= */

.tok-deals-page {
	background: #ffffff;
}

.tok-deals-container {
	width: min(1200px, calc(100% - 48px));
	max-width: 1200px;

	margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.tok-deals-hero {
	position: relative;

	padding: 90px 0 95px;

	background:
		linear-gradient(
			135deg,
			#071A33 0%,
			#0D315D 100%
		);

	overflow: hidden;
}

.tok-deals-hero::after {
	content: "";

	position: absolute;

	right: -120px;
	bottom: -180px;

	width: 480px;
	height: 480px;

	border: 1px solid rgba(255,255,255,.08);

	border-radius: 50%;
}

.tok-deals-hero-content {
	position: relative;

	z-index: 2;

	max-width: 680px;
}

.tok-deals-eyebrow {
	display: flex;

	align-items: center;

	gap: 10px;

	margin-bottom: 20px;

	color: #ffffff;

	font-size: 11px;

	font-weight: 700;

	letter-spacing: 1.5px;
}

.tok-deals-eyebrow span {
	display: block;

	width: 28px;
	height: 2px;

	background: #E31E24;
}

.tok-deals-hero h1 {
	margin: 0 0 20px !important;

	color: #ffffff !important;

	font-size: clamp(40px, 5vw, 64px) !important;

	font-weight: 800 !important;

	line-height: 1.05 !important;

	letter-spacing: -1.5px !important;
}

.tok-deals-hero h1 strong {
	display: block;

	color: #E31E24 !important;

	font-weight: 800 !important;
}

.tok-deals-hero p {
	max-width: 570px;

	margin: 0 0 30px;

	color: rgba(255,255,255,.76);

	font-size: 15px;

	line-height: 1.8;
}


/* =========================================================
   BUTTON
   ========================================================= */

.tok-deals-button {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	gap: 12px;

	min-height: 48px;

	padding: 0 24px;

	border: 0;

	border-radius: 4px;

	background: #E31E24;

	color: #ffffff !important;

	font-size: 12px;

	font-weight: 700;

	line-height: 1;

	text-decoration: none !important;

	transition:
		background .25s ease,
		transform .25s ease;
}

.tok-deals-button:hover {
	background: #ffffff;

	color: #071A33 !important;

	transform: translateY(-2px);
}

.tok-deals-button i {
	font-size: 11px;
}


/* =========================================================
   PRODUCTS SECTION
   ========================================================= */

.tok-deals-products-section {
	padding: 85px 0 90px;

	background: #ffffff;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.tok-deals-section-heading {
	display: flex;

	align-items: flex-end;
	justify-content: space-between;

	gap: 40px;

	margin-bottom: 38px;
}

.tok-deals-section-label {
	margin-bottom: 10px;

	color: #E31E24;

	font-size: 10px;

	font-weight: 800;

	letter-spacing: 1.5px;
}

.tok-deals-section-heading h2 {
	margin: 0 !important;

	color: #071A33 !important;

	font-size: 30px !important;

	line-height: 1.2 !important;

	font-weight: 800 !important;
}

.tok-deals-section-heading > p {
	max-width: 320px;

	margin: 0;

	color: #89929D;

	font-size: 12px;

	line-height: 1.7;

	text-align: right;
}


/* =========================================================
   DEAL PRODUCT GRID
   ========================================================= */

.tok-deals-grid {
	display: grid;

	grid-template-columns:
		repeat(4, minmax(0, 1fr));

	gap: 22px;
}


/*
 * Make the existing Tested OK product card
 * behave correctly inside Deals.
 */

.tok-deals-grid .tok-product-card {
	width: 100%;
	margin: 0;
}


/* =========================================================
   DEAL CATEGORY SECTION
   ========================================================= */

.tok-deal-categories {
	padding: 85px 0;

	background: #F6F8FA;
}

.tok-deal-category-grid {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap: 16px;
}

.tok-deal-category {
	display: grid;

	grid-template-columns: 58px 1fr 20px;

	align-items: center;

	gap: 18px;

	min-height: 120px;

	padding: 22px 25px;

	border: 1px solid #E1E7ED;

	background: #ffffff;

	color: #071A33;

	text-decoration: none !important;

	transition:
		border-color .25s ease,
		box-shadow .25s ease,
		transform .25s ease;
}

.tok-deal-category:hover {
	border-color: #0D47A1;

	box-shadow:
		0 12px 30px rgba(7,26,51,.07);

	transform: translateY(-2px);
}

.tok-deal-category-icon {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 58px;
	height: 58px;

	background: #EEF3F8;

	color: #0D47A1;

	font-size: 20px;
}

.tok-deal-category h3 {
	margin: 0 0 5px !important;

	color: #071A33 !important;

	font-size: 15px !important;

	font-weight: 750 !important;

	line-height: 1.3 !important;
}

.tok-deal-category p {
	margin: 0;

	color: #89929D;

	font-size: 11px;

	line-height: 1.6;
}

.tok-deal-category > i {
	color: #0D47A1;

	font-size: 12px;

	transition: transform .25s ease;
}

.tok-deal-category:hover > i {
	transform: translateX(4px);
}


/* =========================================================
   NO DEALS
   ========================================================= */

.tok-deals-empty {
	max-width: 600px;

	margin: 0 auto;

	padding: 65px 30px;

	border: 1px solid #E1E7ED;

	background: #F8FAFC;

	text-align: center;
}

.tok-deals-empty-icon {
	display: flex;

	align-items: center;
	justify-content: center;

	width: 58px;
	height: 58px;

	margin: 0 auto 20px;

	background: #EEF3F8;

	color: #E31E24;

	font-size: 20px;
}

.tok-deals-empty h3 {
	margin: 0 0 10px !important;

	color: #071A33 !important;

	font-size: 20px !important;

	font-weight: 800 !important;
}

.tok-deals-empty p {
	margin: 0 0 25px;

	color: #89929D;

	font-size: 12px;

	line-height: 1.7;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.tok-deals-cta {
	padding: 65px 0;

	background: #071A33;
}

.tok-deals-cta-inner {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 40px;
}

.tok-deals-cta .tok-deals-section-label {
	color: #E31E24;
}

.tok-deals-cta h2 {
	margin: 0 0 10px !important;

	color: #ffffff !important;

	font-size: 28px !important;

	font-weight: 800 !important;

	line-height: 1.2 !important;
}

.tok-deals-cta p {
	margin: 0;

	color: rgba(255,255,255,.68);

	font-size: 12px;

	line-height: 1.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

	.tok-deals-grid {
		grid-template-columns:
			repeat(3, minmax(0, 1fr));
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.tok-deals-container {
		width: calc(100% - 28px);
	}

	.tok-deals-hero {
		padding: 65px 0 70px;
	}

	.tok-deals-hero h1 {
		font-size: 42px !important;
	}

	.tok-deals-products-section,
	.tok-deal-categories {
		padding: 60px 0;
	}

	.tok-deals-section-heading {
		display: block;

		margin-bottom: 28px;
	}

	.tok-deals-section-heading > p {
		margin-top: 12px;

		text-align: left;
	}

	.tok-deals-section-heading h2 {
		font-size: 26px !important;
	}

	.tok-deals-grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap: 14px;
	}

	.tok-deal-category-grid {
		grid-template-columns: 1fr;
	}

	.tok-deals-cta-inner {
		display: block;
	}

	.tok-deals-cta .tok-deals-button {
		margin-top: 25px;
	}

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

	.tok-deals-grid {
		grid-template-columns: 1fr;
	}

	.tok-deals-hero h1 {
		font-size: 36px !important;
	}

	.tok-deal-category {
		grid-template-columns: 48px 1fr 18px;

		padding: 18px;
	}

	.tok-deal-category-icon {
		width: 48px;
		height: 48px;
	}

}






