/* =====================================================================
 * theme26-sections.css : layout26 section styles for the OLD rv2 layout
 * GENERATED - DO NOT EDIT BY HAND. Rebuild with scratchpad/extract_css.ps1
 * ---------------------------------------------------------------------
 * WHY: migration 05_v2 pushed layout26 section HTML into
 * pbs_product_pages_customsections. The old rv2 layout renders that HTML
 * but lacks the styles, so sections collapse.
 *
 * HOW THE CONTENT OF THIS FILE IS CHOSEN (measured, not guessed):
 *   classes used by all active sections ....... 428
 *   already provided by the old page .......... 206
 *     (it loads REAL Bootstrap 5.2.0 + Font Awesome, so do NOT re-extract
 *      base26's own .container .col-* .card: they would FIGHT bootstrap)
 *   extracted here ............................ 222  [base26.css=156, pbs26-content.css=25, cart26.css=16]
 *
 * SAFETY: contains ONLY class rules. base26.css's global resets
 *   html{} body{} img{display:block} a{color:inherit} ul{list-style:none}
 * are deliberately EXCLUDED: they would break every old-layout page.
 * The extractor refuses to emit element selectors, so a regenerate cannot
 * reintroduce them.
 *
 * KEEP THIS COMMENT ASCII-ONLY. See extract_css.ps1 for why.
 * ===================================================================== */

:root {
  --accent: #f07d3a;
  --bg-light: #f8f9fa;
  --gray-200: #e9ecef;
  --primary: #ee5a2a;
  --primary-dark: #d44e20;
  --radius: 12px;
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, .12);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --text-dark: #212529;
  --text-medium: #495057;
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}
/* ---- from base26.css ---- */

.orange { color: var(--accent); }

.hero-section {
	padding: 40px 0 80px;
	background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(225, 34, 38, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-title {
	font-size: 52px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--text-dark);
	margin-bottom: 20px;
	letter-spacing: -1.5px;
}

@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 42px; }
}

@media (max-width: 576px) {
  .hero-section { padding: 100px 0 60px; }
  .hero-title { font-size: 36px; }
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-dark);
	text-align: center;
	margin-bottom: 16px;
}

.section-subtitle {
	font-size: 18px;
	color: var(--text-medium);
	text-align: center;
	margin-bottom: 48px;
}

.transform-section {
	padding: 80px 0;
	background: #fff;
	text-align: center;
}

.transform-section h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.35;
	margin-bottom: 20px;
}

.transform-section .lead {
	font-size: 17px;
	color: var(--text-medium);
	max-width: 820px;
	margin: 0 auto;
	line-height: 1.8;
}

.how-it-works {
	padding: 80px 0;
	background: var(--bg-light);
	text-align: center;
}

.how-it-works h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.how-it-works h2.accent {
	color: var(--accent);
	margin-bottom: 48px;
}

.how-card {
	background: #fff;
  display: flex;            
  flex-direction: column;    
  align-items: center;      
  text-align: center;
	border-radius: var(--radius);
	padding: 36px 28px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--gray-200);
	height: 100%;
	transition: var(--transition);
}

.how-card:hover { box-shadow: var(--shadow-lg); }

.how-card img {
	height: 60px;
	width: auto;
	margin-bottom: 20px;
	object-fit: contain;
}

.how-card h5 {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.how-card p {
	font-size: 15px;
	color: var(--text-medium);
	line-height: 1.65;
	margin: 0;
}

.pbs-badge-gradient {
	display: inline-block;
	padding: 14px 36px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	border-radius: 50px;
	text-decoration: none;
	transition: var(--transition);
	box-shadow: 0 4px 15px rgba(225,34,38,0.3);
}

.pbs-badge-gradient:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(225,34,38,0.4);
	color: #fff;
}

.trustpilot-row {
	display: flex;
	align-items: center;
  justify-content: center;
	gap: 12px;
	font-size: 14px;
	color: var(--text-medium);
	flex-wrap: wrap;
}

.trustpilot-row a { display: flex; align-items: center; }

.trustpilot-row img { height: 24px; width: auto; }

.video-section {
	padding: 80px 0;
	background: #fff;
	text-align: center;
}

.video-section h2 {
	font-size: 32px;
	font-weight: 400;
	color: var(--text-dark);
	margin-bottom: 40px;
	line-height: 1.45;
}

.video-text {
	max-width: 760px;
	margin: 40px auto 0;
	text-align: left;
}

.video-text p {
	font-size: 16px;
	color: var(--text-medium);
	line-height: 1.8;
	margin-bottom: 14px;
}

