/* ==========================================================================
   Powerblanket Common Styles — Shared across all Powerblanket templates
   Scoped under .powerblanket wrapper
   ========================================================================== */

/* ---------- Reset & Base ---------- */
.powerblanket {
	font-family: 'Montserrat', sans-serif;
	color: #333;
	line-height: 1.6;
}

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

.powerblanket h1,
.powerblanket h2,
.powerblanket h3,
.powerblanket h4,
.powerblanket h5,
.powerblanket h6 {
	font-family: 'Montserrat', sans-serif;
}

.pb-container {
	max-width: 1336px;
	margin: 0 auto;
	padding: 0;
}

/* ---------- Shared Button ---------- */
.pb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 9999px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: opacity 0.2s ease, background-color 0.2s ease;
	white-space: nowrap;
}

.pb-btn:hover {
	text-decoration: none;
	box-shadow: 0em 0.15em 0.65em 0em rgba(0, 0, 0, 0.25);
}

.pb-btn--primary:hover svg path {
	stroke: #da291c;
}

.pb-btn--primary {
	background-color: #da291c;
	color: #fff;
	height: 53px;
	padding: 0 36px;
}

.pb-btn--primary:hover {
	color: #da291c;
	background-color: #fff;
}

.pb-btn--hero {
	margin-top: 32px;
}

.pb-btn--card {
	display: block;
	width: 100%;
	text-align: center;
	background-color: #d12a2f;
	color: #fff;
	height: 43.5px;
	line-height: 43.5px;
	padding: 0 16px;
	font-size: 13px;
	margin-top: auto;
}

.pb-btn--card:hover {
	color: #d12a2f;
	background-color: #fff;
	box-shadow: 0em 0.15em 0.65em 0em rgba(0, 0, 0, 0.25);
}

.pb-btn--cta {
	width: 220px;
}

.pb-btn--outline {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	height: 58.5px;
	padding: 0 36px;
}

.pb-btn--outline:hover {
	background: #fff;
	color: #1a1a1a;
}

.pb-btn--outline:hover svg path {
	stroke: #1a1a1a;
}


/* ==========================================================================
   HERO SECTION (shared across all templates)
   ========================================================================== */
.powerblanket .pb-hero {
	position: relative;
	width: 100%;
	min-height: 825px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.pb-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.8) 0%,
		rgba(0, 0, 0, 0.55) 50%,
		transparent 100%
	);
	z-index: 1;
}

.pb-hero__content {
	position: relative;
	z-index: 2;
	max-width: 1336px;
	margin: 0 auto;
	padding: 80px 0;
	width: 100%;
}

.pb-hero__logo {
	display: block;
	width: 412px;
	max-width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.pb-hero__subtitle {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.3px;
	color: #da291c;
	margin-bottom: 16px;
}

.pb-hero__title {
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -1.47px;
	line-height: 50.4px;
	max-width: 780px;
	margin: 0 0 20px;
}

.pb-hero__desc {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	line-height: 32px;
	max-width: 650px;
	letter-spacing: -0.5px;
	margin-bottom: 28px;
}

.pb-hero__bullets {
	list-style: none;
	padding: 0;
	margin: 0 0 8px;
	max-width: 700px;
}

.pb-hero__bullets li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
}

.pb-hero__bullets li svg {
	flex-shrink: 0;
	margin-top: 3px;
}

.pb-hero__bullets li span {
	font-size: 17px;
	font-weight: 500;
	color: #fff;
	line-height: 27.2px;
	letter-spacing: -0.5px;
}


/* ==========================================================================
   PRODUCT CARDS (shared across templates)
   ========================================================================== */
.powerblanket .pb-cards {
	background: #f5f5f5;
	padding: 80px 0 80px;
}

.pb-cards__header {
	text-align: center;
	margin-bottom: 48px;
}

.pb-cards__header h2 {
	font-size: 38px;
	font-weight: 700;
	color: #4d4d4f;
	letter-spacing: -1.47px;
	margin: 0 0 12px;
}

.pb-cards__header p {
	font-size: 17px;
	font-weight: 400;
	color: #000;
	margin: 0;
}

.pb-cards__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.pb-cards__grid--4col {
	grid-template-columns: repeat(4, 1fr);
}

/* Single Card */
.pb-card {
	background: #fff;
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
				0 2px 4px -2px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease;
}

.pb-card:hover {
	transform: scale(1.03);
}

.pb-card__image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.pb-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.pb-card:hover .pb-card__image img {
	transform: scale(1.03);
}