.customer-faves {
	padding: 80px 0;
	background: var(--bg-light);
	text-align: center;
}

.fave-card {
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--gray-200);
	transition: var(--transition);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.fave-card:hover { box-shadow: var(--shadow-lg); }

.fave-card > img {
	width: 100%;
	aspect-ratio: 16/10;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.fave-body {
	padding: 22px 24px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.fave-body h4 {
	font-size: 19px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 10px;
}

.fave-body p {
	font-size: 14px;
	color: var(--text-medium);
	line-height: 1.65;
	flex: 1;
	margin-bottom: 18px;
}

.order-btn {
	display: inline-block;
	padding: 10px 22px;
	background: var(--primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.4px;
	border-radius: 8px;
	text-decoration: none;
	transition: var(--transition);
	align-self: flex-start;
}

.order-btn:hover {
	background: var(--primary-dark);
	color: #fff;
	transform: translateY(-2px);
}

.fave-cta-card {
	background: linear-gradient(135deg, #ee5a2a, #f07d3a, #f5a55a, #f07035, #ee5a2a);
	background-size: 300% 300%;
	animation: ctaGradientShift 5s ease infinite;
	border-radius: var(--radius);
	padding: 36px 30px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.fave-cta-card::before {
	content: '';
	position: absolute;
	top: -80px; left: -80px;
	width: 220px; height: 220px;
	background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 65%);
	pointer-events: none;
}

.fave-cta-card::after {
	content: '';
	position: absolute;
	bottom: -50px; right: -50px;
	width: 180px; height: 180px;
	background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.fave-cta-icon {
	width: 54px;
	height: 54px;
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(8px);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
	font-size: 24px;
	color: #fff;
	flex-shrink: 0;
	border: 1px solid rgba(255,255,255,0.3);
}

.fave-cta-card h3 {
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 12px;
	position: relative;
}

.fave-cta-card p {
	font-size: 14px;
	color: rgba(255,255,255,0.88);
	line-height: 1.75;
	margin-bottom: 28px;
	flex: 1;
	position: relative;
}

.fave-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 24px;
	background: #fff;
	color: var(--primary);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.3px;
	border-radius: 9px;
	text-decoration: none;
	align-self: center;
	position: relative;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
	transition: box-shadow 0.3s ease, gap 0.3s ease;
}

.fave-cta-btn:hover {
	color: var(--primary-dark);
	box-shadow: 0 8px 28px rgba(0,0,0,0.2);
	gap: 14px;
}

.design-section {
	padding: 80px 0;
	background: #fff;
	text-align: center;
}

.designers-img {
	max-width: 100%;
	width: 680px;
	height: auto;
	display: block;
	margin: 0 auto;
}

.design-feature { text-align: left; }

.design-feature h5 {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.design-feature p {
	font-size: 15px;
	color: var(--text-medium);
	line-height: 1.7;
	margin: 0;
}

.guarantee-section {
	padding: 80px 0;
	background: var(--bg-light);
}

.guarantee-lead {
	font-size: 22px;
	font-weight: 600;
	color: var(--text-dark);
	line-height: 1.5;
	margin-bottom: 18px;
}

.guarantee-section > .container > .row > div > p {
	font-size: 16px;
	color: var(--text-medium);
	line-height: 1.7;
	margin-bottom: 26px;
}

.guarantee-btn {
	display: inline-block;
	padding: 12px 32px;
	background: var(--primary);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	border-radius: 8px;
	text-decoration: none;
	transition: var(--transition);
}

.guarantee-btn:hover {
	background: var(--primary-dark);
	color: #fff;
	transform: translateY(-2px);
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px 24px;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--gray-200);
	margin-bottom: 16px;
	transition: var(--transition);
}

.trust-badge:hover { box-shadow: var(--shadow-md); }

.trust-badge img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	flex-shrink: 0;
}

.trust-badge-text h6 {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.trust-badge-text p {
	font-size: 13px;
	color: var(--text-medium);
	margin: 0;
}

.faq-section {
	padding: 80px 0;
	background: #fff;
	text-align: center;
}

.faq-section h2 {
	font-size: 44px;
	font-weight: 800;
	color: var(--text-dark);
	margin-bottom: 4px;
}

.faq-section h3 {
	font-size: 22px;
	font-weight: 400;
	color: var(--text-medium);
	margin-bottom: 40px;
}

.newsletter-section {
  background: linear-gradient(135deg, #2a2a52 0%, #43437c 50%, #35356a 100%);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -260px; right: -80px;
  pointer-events: none;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  bottom: -180px; left: -60px;
  pointer-events: none;
}

.newsletter-layout {
  display: flex;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-left { flex: 1; min-width: 0; }

.newsletter-right { width: 400px; flex-shrink: 0; }

.newsletter-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: color-mix(in srgb, var(--primary) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}

.newsletter-heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
  font-family: "Inter", sans-serif;
}

.newsletter-heading .nl-sub {
  display: block;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
}

.newsletter-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.newsletter-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-family: "Inter", sans-serif;
}

.newsletter-perks li i {font-size: 15px; flex-shrink: 0; }

.newsletter-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}

.newsletter-card-offer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.newsletter-card-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
}

.newsletter-card-sub {
  font-size: 13px;
  color: var(--text-medium);
  margin-bottom: 22px;
  font-family: "Inter", sans-serif;
  line-height: 1.55;
}

.newsletter-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 28px;
  font-family: "Inter", sans-serif;
  max-width: 480px;
}

@media (max-width: 960px) {
  .newsletter-layout { flex-direction: column-reverse; gap: 40px; }
  .newsletter-right { width: 100%; max-width: 480px; }
  .newsletter-left { text-align: center; }
  .newsletter-perks { align-items: center; }
  .newsletter-desc { max-width: 100%; }
}

@media (max-width: 600px) {
  .newsletter-section { padding: 52px 0; }
  .newsletter-heading { font-size: 1.9rem; }
  .newsletter-heading .nl-sub { font-size: 1.5rem; }
  .newsletter-card { padding: 24px 20px; border-radius: 16px; }
}

@media (max-width: 992px) {
  .transform-section h2, .how-it-works h2, .video-section h2 { font-size: 26px; }
  .faq-section h2 { font-size: 34px; }
  .guarantee-lead { font-size: 19px; }
}

@media (max-width: 768px) {
  .transform-section, .how-it-works, .video-section, .customer-faves, .design-section, .guarantee-section, .faq-section { padding: 60px 0; }
}

@media (max-width: 576px) {
  .trustpilot-row { justify-content: center; }
  .faq-section h2 { font-size: 28px; }
}

.prod-cta-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 8px;
  padding: 14px 24px;
  transition: opacity 0.2s;
  margin-bottom: 12px;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.prod-cta-btn:hover { opacity: 0.9; }

.prod-features { background: #fff; padding: 60px 0 40px; text-align: center; }

.prod-features-heading { max-width: 640px; margin: 0 auto 32px; }

.prod-features-heading h2 { font-size: 1.6rem; font-weight: 400; color: var(--text-dark); line-height: 1.3; margin-bottom: 4px; }

.prod-features-heading h2 span { font-weight: 700; color: var(--primary); }

.prod-tabs-nav {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--gray-200);
}

.prod-tab-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-medium);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.prod-tab-btn:hover { color: var(--primary); }

.prod-tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }

.prod-how { background: #f4f5f7; padding: 60px 0; text-align: center; }

.prod-how h2 { font-size: 1.6rem; font-weight: 400; color: var(--text-dark); margin-bottom: 4px; }

.prod-how h2 span { font-weight: 700; color: var(--primary); }

.prod-how-lead { font-size: 16px; color: var(--text-medium); margin: 12px auto 40px; max-width: 580px; line-height: 1.6; }

.prod-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }

@media (max-width: 767px) {
  .prod-how-grid { grid-template-columns: 1fr; }
}

.prod-how-card { background: #fff; border-radius: 12px; padding: 40px 24px 32px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }

.prod-how-card img { height: 70px; width: auto; margin-bottom: 24px; }

.prod-how-card h5 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }

.prod-how-card p { font-size: 14px; color: var(--text-medium); line-height: 1.6; }

.prod-waiting { background: #f4f4f4; overflow: hidden; }

.prod-waiting-inner { display: flex; align-items: stretch; min-height: 480px; }

.prod-waiting-text {
  flex: 0 0 50%;
  padding: 60px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prod-waiting-text .heading-light { font-size: 2rem; font-weight: 300; color: var(--text-dark); line-height: 1.2; }

.prod-waiting-text .heading-bold {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 16px;
}

.prod-waiting-text p { font-size: 15px; color: var(--text-medium); line-height: 1.65; margin-bottom: 24px; }

.prod-waiting-img { flex: 0 0 50%; overflow: hidden; position: relative; }

.prod-waiting-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }

@media (max-width: 767px) {
  .prod-waiting-inner { flex-direction: column; min-height: unset; }
  .prod-waiting-text { flex: none; padding: 40px 24px; }
  .prod-waiting-img { flex: none; width: 100%; height: 280px; }
  .prod-waiting-img img { position: absolute; }
  .prod-waiting-text .heading-light, .prod-waiting-text .heading-bold { font-size: 1.5rem; }
}

.pbs-accent { color: var(--primary); font-weight: 700; }

h2.prod-features-heading {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}

.prod-tab-content { display: none; }

.prod-tab-content.active { display: block; }

h2.prod-how-heading {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}

h2.prod-how-heading.pbs-accent { font-weight: 700; }

.prod-how-icon { padding: 32px 0 8px; justify-content: center; display: flex;}

.prod-how-cta { text-align: center; padding-top: 16px; }

.prod-trustpilot { margin-top: 12px; font-size: 14px; color: var(--text-medium); justify-content: center; display: flex;}

.prod-trust { background: #f4f5f7; padding: 40px 0; }

.prod-design { background: #fff; padding: 48px 0; text-align: center; }

.prod-design .h2.fw-normal, .prod-design h2.fw-normal { font-size: 1.6rem; font-weight: 400; color: var(--text-dark); margin-bottom: 16px; }

.prod-design .h5.fw-bold, .prod-design h5.fw-bold { font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }

.prod-design p { font-size: 14px; color: var(--text-medium); line-height: 1.65; }

.prod-design-img { display: block; width: 100%; max-width: 700px; margin: 0 auto 24px; }

.prod-design-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; padding: 24px 0; }

.prod-design-app-btns { display: flex; gap: 12px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }

@media (max-width: 767px) {
  .prod-design-cols { grid-template-columns: 1fr; gap: 24px; }
}

.prod-waiting-headline {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.2;
}

.prod-waiting-headline.pbs-accent { font-weight: 800; color: var(--primary); }

.prod-waiting-cta { margin-top: 24px; text-align: center; }

@media (max-width: 575px) {
  .scm-footer .startcreating { font-size: 14px; padding: 13px 24px; }
}

.plus-theme .prod-cta-btn {
  animation: plus-glow-pulse 2.5s ease-in-out infinite;
}

.plus-theme .newsletter-section {
  background: linear-gradient(135deg, #d44e20 0%, #ee5a2a 100%);
}

.plus-theme .newsletter-tag {
  color: #ee5a2a;
  background: #fff;
  border-color: rgba(238,90,42,0.35);
}

.col-tab-feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 28px; }

.col-tab-feat-item { text-align: center; padding: 10px; }

.col-tab-feat-item img { height: 170px; object-fit: cover; width: 100%; border-radius: 10px; margin-bottom: 14px; }

.col-tab-feat-title { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }

.col-tab-feat-item p { font-size: 13px; color: var(--text-medium); line-height: 1.6; }

.col-tab-cover-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 0 20px; margin-bottom: 40px; text-align: left; }

.col-tab-cover-row:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
  .col-tab-cover-row { grid-template-columns: 1fr; padding: 0 8px; }
}