.pb-card__titlebar {
	background: #35373e;
	height: 57px;
	display: flex;
	align-items: center;
	padding-left: 24px;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.pb-card__body {
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.pb-card__desc {
	font-size: 13px;
	font-weight: 400;
	color: #555;
	line-height: 21.125px;
	margin: 0 0 16px;
}

.pb-card__list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.pb-card__list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 400;
	color: #333;
	line-height: 1.5;
}

.pb-card__list li svg {
	flex-shrink: 0;
	margin-top: 2px;
}

.pb-card__subitem {
	padding-left: 22px;
	font-size: 14px;
	color: #333;
}


/* ==========================================================================
   CTA BANNER (shared)
   ========================================================================== */
.powerblanket .pb-cta {
	background: #f5f5f5;
	padding: 80px 0;
	text-align: center;
}

.pb-cta h2 {
	font-size: 38px;
	font-weight: 700;
	color: #da291c;
	letter-spacing: -1.47px;
	max-width: 767px;
	margin: 0 auto 20px;
}

.pb-cta p {
	font-size: 17px;
	font-weight: 400;
	color: #000;
	line-height: 28.9px;
	max-width: 738px;
	margin: 0 auto 32px;
}


/* ==========================================================================
   QUOTE SECTION (shared)
   ========================================================================== */
.powerblanket .pb-quote {
	background: #35373e;
	padding: 80px 0 60px;
	text-align: center;
}

.powerblanket .pb-quote--light {
	background: #fff;
}

.pb-quote--light .pb-quote__title {
	color: #1a1a1a;
}

.pb-quote--light .pb-quote__desc {
	color: #555;
	max-width: 715px;
}

.pb-quote__subtitle {
	font-size: 13px;
	font-weight: 700;
	color: #da291c;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 16px;
}

.pb-quote__title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -1.26px;
	margin: 0 0 16px;
}

.pb-quote__desc {
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	max-width: 570px;
	margin: 0 auto 48px;
	line-height: 1.6;
}


/* ==========================================================================
   RESPONSIVE — COMMON BREAKPOINTS
   ========================================================================== */

/* ---------- Mid-range (991px to 1340px) ---------- */
@media (min-width: 991px) and (max-width: 1340px) {
	.pb-container,
	.pb-hero__content {
		padding-left: 40px;
		padding-right: 40px;
	}

	.powerblanket .pb-cards,
	.powerblanket .pb-cta,
	.powerblanket .pb-quote {
		padding-left: 40px;
		padding-right: 40px;
	}
}

/* ---------- Tablet (max-width: 992px) ---------- */
@media (max-width: 992px) {
	.pb-container,
	.pb-hero__content {
		padding-left: 40px;
		padding-right: 40px;
	}

	.pb-hero {
		min-height: 700px;
	}

	.pb-hero__logo {
		width: 300px;
	}

	.pb-hero__title {
		font-size: 34px;
		line-height: 42px;
	}

	.pb-hero__desc {
		font-size: 18px;
		line-height: 28px;
	}

	.pb-cards__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.pb-cards__grid--4col {
		grid-template-columns: repeat(2, 1fr);
	}

	.pb-cards__header h2 {
		font-size: 32px;
	}

	.pb-cta h2 {
		font-size: 32px;
	}

	.pb-quote__title {
		font-size: 30px;
	}
}

/* ---------- Mobile (max-width: 768px) ---------- */
@media (max-width: 768px) {
	.pb-container,
	.pb-hero__content {
		padding-left: 20px;
		padding-right: 20px;
	}

	.powerblanket .pb-hero {
		min-height: auto;
		padding: 0;
	}

	.pb-hero__content {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.pb-hero__logo {
		width: 220px;
	}

	.pb-hero__title {
		font-size: 28px;
		line-height: 36px;
		letter-spacing: -1px;
	}

	.pb-hero__desc {
		font-size: 16px;
		line-height: 26px;
	}

	.pb-hero__bullets li span {
		font-size: 15px;
		line-height: 24px;
	}

	.pb-btn--hero {
		width: 100%;
		max-width: 280px;
	}

	.powerblanket .pb-cards {
		padding: 48px 0;
	}

	.pb-cards__header h2 {
		font-size: 26px;
		letter-spacing: -1px;
	}

	.pb-cards__grid,
	.pb-cards__grid--4col {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.powerblanket .pb-cta {
		padding: 48px 0;
	}

	.pb-cta h2 {
		font-size: 26px;
	}

	.pb-cta p {
		font-size: 15px;
		line-height: 26px;
	}

	.pb-btn--cta {
		width: 100%;
		max-width: 280px;
	}

	.powerblanket .pb-quote {
		padding: 48px 0 40px;
	}

	.pb-quote__title {
		font-size: 26px;
	}

	.pb-quote__desc {
		font-size: 14px;
	}
}