.col-tab-cover-text h4 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }

.col-tab-cover-text p { font-size: 14px; color: var(--text-medium); line-height: 1.75; }

.col-tab-cover-img { border-radius: 10px; overflow: hidden; }

.col-tab-cover-img img { display: block; width: 100%; }

.plus-theme .col-tab-feat-title { color: #ee5a2a; }

.plus-theme .col-tab-cover-text h4 { color: #ee5a2a; }

@media (max-width: 768px) {
  .col-tab-cover-row { grid-template-columns: 1fr; gap: 24px; padding: 0; }
}

.toastify .adding-to-cart .info p.no-margin {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.35;
  margin: 0 0 3px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

/* ---- from pbs26-content.css ---- */

.no-margin { margin: 0 !important; }

.no-padding { padding: 0 !important; }

.hidden { display: none !important; }

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%) !important;
}

.newsletter-section::before, .newsletter-section::after {
    background: rgba(255,255,255,0.06) !important;
}

.newsletter-tag {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.3) !important;
    color: #fff !important;
}

.newsletter-heading { color: #fff !important; }

.newsletter-heading .nl-sub { color: rgba(255,255,255,0.85) !important; }

.newsletter-desc { color: rgba(255,255,255,0.9) !important; }

.newsletter-perks li { color: rgba(255,255,255,0.9) !important; }

.newsletter-perks li i { color: #fff !important; }

/*.dialogContent .col-xs-12, .dialogContent .no-padding { padding: 0 !important; }*/

.newsletter-section .subscribe-form-bottom-wrapper { height: 55px; }

.newsletter-section form.kl-private-reset-css-Xuajs1 { max-width: 100% !important; }

.newsletter-section form.kl-private-reset-css-Xuajs1 > div {
    display: flex !important;
    align-items: stretch !important;
    gap: 0 !important;
    border: 2px solid #d1d5db !important;
    border-radius: 2rem !important;
    overflow: hidden !important;
    background: #fff !important;
    transition: border-color 0.2s !important;
}

.newsletter-section form.kl-private-reset-css-Xuajs1 > div:focus-within {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(238,90,42,0.15) !important;
}

.newsletter-section form.kl-private-reset-css-Xuajs1 input[type="email"], .newsletter-section form.kl-private-reset-css-Xuajs1 input[type="text"] {
    flex: 1 1 auto !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 16px !important;
    height: 46px !important;
    color: #333 !important;
    font-size: 14px !important;
    min-width: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.newsletter-section form.kl-private-reset-css-Xuajs1 input[type="email"]::placeholder, .newsletter-section form.kl-private-reset-css-Xuajs1 input[type="text"]::placeholder {
    color: #9ca3af !important;
}

.newsletter-section form.kl-private-reset-css-Xuajs1 button.kl-private-reset-css-Xuajs1 {
    flex: 0 0 auto !important;
    height: 46px !important;
    border: none !important;
    border-radius: 0 2rem 2rem 0 !important;
    padding: 0 20px !important;
    white-space: nowrap !important;
    background: rgb(180,51,169) !important;
    background: linear-gradient(90deg, rgba(180,51,169,1) 0%, rgba(149,39,207,1) 50%, rgba(124,29,237,1) 100%) !important;
    cursor: pointer !important;
}

.newsletter-section form.kl-private-reset-css-Xuajs1 button.kl-private-reset-css-Xuajs1:after {
    content: "SUBSCRIBE \f061";
    font-size: 12px;
    font-family: 'Inter', FontAwesome, -apple-system, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}

.prod-features .tab-content { padding: 0; }

.prod-features .tab-pane { text-align: left; }

.prod-features .tab-pane h5.pbs-orange, .prod-features .tab-pane .h5.pbs-orange { color: var(--primary); }

/*.col-xs-12 { width: 100%; float: left; }*/

.col-xs-12 img { max-width: 100%; height: auto; }

/* ---- from cart26.css ---- */

#addonsModal .modal-title .fas {
  color: var(--primary);
  font-size: 14px;
}

.addr-guest-badge .fas { font-size: 10px; }

#paperUpgradeModal .modal-card-wrapper { position: relative; overflow: hidden; border-radius: 10px; }

#paperUpgradeModal .modal-card { position: relative; padding: 15px; text-align: center; border: 1px solid #ccc; border-radius: 10px; background-color: #fff; transition: all 0.3s ease; }

#paperUpgradeModal .modal-card:hover .circle { top: -150px; }

#paperUpgradeModal .modal-card img, #paperUpgradeModal .modal-card .text-purple, #paperUpgradeModal .modal-card .most-popular, #paperUpgradeModal .modal-card .btn-gradient { padding-right: 1rem; padding-left: 1rem; font-size: .9rem !important; z-index: 1; position: relative; }

@media (max-width: 767px) {
  #paperUpgradeModal .modal-card:hover .circle { top: -150px; }
}

#paperUpgradeModal .modal-card:hover { transform: scale(1.05); background-color: #f5f5f5; }

#paperUpgradeModal .text-purple { color: #673ab7; }

#paperUpgradeModal .modal-card img { position: relative; z-index: 1; width: 100%; height: auto; }

#paperUpgradeModal .modal-card:hover img { filter: brightness(0.95); }

#paperUpgradeModal .modal-card:hover .cirle-behind, #paperUpgradeModal .modal-card:hover .text-purple { color: #fff !important; }

#paperUpgradeModal .most-popular { background-color: #ff9800; color: #fff; padding: 5px 15px; font-size: 12px; position: relative; right: -9px; z-index: 2; box-shadow: 3px -3px 5px rgba(0,0,0,.1); font-weight: bold; }

#paperUpgradeModal .most-popular::before { content: ''; position: absolute; left: -1px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 10px solid #f5f5f5; border-top: 14px solid transparent; border-bottom: 14px solid transparent; }

#paperUpgradeModal .modal-card:hover .most-popular::before { border-left: 10px solid #f5f5f5; }

.modal-body-step1, .modal-body-step2 { display: none; }