/* ==========================================================================
   Themesic — Section Styles v7
   Brand: #FF7400 (orange) · #5511F8 (purple accent) · #463F52 (dark)
   ========================================================================== */

/* --- Section Header ------------------------------------------------------- */

.tsm-section-header {
	margin: 0 auto 48px;
	max-width: 800px;
}

.tsm-section-header--center { text-align: center; }
.tsm-section-header--left { text-align: left; margin-left: 0; }

.tsm-section-header__label {
	display: inline-block;
	background: #FF7400;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 8px 18px;
	border-radius: 100px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.tsm-section-header__title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 12px;
	color: #463F52;
	font-family: 'Figtree', 'Inter', sans-serif;
}

.tsm-section-header__subtitle {
	font-size: 16px;
	color: #777;
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   Category Tabs — bigger padding, proper hover (orange→purple gradient + white text)
   ========================================================================== */

.tsm-tabs { margin: 0 0 60px; }

.tsm-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 36px;
	justify-content: center;
}

.tsm-tab__btn {
	background: #F5F5F7;
	border: 0;
	color: #463F52;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 28px;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	font-family: 'Figtree', 'Inter', sans-serif;
	letter-spacing: -0.1px;
	border-radius: 100px;
	white-space: nowrap;
	line-height: 1.2;
}

/* Hover: orange→purple gradient with WHITE TEXT (high contrast) */
.tsm-tab__btn:hover {
	background: linear-gradient(135deg, #FF7400 0%, #5511F8 100%);
	color: #fff;
	box-shadow: 0 6px 18px rgba(255, 116, 0, 0.3);
	transform: translateY(-1px);
}

/* Active tab: solid orange */
.tsm-tab__btn.is-active {
	background: #FF7400;
	color: #fff;
	box-shadow: 0 6px 18px rgba(255, 116, 0, 0.35);
}

.tsm-tab__btn.is-active:hover {
	background: linear-gradient(135deg, #FF7400 0%, #5511F8 100%);
	transform: translateY(-1px);
}

.tsm-tab__panel {
	display: none;
	animation: tsmFadeIn 0.35s ease;
}

.tsm-tab__panel.is-active { display: block; }

@keyframes tsmFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
	.tsm-tab__btn {
		font-size: 14px;
		padding: 12px 22px;
	}
	.tsm-tabs__nav { gap: 8px; }
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

.tsm-features {
	display: grid;
	gap: 24px;
}

.tsm-features--cols-2 { grid-template-columns: repeat(2, 1fr); }
.tsm-features--cols-3 { grid-template-columns: repeat(3, 1fr); }
.tsm-features--cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
	.tsm-features--cols-3,
	.tsm-features--cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.tsm-features { grid-template-columns: 1fr !important; }
}

.tsm-feature {
	background: #fff;
	padding: 32px 28px;
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tsm-feature:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}

.tsm-feature__icon {
	font-size: 36px;
	line-height: 1;
	margin-bottom: 20px;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 116, 0, 0.1);
	border-radius: 16px;
}

.tsm-feature__title {
	font-size: 18px;
	font-weight: 700;
	color: #463F52;
	margin: 0 0 10px;
	line-height: 1.3;
}

.tsm-feature__text {
	font-size: 15px;
	color: #777;
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   CTA Box
   ========================================================================== */

.tsm-cta-box {
	background: #463F52;
	color: #fff;
	padding: 32px;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	box-shadow: 0 8px 24px rgba(70, 63, 82, 0.2);
}

.tsm-cta-box__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	color: #fff;
	font-family: 'Figtree', 'Inter', sans-serif;
}

.tsm-cta-box__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #463F52 !important;
	padding: 12px 24px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tsm-cta-box__btn:hover {
	background: #FF7400;
	color: #fff !important;
	transform: translateY(-1px);
}


/* ==========================================================================
   "Why You Should Choose" v7 — PIXEL-PERFECT (casethemes 1:1)
   ============================================================================
   Specs re-verified via getComputedStyle() on casethemes.net.

   STRUCTURE (HTML order inside .tsm-why2__container):
     1. .tsm-why2__intro       (centered title + paragraph)
     2. .tsm-why2__separator   (ONE opening separator only — no closing)
     3. .tsm-why2__block       (block with solid top border + horizontal fades)
     4. .tsm-why2__block--reverse  (mirrored)

   v7 type tweaks vs v6:
     - block paragraph: 16px/lh1.7 → 15px/lh1.78
     - list item: 16px #000 lh1.5 → 17px #1E2024 lh1.78
   ========================================================================== */

.tsm-why2 {
	font-family: 'Figtree', 'Inter', sans-serif;
	color: #000;
	padding: 45px 0 60px;
	background: #fff;
	overflow: visible;
}

.tsm-why2__container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 15px;
	overflow: visible;
}

/* ===== Intro: H2 + paragraph, centered ===== */
.tsm-why2__intro {
	text-align: center;
	margin: 0 auto 80px;
	padding: 0 20px;
}

.tsm-why2__intro h2 {
	font-size: 45px;
	font-weight: 700;
	line-height: 1.36;
	color: #000;
	margin: 0 0 16px;
	font-family: inherit;
	letter-spacing: 0;
}

.tsm-why2__intro p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: #777;
	margin: 0 auto;
	max-width: 720px;
}

/* ===== Separator: standalone row with 2 vertical corner lines ===== */
.tsm-why2__separator {
	position: relative;
	height: 1px;
	margin: 0;
	pointer-events: none;
}

.tsm-why2__separator::before,
.tsm-why2__separator::after {
	content: '';
	position: absolute;
	top: -59px;
	width: 1px;
	height: 60px;
	background-image: linear-gradient(to bottom, #fff, #D9D9D9);
}

.tsm-why2__separator::before { left: 0; }
.tsm-why2__separator::after  { right: 0; }

/* ===== Block: 2-col content + image + solid top border + horizontal fades ===== */
.tsm-why2__block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	padding: 40px 65px;
	border-top: 1px solid #D9D9D9;
	position: relative;
}

/* Horizontal fade extensions: 80px OUTSIDE block edges */
.tsm-why2__block::before,
.tsm-why2__block::after {
	content: '';
	position: absolute;
	top: -1px;
	width: 80px;
	height: 1px;
	pointer-events: none;
}

.tsm-why2__block::before {
	left: -80px;
	background-image: linear-gradient(to right, #fff, #D9D9D9);
}

.tsm-why2__block::after {
	right: -80px;
	background-image: linear-gradient(to right, #D9D9D9, #fff);
}

/* Reversed block (image left, content right) */
.tsm-why2__block--reverse .tsm-why2__content { order: 2; }
.tsm-why2__block--reverse .tsm-why2__media   { order: 1; }

/* ===== Content side ===== */
.tsm-why2__content {
	max-width: 600px;
}

.tsm-why2__content h3 {
	font-size: 35px;
	font-weight: 700;
	line-height: 1.36;
	color: #000;
	margin: 0 0 24px;
	font-family: inherit;
	letter-spacing: 0;
}

.tsm-why2__content p {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.78;
	color: #777;
	margin: 0 0 32px;
}

/* ===== 2-column green-check list ===== */
.tsm-why2__lists {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 32px;
}

.tsm-why2__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tsm-why2__list li {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 17px;
	font-weight: 500;
	color: #1E2024;
	line-height: 1.78;
}

.tsm-why2__list li::before {
	content: '';
	flex-shrink: 0;
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2362D813' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* ===== Media (image) ===== */
.tsm-why2__media img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
	.tsm-why2__intro h2 { font-size: 38px; }
	.tsm-why2__content h3 { font-size: 30px; }
	.tsm-why2__block { padding: 40px 30px; }
	.tsm-why2__block::before { left: -40px; width: 40px; }
	.tsm-why2__block::after  { right: -40px; width: 40px; }
}

@media (max-width: 768px) {
	.tsm-why2 { padding: 30px 0 40px; }
	.tsm-why2__intro { margin-bottom: 40px; }
	.tsm-why2__intro h2 { font-size: 32px; }

	.tsm-why2__block {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 32px 20px;
	}

	.tsm-why2__block::before,
	.tsm-why2__block::after,
	.tsm-why2__separator::before,
	.tsm-why2__separator::after { display: none; }

	.tsm-why2__block--reverse .tsm-why2__content { order: 1; }
	.tsm-why2__block--reverse .tsm-why2__media { order: 2; }

	.tsm-why2__content { max-width: none; }
	.tsm-why2__content h3 { font-size: 26px; }
	.tsm-why2__lists { grid-template-columns: 1fr; gap: 12px; }
}





/* ==========================================================================
   Themesic — 3 Section Pack (CTA, Stats, FAQ)
   Pixel-perfect replicas of casethemes.net sections, extracted via DevTools.
   ============================================================================
   1. CTA banner ("Order a Website...")
   2. Stats counters (3 numbers)
   3. FAQ accordion
   ========================================================================== */


/* ==========================================================================
   1. CTA BANNER v3 — EXACT casethemes 1:1 (re-verified via getComputedStyle)
   ============================================================================
   Outer wrapper: padding 0 60px (viewport inset, matches footer pattern)
   Dark card: max-width 1785px (same as footer), bg #0E0E0E, radius 25px,
              padding 110px 80px 120px, overflow hidden, position relative
   INSIDE: 2-column flex layout (NOT centered):
     - Left col (~50%): heading + paragraph, LEFT-ALIGNED
     - Right col: 2 buttons inline-flex, right-aligned
   Heading: 40px / 700 / #fff / lh 1.36 / mb 8px
   Subtitle: 15px / 400 / #777 (gray on dark — casethemes' choice) / lh 1.78
   Buttons: height 55px, radius 8px, font 15px/500/white
     - orange: pad 0 48px, linear-gradient(#FB571D, #F8A930, #FB571D)
     - blue:   pad 0 35px, linear-gradient(#0551C3, #0367FE, #0551C3)
   ========================================================================== */

.tsm-cta {
	padding: 60px 60px;
	font-family: 'Figtree', 'Inter', sans-serif;
}

.tsm-cta__inner {
	max-width: 1785px;
	margin: 0 auto;
	background-color: #0E0E0E;
	padding: 110px 80px 120px;
	border-radius: 25px;
	color: #fff;
	position: relative;
	overflow: visible;
}

/* Mask: contains the purple glow inside the rounded corners while letting deco extend outside */
.tsm-cta__inner > .tsm-cta__glow-mask {
	position: absolute;
	inset: 0;
	border-radius: 25px;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

/* Purple radial glow accent */
.tsm-cta__inner::before {
	content: '';
	position: absolute;
	width: 680px;
	height: 680px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(85, 17, 248, 0.28) 0%, rgba(85, 17, 248, 0) 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 0;
}

/* 2-col flex layout: text LEFT, buttons RIGHT */
.tsm-cta__grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	position: relative;
	z-index: 2;
}

.tsm-cta__content {
	flex: 1 1 50%;
	text-align: left;
	min-width: 0;
}

.tsm-cta__heading {
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	line-height: 1.36;
	margin: 0 0 8px;
	letter-spacing: 0;
	font-family: inherit;
}

.tsm-cta__subtitle {
	font-size: 15px;
	font-weight: 400;
	color: #777;
	line-height: 1.78;
	margin: 0;
	max-width: 640px;
}

.tsm-cta__buttons {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: stretch;
	min-width: 260px;
}

.tsm-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	height: 55px;
	padding: 0 35px;
	border-radius: 8px;
	background-size: 200% auto;
	background-position: left center;
	color: #fff !important;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: background-position 0.5s ease, transform 0.25s ease, box-shadow 0.25s ease;
	font-family: inherit;
	border: 0;
	cursor: pointer;
	white-space: nowrap;
}

.tsm-cta__btn svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}

.tsm-cta__btn:hover svg {
	transform: translateX(4px);
}

.tsm-cta__btn:hover {
	background-position: right center;
	transform: translateY(-2px);
}

.tsm-cta__btn--orange {
	padding: 0 48px;
	background-image: linear-gradient(to right, #FB571D 0%, #F8A930 51%, #FB571D 100%);
	box-shadow: 0 8px 24px rgba(251, 87, 29, 0.35);
}

.tsm-cta__btn--orange:hover {
	box-shadow: 0 12px 32px rgba(251, 87, 29, 0.5);
}

.tsm-cta__btn--blue {
	background-image: linear-gradient(to right, #0551C3 0%, #0367FE 51%, #0551C3 100%);
	box-shadow: 0 8px 24px rgba(5, 103, 254, 0.30);
}

.tsm-cta__btn--blue:hover {
	box-shadow: 0 12px 32px rgba(5, 103, 254, 0.45);
}

/* 4 corner decorative tilted previews — overrides Astra/Elementor img reset */
.tsm-cta__deco {
	position: absolute !important;
	width: 240px !important;
	max-width: 240px !important;
	height: auto !important;
	z-index: 1 !important;
	opacity: 0.92;
	pointer-events: none;
	border-radius: 12px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
	object-fit: cover;
}

.tsm-cta__deco--top-left {
	top: -50px !important;
	left: -40px !important;
	transform: rotate(-12deg) !important;
}

.tsm-cta__deco--top-right {
	top: -50px !important;
	right: -40px !important;
	transform: rotate(12deg) !important;
}

.tsm-cta__deco--bottom-left {
	bottom: -50px !important;
	left: -40px !important;
	transform: rotate(8deg) !important;
}

.tsm-cta__deco--bottom-right {
	bottom: -50px !important;
	right: -40px !important;
	transform: rotate(-8deg) !important;
}

/* Make sure content stays above decorations even if Elementor changes stacking */
.tsm-cta__grid { position: relative; z-index: 5; }

@media (max-width: 1200px) {
	.tsm-cta__inner { padding: 80px 60px 90px; }
	.tsm-cta__deco { display: none; }
}

@media (max-width: 900px) {
	.tsm-cta { padding: 40px 24px; }
	.tsm-cta__inner { padding: 60px 30px 70px; }
	.tsm-cta__grid { flex-direction: column; align-items: stretch; gap: 28px; text-align: center; }
	.tsm-cta__content { text-align: center; }
	.tsm-cta__heading { font-size: 28px; }
	.tsm-cta__buttons { justify-content: center; }
}


/* ==========================================================================
   2. STATS COUNTERS v2 — pixel-perfect (casethemes 1:1)
   ============================================================================
   3 stat items, side-by-side, with:
     - Number: 70px / 400 / #1E2024 / Satoshi-style
     - Suffix (+, %): same size, in #FF7400 orange
     - Colored underline accent under each number (orange / blue / pink gradient)
     - Vertical separator lines between items
     - Label below: 17px / #666 / lh 1.78
   ========================================================================== */

.tsm-stats {
	padding: 80px 0;
	font-family: 'Figtree', 'Inter', sans-serif;
}

.tsm-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.tsm-stats__item {
	text-align: center;
	padding: 0 30px;
	position: relative;
}

/* Vertical separator between items */
.tsm-stats__item + .tsm-stats__item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10%;
	bottom: 10%;
	width: 1px;
	background-image: linear-gradient(to bottom, transparent 0%, #D9D9D9 30%, #D9D9D9 70%, transparent 100%);
}

.tsm-stats__number {
	font-size: 70px;
	font-weight: 400;
	color: #1E2024;
	line-height: 1;
	margin: 0 0 16px;
	display: inline-flex;
	justify-content: center;
	align-items: baseline;
	gap: 2px;
	font-family: inherit;
	letter-spacing: -1px;
	position: relative;
	padding-bottom: 14px;
}

.tsm-stats__number .num { font-weight: 400; }

.tsm-stats__number .suffix {
	font-size: 70px;
	font-weight: 400;
	color: #FF7400;
}

/* Colored underline accent (3 different gradients per item) */
.tsm-stats__number::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 80%;
	max-width: 140px;
	height: 4px;
	border-radius: 2px;
}

.tsm-stats__item:nth-child(1) .tsm-stats__number::after {
	background-image: linear-gradient(to right, #FF7400, #FFB400);
}

.tsm-stats__item:nth-child(2) .tsm-stats__number::after {
	background-image: linear-gradient(to right, #0367FE, #00D4FF);
}

.tsm-stats__item:nth-child(3) .tsm-stats__number::after {
	background-image: linear-gradient(to right, #FF4D89, #FFB4D4);
}

.tsm-stats__label {
	font-size: 17px;
	font-weight: 400;
	color: #666;
	line-height: 1.78;
	margin: 0 auto;
	max-width: 280px;
}

@media (max-width: 900px) {
	.tsm-stats { padding: 50px 0; }
	.tsm-stats__grid { grid-template-columns: 1fr; gap: 40px; }
	.tsm-stats__item { padding: 0; }
	.tsm-stats__item + .tsm-stats__item::before { display: none; }
	.tsm-stats__number { font-size: 56px; }
	.tsm-stats__number .suffix { font-size: 56px; }
}


/* ==========================================================================
   3. FAQ ACCORDION v2 — pixel-perfect (casethemes 1:1)
   ============================================================================
   Section bg: #EFEEF7 (light purple)
   Item: white bg, no border, padding 24px 32px, border-radius 16px,
         shadow 0 1px 2px rgba(0,0,0,0.04)
   Title: 18px / 600 / #1E2024
   Content: 15px / #777 / lh 1.78
   Plus/Minus circular icon: 36px, orange when open, rotates 45deg → ×
   Decorative 3D phone emoji bottom-right
   ========================================================================== */

.tsm-faq {
	padding: 100px 0;
	background: #EFEEF7;
	font-family: 'Figtree', 'Inter', sans-serif;
	position: relative;
	overflow: hidden;
}

/* Decorative 3D phone emoji bottom-right */
.tsm-faq::after {
	content: '📱';
	position: absolute;
	right: 60px;
	bottom: 40px;
	font-size: 110px;
	line-height: 1;
	transform: rotate(15deg);
	opacity: 0.35;
	pointer-events: none;
	filter: drop-shadow(0 12px 24px rgba(85, 17, 248, 0.35));
}

.tsm-faq__container {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.tsm-faq__intro {
	text-align: center;
	margin-bottom: 48px;
}

.tsm-faq__intro h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.36;
	color: #000;
	margin: 0 0 16px;
	letter-spacing: 0;
}

.tsm-faq__intro p {
	font-size: 15px;
	color: #777;
	line-height: 1.78;
	margin: 0 auto;
	max-width: 600px;
}

.tsm-faq__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tsm-faq__item {
	background: #fff;
	border: 0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.tsm-faq__item[open] {
	box-shadow: 0 8px 28px rgba(85, 17, 248, 0.10);
}

.tsm-faq__summary {
	list-style: none;
	cursor: pointer;
	padding: 24px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: 18px;
	font-weight: 600;
	color: #1E2024;
	line-height: 1.5;
	transition: color 0.25s ease;
}

.tsm-faq__summary::-webkit-details-marker { display: none; }

.tsm-faq__item[open] .tsm-faq__summary { color: #5511F8; }

.tsm-faq__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #F5F5F7;
	color: #1E2024;
	transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease;
}

.tsm-faq__item[open] .tsm-faq__icon {
	background: #FF7400;
	color: #fff;
	transform: rotate(45deg);
}

.tsm-faq__icon svg {
	width: 16px;
	height: 16px;
}

.tsm-faq__body {
	padding: 0 32px 28px;
	font-size: 15px;
	color: #777;
	line-height: 1.78;
}

.tsm-faq__body p { margin: 0 0 12px; }
.tsm-faq__body p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
	.tsm-faq { padding: 60px 0; }
	.tsm-faq::after { font-size: 70px; right: 20px; bottom: 20px; }
	.tsm-faq__intro h2 { font-size: 30px; }
	.tsm-faq__summary { padding: 20px 22px; font-size: 16px; }
	.tsm-faq__body { padding: 0 22px 22px; }
}


/* ==========================================================================
   6-Icon-Box Grid v1 — PIXEL-PERFECT (casethemes 1:1)
   ============================================================================
   Reuses the same top-border + horizontal fade extensions as .tsm-why2__block
   so it visually continues the Why-Choose section seamlessly.

   Block padding: 100px 45px 45px  (more top breathing than Why-Choose blocks)
   Grid: 3 columns, items contain icon (72×72 PNG) + H5 title + paragraph

   Verified via getComputedStyle() on casethemes.net:
     - Icon-box title: H5, 22px / 700 / #000 / lh 1.45 / mb 20px
     - Icon-box desc:  15px / 400 / #777 / lh 1.78
     - Icon image:     72×72 rendered, no border-radius, no shadow
   ========================================================================== */

.tsm-iconbox {
	font-family: 'Figtree', 'Inter', sans-serif;
	color: #000;
	background: #fff;
	overflow: visible;
}

.tsm-iconbox__container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 15px;
	overflow: visible;
}

/* Block wrapper: identical border-top + horizontal fade pattern as .tsm-why2__block */
.tsm-iconbox__block {
	padding: 100px 45px 45px;
	border-top: 1px solid #D9D9D9;
	position: relative;
}

.tsm-iconbox__block::before,
.tsm-iconbox__block::after {
	content: '';
	position: absolute;
	top: -1px;
	width: 80px;
	height: 1px;
	pointer-events: none;
}

.tsm-iconbox__block::before {
	left: -80px;
	background-image: linear-gradient(to right, #fff, #D9D9D9);
}

.tsm-iconbox__block::after {
	right: -80px;
	background-image: linear-gradient(to right, #D9D9D9, #fff);
}

/* 3-column grid */
.tsm-iconbox__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 40px;
	row-gap: 60px;
}

/* Single item */
.tsm-iconbox__item {
	text-align: left;
}

.tsm-iconbox__icon {
	display: block;
	width: 72px;
	height: 72px;
	margin: 0 0 27px;
}

.tsm-iconbox__icon img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	border-radius: 0;
}

.tsm-iconbox__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.45;
	color: #000;
	margin: 0 0 20px;
	font-family: inherit;
	letter-spacing: 0;
}

.tsm-iconbox__desc {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.78;
	color: #777;
	margin: 0;
}

@media (max-width: 1024px) {
	.tsm-iconbox__block { padding: 80px 30px 40px; }
	.tsm-iconbox__block::before { left: -40px; width: 40px; }
	.tsm-iconbox__block::after  { right: -40px; width: 40px; }
	.tsm-iconbox__grid { column-gap: 28px; row-gap: 48px; }
	.tsm-iconbox__title { font-size: 20px; }
}

@media (max-width: 768px) {
	.tsm-iconbox__block { padding: 60px 20px 32px; }
	.tsm-iconbox__block::before,
	.tsm-iconbox__block::after { display: none; }
	.tsm-iconbox__grid { grid-template-columns: 1fr; row-gap: 36px; }
	.tsm-iconbox__icon { width: 64px; height: 64px; margin-bottom: 20px; }
	.tsm-iconbox__title { font-size: 19px; margin-bottom: 14px; }
}


/* ==========================================================================
   4. TESTIMONIALS — horizontal scroll cards
   ============================================================================
   3 visible cards on desktop, 2 on tablet, 1 on mobile.
   Card: white, padding 36px 32px, radius 20px, shadow 0 2px 8px rgba(0,0,0,0.05)
   Star row in #FFB400, quote 16px / lh 1.78 / #1E2024
   Author block: 56×56 round avatar + name 16px/600 + role 14px/#777
   Uses native CSS scroll-snap — no JS required.
   ========================================================================== */

.tsm-testimonials {
	padding: 100px 0;
	background: #fff;
	font-family: 'Figtree', 'Inter', sans-serif;
}

.tsm-testimonials__container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 20px;
}

.tsm-testimonials__intro {
	text-align: center;
	margin-bottom: 56px;
	padding: 0 20px;
}

.tsm-testimonials__intro h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.36;
	color: #000;
	margin: 0 0 16px;
}

.tsm-testimonials__intro p {
	font-size: 15px;
	color: #777;
	line-height: 1.78;
	margin: 0 auto;
	max-width: 600px;
}

.tsm-testimonials__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 48px) / 3);
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding: 20px;
	padding: 8px 4px 24px;
	scrollbar-width: thin;
	scrollbar-color: #D9D9D9 transparent;
}

.tsm-testimonials__track::-webkit-scrollbar { height: 6px; }
.tsm-testimonials__track::-webkit-scrollbar-thumb { background: #D9D9D9; border-radius: 3px; }

.tsm-testimonial {
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid #EFEEF7;
	border-radius: 20px;
	padding: 36px 32px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.tsm-testimonial:hover {
	box-shadow: 0 12px 32px rgba(85, 17, 248, 0.08);
	transform: translateY(-4px);
}

.tsm-testimonial__stars {
	display: inline-flex;
	gap: 2px;
	color: #FFB400;
	font-size: 18px;
	line-height: 1;
}

.tsm-testimonial__quote {
	font-size: 16px;
	color: #1E2024;
	line-height: 1.78;
	margin: 0;
	flex: 1;
}

.tsm-testimonial__author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
}

.tsm-testimonial__avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	background: #EFEEF7;
}

.tsm-testimonial__name {
	font-size: 16px;
	font-weight: 600;
	color: #1E2024;
	margin: 0 0 4px;
	line-height: 1.2;
}

.tsm-testimonial__role {
	font-size: 14px;
	color: #777;
	margin: 0;
	line-height: 1.4;
}

@media (max-width: 992px) {
	.tsm-testimonials__track { grid-auto-columns: calc((100% - 24px) / 2); }
}

@media (max-width: 600px) {
	.tsm-testimonials { padding: 60px 0; }
	.tsm-testimonials__intro h2 { font-size: 28px; }
	.tsm-testimonials__track { grid-auto-columns: 88%; }
	.tsm-testimonial { padding: 28px 24px; }
}


/* ==========================================================================
   5. BLOG CARDS — 3-column article grid
   ============================================================================
   Card: white, radius 20px, overflow hidden, shadow 0 2px 8px rgba(0,0,0,0.05)
   Image: 16:9 aspect, with blue date badge top-left (#0367FE bg, white text)
   Body: padding 28px, title 20px/700, excerpt 15px/#777/lh 1.78
   Bottom meta pill: dark bg #1E2024, white text 13px, "By X • No Comments"
   ========================================================================== */

.tsm-blog {
	padding: 100px 0;
	background: #fff;
	font-family: 'Figtree', 'Inter', sans-serif;
}

.tsm-blog__container {
	max-width: 1340px;
	margin: 0 auto;
	padding: 0 20px;
}

.tsm-blog__intro {
	text-align: center;
	margin-bottom: 56px;
	padding: 0 20px;
}

.tsm-blog__intro h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.36;
	color: #000;
	margin: 0 0 16px;
}

.tsm-blog__intro p {
	font-size: 15px;
	color: #777;
	line-height: 1.78;
	margin: 0 auto;
	max-width: 600px;
}

.tsm-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.tsm-blog-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.tsm-blog-card:hover {
	box-shadow: 0 18px 40px rgba(85, 17, 248, 0.10);
	transform: translateY(-4px);
}

.tsm-blog-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: #EFEEF7;
	overflow: hidden;
}

.tsm-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.tsm-blog-card:hover .tsm-blog-card__media img {
	transform: scale(1.05);
}

/* Blue date badge top-left */
.tsm-blog-card__date {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #0367FE;
	color: #fff;
	padding: 10px 16px;
	border-radius: 10px;
	text-align: center;
	line-height: 1.1;
	font-weight: 700;
	font-family: inherit;
	box-shadow: 0 6px 16px rgba(3, 103, 254, 0.35);
	min-width: 60px;
}

.tsm-blog-card__date .day {
	display: block;
	font-size: 22px;
	font-weight: 700;
}

.tsm-blog-card__date .month {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	opacity: 0.9;
	margin-top: 2px;
}

.tsm-blog-card__body {
	padding: 28px 28px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.tsm-blog-card__title {
	font-size: 20px;
	font-weight: 700;
	color: #1E2024;
	line-height: 1.4;
	margin: 0 0 12px;
}

.tsm-blog-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tsm-blog-card__title a:hover { color: #5511F8; }

.tsm-blog-card__excerpt {
	font-size: 15px;
	color: #777;
	line-height: 1.78;
	margin: 0 0 20px;
	flex: 1;
}

/* Bottom dark meta pill */
.tsm-blog-card__meta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #1E2024;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 100px;
	align-self: flex-start;
}

.tsm-blog-card__meta span { opacity: 0.85; }

.tsm-blog-card__meta .dot {
	display: inline-block;
	width: 4px;
	height: 4px;
	background: #fff;
	border-radius: 50%;
	opacity: 0.5;
}

@media (max-width: 992px) {
	.tsm-blog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.tsm-blog { padding: 60px 0; }
	.tsm-blog__intro h2 { font-size: 28px; }
	.tsm-blog__grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   6. FOOTER v3 — EXACT casethemes 1:1 (re-verified via getComputedStyle)
   ============================================================================
   Outer wrapper: padding 0 60px 30px (viewport inset L/R + bottom gutter)
   Dark card: max-width 1785px, bg #1E2024, radius 25px, padding 114px 60px 0
   Grid: 4 EQUAL columns (was 1.4:1:1:1)
   Column title (H3): 25px / 500 / #fff / Satoshi / mb 24px (was 17px / 700)
   Links: 15px / #C2C2C2 / lh 1.78, gap 8px between (was 14px / #A0A0A8 / gap 12px)
   Brand text: 15px / #C2C2C2 / lh 1.78
   Social icons: 40px round, bg rgba(255,255,255,0.06) (was 36px)
   Copyright row: border-top 1px rgba(255,255,255,0.1), padding 24px 0
   ========================================================================== */

.tsm-footer {
	background: transparent;
	color: #C2C2C2;
	font-family: 'Figtree', 'Inter', sans-serif;
	padding: 0 60px 30px;
}

.tsm-footer__container {
	max-width: 1785px;
	margin: 0 auto;
	background: #1E2024;
	border-radius: 25px;
	padding: 114px 60px 0;
	overflow: hidden;
}

/* 4 EQUAL columns */
.tsm-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	padding-bottom: 40px;
}

.tsm-footer__col-title {
	color: #fff;
	font-size: 25px;
	font-weight: 500;
	margin: 0 0 24px;
	line-height: 1.4;
	font-family: inherit;
}

.tsm-footer__brand-logo {
	display: inline-block;
	margin-bottom: 24px;
	color: #fff;
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.5px;
	text-decoration: none;
}

.tsm-footer__brand-logo img {
	display: block;
	max-width: 200px;
	height: auto;
}

.tsm-footer__brand-text {
	font-size: 15px;
	line-height: 1.78;
	color: #C2C2C2;
	margin: 0 0 24px;
	max-width: 340px;
}

.tsm-footer__social {
	display: inline-flex;
	gap: 10px;
}

.tsm-footer__social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
	text-decoration: none;
}

.tsm-footer__social a:hover {
	background: #FF7400;
	color: #fff;
	transform: translateY(-2px);
}

.tsm-footer__social svg { width: 16px; height: 16px; fill: currentColor; }

.tsm-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tsm-footer__links a {
	color: #C2C2C2;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.78;
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.tsm-footer__links a:hover {
	color: #FF7400;
	padding-left: 4px;
}

.tsm-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.tsm-footer__copy {
	font-size: 14px;
	color: #C2C2C2;
	margin: 0;
}

.tsm-footer__bottom-links {
	display: inline-flex;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tsm-footer__bottom-links a {
	font-size: 14px;
	color: #C2C2C2;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tsm-footer__bottom-links a:hover { color: #FF7400; }

@media (max-width: 992px) {
	.tsm-footer { padding: 0 30px 24px; }
	.tsm-footer__container { padding: 80px 40px 0; }
	.tsm-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; padding-bottom: 32px; }
	.tsm-footer__col-title { font-size: 22px; }
}

@media (max-width: 600px) {
	.tsm-footer { padding: 0 16px 16px; }
	.tsm-footer__container { padding: 56px 24px 0; border-radius: 18px; }
	.tsm-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 24px; }
	.tsm-footer__bottom { flex-direction: column; text-align: center; }
	.tsm-footer__col-title { font-size: 20px; }
}


/* ==========================================================================
   7. SHOP SECTIONS — Sale + Trending product showcases
   ============================================================================
   Two visual variants sharing one product card design:
     - .tsm-shop--sale     light bg, black heading
     - .tsm-shop--trending dark textured card #0A0A0B with radius 25px top
   Heading: 45px / 700 / lh 1.36 (matches casethemes section heading scale)
   Card: 16px radius, soft shadow, hover lift + image zoom, badge top-left
   ========================================================================== */

.tsm-shop {
	padding: 80px 45px;
	font-family: 'Figtree', 'Inter', sans-serif;
	position: relative;
}

.tsm-shop__inner {
	max-width: 1785px;
	margin: 0 auto;
	position: relative;
}

.tsm-shop__intro {
	text-align: center;
	margin-bottom: 48px;
	padding: 0 20px;
}

.tsm-shop__heading {
	font-size: 45px;
	font-weight: 700;
	line-height: 1.36;
	color: #000;
	margin: 0 0 16px;
	font-family: inherit;
	letter-spacing: 0;
}

.tsm-shop__subtitle {
	font-size: 15px;
	font-weight: 400;
	color: #777;
	line-height: 1.78;
	margin: 0 auto;
	max-width: 600px;
}

.tsm-shop__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

/* === Trending variant: dark textured card, white heading === */
.tsm-shop--trending {
	padding: 0 45px;
	margin-bottom: 60px;
}

.tsm-shop--trending .tsm-shop__inner {
	background-color: #0A0A0B;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(85,17,248,0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(251,87,29,0.10) 0%, transparent 50%);
	border-radius: 25px;
	padding: 55px 60px 60px;
	overflow: hidden;
}

.tsm-shop--trending .tsm-shop__heading { color: #fff; }
.tsm-shop--trending .tsm-shop__subtitle { color: rgba(255,255,255,0.65); }

/* === Product card (placeholder design — swap for EDD shortcode later) === */
.tsm-shop-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
}

.tsm-shop-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(85,17,248,0.10);
}

.tsm-shop-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background: #EFEEF7;
	overflow: hidden;
}

.tsm-shop-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.tsm-shop-card:hover .tsm-shop-card__media img {
	transform: scale(1.05);
}

.tsm-shop-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 12px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #fff;
	z-index: 2;
}

.tsm-shop-card__badge--sale {
	background: #FF4D60;
	box-shadow: 0 6px 16px rgba(255,77,96,0.35);
}

.tsm-shop-card__badge--hot {
	background: #5511F8;
	box-shadow: 0 6px 16px rgba(85,17,248,0.35);
}

.tsm-shop-card__badge--new { background: #0367FE; }

.tsm-shop-card__body {
	padding: 18px 22px 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.tsm-shop-card__category {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	color: #5511F8;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	margin-bottom: 6px;
}

.tsm-shop-card__title {
	font-size: 17px;
	font-weight: 700;
	color: #1E2024;
	line-height: 1.4;
	margin: 0 0 14px;
}

.tsm-shop-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.tsm-shop-card__title a:hover { color: #FF7400; }

.tsm-shop-card__price {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	margin-top: auto;
}

.tsm-shop-card__price--current {
	font-size: 18px;
	font-weight: 700;
	color: #FF7400;
}

.tsm-shop-card__price--original {
	font-size: 14px;
	color: #999;
	text-decoration: line-through;
}

@media (max-width: 1100px) {
	.tsm-shop__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
	.tsm-shop { padding: 60px 20px; }
	.tsm-shop--trending { padding: 0 20px; }
	.tsm-shop--trending .tsm-shop__inner { padding: 40px 24px 50px; }
	.tsm-shop__heading { font-size: 30px; }
	.tsm-shop__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
	.tsm-shop__grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   8. SCROLL ENTRANCE ANIMATIONS
   ============================================================================
   Add classes to any element to fade/slide in when it enters the viewport.
   A tiny IntersectionObserver in functions.php adds .is-visible at the right
   moment. Respects prefers-reduced-motion automatically.
   Available classes:
     .tsm-anim           default: slide up + fade in
     .tsm-anim--fade     fade only (no movement)
     .tsm-anim--left     slide in from left + fade
     .tsm-anim--right    slide in from right + fade
     .tsm-anim--slow     slower 1.1s transition
     .tsm-anim--delay1   100ms stagger
     .tsm-anim--delay2   200ms stagger
     .tsm-anim--delay3   300ms stagger
     .tsm-anim--delay4   400ms stagger
   ========================================================================== */

.tsm-anim {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
	will-change: opacity, transform;
}

.tsm-anim.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tsm-anim--slow { transition-duration: 1.1s; }
.tsm-anim--delay1.is-visible { transition-delay: 0.1s; }
.tsm-anim--delay2.is-visible { transition-delay: 0.2s; }
.tsm-anim--delay3.is-visible { transition-delay: 0.3s; }
.tsm-anim--delay4.is-visible { transition-delay: 0.4s; }

.tsm-anim--fade {
	opacity: 0;
	transform: none;
	transition: opacity 0.8s ease;
}

.tsm-anim--fade.is-visible { opacity: 1; }

.tsm-anim--left { transform: translateX(-32px); }
.tsm-anim--right { transform: translateX(32px); }
.tsm-anim--left.is-visible,
.tsm-anim--right.is-visible { transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
	.tsm-anim,
	.tsm-anim--fade,
	.tsm-anim--left,
	.tsm-anim--right {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}


/* ==========================================================================
   9. FOOTER EXTRAS — newsletter form, payment card icons, horizontal divider
   ============================================================================
   Extends the v3 footer with optional pieces:
     - .tsm-footer__newsletter       (heading + paragraph + form)
     - .tsm-footer__newsletter-form  (input + submit, pill shape)
     - .tsm-footer__divider          (1px line above the bottom bar)
     - .tsm-footer__cards            (inline SVG payment icons, 24px tall)
   ========================================================================== */

.tsm-footer__newsletter {
	margin-bottom: 24px;
}

.tsm-footer__newsletter-title {
	color: #fff;
	font-size: 25px;
	font-weight: 500;
	margin: 0 0 12px;
	line-height: 1.4;
	font-family: inherit;
}

.tsm-footer__newsletter-text {
	font-size: 15px;
	color: #C2C2C2;
	line-height: 1.78;
	margin: 0 0 16px;
}

.tsm-footer__newsletter-form {
	display: flex;
	gap: 0;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 100px;
	padding: 6px;
	max-width: 420px;
}

.tsm-footer__newsletter-input {
	flex: 1;
	background: transparent;
	border: 0;
	color: #fff;
	font-size: 14px;
	padding: 0 18px;
	outline: none;
	font-family: inherit;
	min-width: 0;
}

.tsm-footer__newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.tsm-footer__newsletter-btn {
	background: #FF7400;
	color: #fff;
	border: 0;
	padding: 0 24px;
	height: 44px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	font-family: inherit;
	white-space: nowrap;
	box-shadow: 0 4px 14px rgba(255, 116, 0, 0.3);
}

.tsm-footer__newsletter-btn:hover {
	background: #ff8c1a;
	transform: translateY(-1px);
	box-shadow: 0 8px 22px rgba(255, 116, 0, 0.45);
}

/* Horizontal divider above the copyright bar */
.tsm-footer__divider {
	border: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
	margin: 0;
}

/* Payment card icons row */
.tsm-footer__cards {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.tsm-footer__cards svg {
	height: 24px;
	width: auto;
	opacity: 0.75;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.tsm-footer__cards a:hover svg,
.tsm-footer__cards svg:hover {
	opacity: 1;
	transform: translateY(-1px);
}

@media (max-width: 600px) {
	.tsm-footer__newsletter-form { flex-direction: column; padding: 12px; border-radius: 16px; }
	.tsm-footer__newsletter-input { padding: 12px 8px; }
	.tsm-footer__newsletter-btn { width: 100%; }
	.tsm-footer__cards { justify-content: center; flex-wrap: wrap; }
}


/* ==========================================================================
   10. TRUSTED-BY LOGO STRIP
   ============================================================================
   Full-bleed section with centered heading + optional subtitle + horizontal
   row of partner / customer logos.

     Section padding:  112px top, generous bottom for breathing
     Heading:          44px / 700 / #111827 / centered
     Subtitle:         17px / #6B7280 / centered (optional)
     Logo strip:       flex row, grayscale + 0.55 opacity default, full color on hover
     Optional marquee: add .tsm-trust__strip--marquee for seamless infinite scroll
                       (duplicate the .tsm-trust__track contents in the HTML)
   ========================================================================== */

.tsm-trust {
	padding: 112px 20px 96px;
	background: #fff;
	font-family: 'Figtree', 'Inter', sans-serif;
	overflow: hidden;
}

.tsm-trust__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.tsm-trust__intro {
	text-align: center;
	margin-bottom: 56px;
}

.tsm-trust__heading {
	font-size: 44px;
	font-weight: 700;
	line-height: 1.22;
	color: #111827;
	margin: 0 0 16px;
	letter-spacing: -0.4px;
	font-family: inherit;
}

.tsm-trust__subtitle {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6;
	color: #6B7280;
	margin: 0 auto;
	max-width: 640px;
}

/* === Static strip (default) === */
.tsm-trust__strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 56px;
	row-gap: 32px;
}

.tsm-trust__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	max-width: 180px;
	opacity: 0.55;
	filter: grayscale(100%) brightness(0.7);
	transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
	text-decoration: none;
	color: #111827;
}

.tsm-trust__logo:hover,
.tsm-trust__logo:focus-visible {
	opacity: 1;
	filter: grayscale(0%) brightness(1);
	transform: translateY(-1px);
}

.tsm-trust__logo img {
	max-height: 42px;
	width: auto;
	display: block;
	object-fit: contain;
}

/* Text-fallback logo (when you don't have an image yet) */
.tsm-trust__logo--text {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.3px;
	color: #111827;
	white-space: nowrap;
}

/* === Marquee variant — seamless infinite scroll === */
.tsm-trust__strip--marquee {
	position: relative;
	display: block;
	overflow: hidden;
	gap: 0;
	mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%);
}

.tsm-trust__strip--marquee .tsm-trust__track {
	display: inline-flex;
	align-items: center;
	gap: 64px;
	padding: 0 32px;
	animation: tsmTrustScroll 36s linear infinite;
	white-space: nowrap;
}

.tsm-trust__strip--marquee:hover .tsm-trust__track {
	animation-play-state: paused;
}

@keyframes tsmTrustScroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.tsm-trust__strip--marquee .tsm-trust__track { animation: none; }
}

@media (max-width: 900px) {
	.tsm-trust { padding: 72px 20px 64px; }
	.tsm-trust__heading { font-size: 32px; }
	.tsm-trust__subtitle { font-size: 16px; }
	.tsm-trust__strip { gap: 36px; row-gap: 24px; }
	.tsm-trust__logo { height: 32px; max-width: 140px; }
	.tsm-trust__logo img { max-height: 32px; }
	.tsm-trust__logo--text { font-size: 18px; }
}


/* ==========================================================================
   11. CATEGORY TABS PANEL (Surecart-style product-type filter)
   ============================================================================
   Dark gradient section: centered heading + subtitle + pill-tabs + big mockup.
   5 categories: Physical Goods / Digital Downloads / Online Courses /
                 SaaS Product / Software Sellers (or any 3-6 of your choice).

   Reuses the existing themesic-tabs JS hook — same .tsm-tab__btn /
   .tsm-tab__panel / data-target / data-tab attribute pattern as the
   .tsm-tabs category section. CSS overrides only apply inside .tsm-cattabs.

   Active pill: white bg + dark text; inactive: gray text on transparent.
   ========================================================================== */

.tsm-cattabs {
	padding: 96px 20px;
	/* Break out to full viewport width regardless of parent container constraints */
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	box-sizing: border-box;
	/* Brand-themed background: #463F52 base with subtle purple (#5511F8) radial glow */
	background-color: #463F52;
	background-image:
		radial-gradient(circle at 50% 20%, rgba(85, 17, 248, 0.28) 0%, rgba(85, 17, 248, 0) 55%),
		linear-gradient(180deg, #463F52 0%, #2D2935 100%);
	color: #fff;
	font-family: 'Figtree', 'Inter', sans-serif;
}

.tsm-cattabs__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.tsm-cattabs__intro {
	text-align: center;
	margin-bottom: 40px;
}

.tsm-cattabs__heading {
	font-size: 44px;
	font-weight: 700;
	line-height: 1.22;
	color: #fff;
	margin: 0 0 16px;
	letter-spacing: -0.4px;
	font-family: inherit;
}

.tsm-cattabs__subtitle {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6;
	color: #A4A4B3;
	margin: 0 auto 24px;
	max-width: 640px;
}

/* Center the inline-flex pill cluster (auto-margin can't center inline-level boxes) */
.tsm-cattabs .tsm-tabs { text-align: center; }

/* Pill-tabs nav: scoped override of the .tsm-tabs__nav inside .tsm-cattabs */
.tsm-cattabs .tsm-tabs__nav {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 100px;
	padding: 6px;
	margin: 0 auto 48px;
	justify-content: center;
	vertical-align: top;
}

.tsm-cattabs .tsm-tab__btn {
	background: transparent;
	color: #A4A4B3;
	font-size: 16px;
	font-weight: 500;
	padding: 10px 22px;
	border-radius: 100px;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	border: 0;
	cursor: pointer;
	box-shadow: none;
	letter-spacing: 0;
}

.tsm-cattabs .tsm-tab__btn:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	transform: none;
	box-shadow: none;
}

.tsm-cattabs .tsm-tab__btn.is-active {
	background: #fff;
	color: #111827;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tsm-cattabs .tsm-tab__btn.is-active:hover {
	background: #fff;
	color: #111827;
	transform: none;
}

/* Panels: only active is shown (reuses .tsm-tab__panel JS hook) */
.tsm-cattabs .tsm-tab__panel {
	text-align: center;
}

.tsm-cattabs__mockup-frame {
	display: block;
	max-width: 1100px;
	margin: 0 auto;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
	background: #0F172A;
}

.tsm-cattabs__mockup-frame img {
	width: 100%;
	height: auto;
	display: block;
}

.tsm-cattabs__panel-text {
	max-width: 720px;
	margin: 32px auto 0;
	color: #C2C2C2;
	font-size: 16px;
	line-height: 1.75;
}

@media (max-width: 768px) {
	.tsm-cattabs { padding: 56px 16px; }
	.tsm-cattabs__heading { font-size: 28px; }
	.tsm-cattabs__subtitle { font-size: 15px; }
	.tsm-cattabs .tsm-tabs__nav { padding: 4px; gap: 4px; border-radius: 18px; }
	.tsm-cattabs .tsm-tab__btn { font-size: 14px; padding: 8px 14px; }
	.tsm-cattabs__panel-text { font-size: 15px; }
}


/* ==========================================================================
   12. FEATURES LIST — 3-col grid of small feature cards
   ============================================================================
   For "big-feature-list" sections: large left-aligned heading + lead
   paragraph, followed by a 3-col grid of 6-9 small feature cards (each with
   icon + title + short description).
   ========================================================================== */

.tsm-features-list {
	padding: 96px 20px;
	background: #fff;
	font-family: 'Figtree', 'Inter', sans-serif;
}

.tsm-features-list__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.tsm-features-list__intro {
	max-width: 820px;
	margin: 0 0 56px;
}

.tsm-features-list__heading {
	font-size: 44px;
	font-weight: 700;
	line-height: 1.22;
	color: #111827;
	margin: 0 0 20px;
	letter-spacing: -0.4px;
	font-family: inherit;
}

.tsm-features-list__subtitle {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
	color: #4B5563;
	margin: 0;
	max-width: 720px;
}

/* Diagonal-clipped DARK section with white-card pop (modern subtle wedge) */
.tsm-features-list--diagonal {
	background-color: #1E1B26;
	background-image:
		radial-gradient(ellipse at 12% 18%, rgba(85, 17, 248, 0.22) 0%, transparent 45%),
		radial-gradient(ellipse at 88% 82%, rgba(255, 116, 0, 0.10) 0%, transparent 45%),
		linear-gradient(180deg, #1E1B26 0%, #2D2935 100%);
	color: #fff;
	/* Full-bleed escape so the diagonal cut spans the viewport */
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	box-sizing: border-box;
	/* MODERN subtle diagonal: only 60px cut (was 120px) — gentler slope */
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
	-webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
	padding-bottom: 140px;
	margin-bottom: -40px;
	position: relative;
}

/* White heading + dimmed white subtitle on the dark variant */
.tsm-features-list--diagonal .tsm-features-list__heading { color: #fff; }
.tsm-features-list--diagonal .tsm-features-list__subtitle { color: rgba(255, 255, 255, 0.7); }

/* Cards on dark bg: clean white, NO border (kills the 1px from base rule), no resting shadow */
.tsm-features-list--diagonal .tsm-feature-card {
	background: #fff;
	border: 0;
	box-shadow: none;
}
.tsm-features-list--diagonal .tsm-feature-card:hover {
	border: 0;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
	transform: translateY(-3px);
}

/* Mirror variant: cut runs the other way (tall on right, short on left) */
.tsm-features-list--diagonal-reverse {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 60px));
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 60px));
}

@media (max-width: 768px) {
	.tsm-features-list--diagonal {
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%);
		-webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 0 100%);
		padding-bottom: 96px;
	}
}

/* 2-col grid (matches surecart's actual layout — was 3-col before) */
.tsm-features-list__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* Media-top card: large image at top, title + description below */
.tsm-feature-card {
	background: #fff;
	border: 1px solid #EEF0F4;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.tsm-feature-card:hover {
	border-color: transparent;
	box-shadow: 0 24px 60px rgba(85, 17, 248, 0.10);
	transform: translateY(-4px);
}

.tsm-feature-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: #F4F2F8;
	overflow: hidden;
}

.tsm-feature-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.tsm-feature-card:hover .tsm-feature-card__media img {
	transform: scale(1.04);
}

.tsm-feature-card__body {
	padding: 28px 34px 36px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.tsm-feature-card__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.32;
	color: #111827;
	margin: 0 0 10px;
	font-family: inherit;
	letter-spacing: -0.2px;
}

.tsm-feature-card__text {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #4B5563;
	margin: 0;
}

@media (max-width: 768px) {
	.tsm-features-list { padding: 64px 16px; }
	.tsm-features-list__heading { font-size: 30px; }
	.tsm-features-list__subtitle { font-size: 16px; }
	.tsm-features-list__grid { grid-template-columns: 1fr; gap: 18px; }
	.tsm-feature-card__body { padding: 22px 22px 26px; }
	.tsm-feature-card__title { font-size: 19px; }
	.tsm-feature-card__text { font-size: 15px; }
}


/* ==========================================================================
   PAGE BLOCK — multi-section wrapper for consolidating sections in one widget
   ============================================================================
   Pasting several .tsm-* sections inside ONE Elementor HTML widget? Wrap them
   in <div class="tsm-page-block"> to make them flow as one visual stack with
   consistent spacing and no inherited padding from the parent widget.
   ========================================================================== */

.tsm-page-block {
	display: block;
	width: 100%;
}

/* When sections are direct children of .tsm-page-block, kill the page-level top/bottom
   padding to avoid double spacing between adjacent sections */
.tsm-page-block > section + section { margin-top: 0; }


/* ==========================================================================
   13. FEATURE BLOCK — alternating image + content layout
   ============================================================================
   Left column: heading + lead + optional 2-4 sub-feature items.
   Right column: product mockup image.
   Add modifier .tsm-feature-block--reverse for image-left layout.
   ========================================================================== */

.tsm-feature-block {
	padding: 80px 20px;
	background: #fff;
	font-family: 'Figtree', 'Inter', sans-serif;
}

.tsm-feature-block__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.tsm-feature-block--reverse .tsm-feature-block__content { order: 2; }
.tsm-feature-block--reverse .tsm-feature-block__media   { order: 1; }

.tsm-feature-block__content { min-width: 0; }

.tsm-feature-block__heading {
	font-size: 44px;
	font-weight: 700;
	line-height: 1.22;
	color: #111827;
	margin: 0 0 20px;
	letter-spacing: -0.4px;
	font-family: inherit;
}

.tsm-feature-block__lead {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
	color: #4B5563;
	margin: 0 0 32px;
}

.tsm-feature-block__sub {
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tsm-feature-block__sub-item {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 16px;
	align-items: start;
}

.tsm-feature-block__sub-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 116, 0, 0.10);
	color: #FF7400;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tsm-feature-block__sub-icon svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
}

.tsm-feature-block__sub-title {
	font-size: 17px;
	font-weight: 700;
	color: #111827;
	margin: 0 0 4px;
	line-height: 1.4;
}

.tsm-feature-block__sub-text {
	font-size: 15px;
	color: #4B5563;
	line-height: 1.6;
	margin: 0;
}

.tsm-feature-block__media { min-width: 0; }

.tsm-feature-block__media img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(17, 24, 39, 0.10);
}

@media (max-width: 900px) {
	.tsm-feature-block { padding: 56px 16px; }
	.tsm-feature-block__inner { grid-template-columns: 1fr; gap: 36px; }
	.tsm-feature-block--reverse .tsm-feature-block__content { order: 1; }
	.tsm-feature-block--reverse .tsm-feature-block__media { order: 2; }
	.tsm-feature-block__heading { font-size: 30px; }
}


/* ==========================================================================
   14. INTEGRATIONS BANNER
   ============================================================================
   Centered heading + subtitle followed by a wide horizontal banner image
   (typically a row of logos representing supported integrations).

     Heading:  44px / 700 / #111827 / centered
     Subtitle: 17px / #4B5563 / centered (optional)
     Banner image: max-width 1400px, full responsive, no rounding by default
   ========================================================================== */

.tsm-integrations {
	padding: 96px 20px;
	background: #fff;
	font-family: 'Figtree', 'Inter', sans-serif;
}

.tsm-integrations__inner {
	max-width: 1400px;
	margin: 0 auto;
}

.tsm-integrations__intro {
	text-align: center;
	margin-bottom: 56px;
	padding: 0 20px;
}

.tsm-integrations__heading {
	font-size: 44px;
	font-weight: 700;
	line-height: 1.22;
	color: #111827;
	margin: 0 0 16px;
	letter-spacing: -0.4px;
	font-family: inherit;
}

.tsm-integrations__subtitle {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6;
	color: #4B5563;
	margin: 0 auto;
	max-width: 720px;
}

.tsm-integrations__banner {
	display: block;
	width: 100%;
	height: auto;
	max-width: 1400px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.tsm-integrations { padding: 64px 16px; }
	.tsm-integrations__heading { font-size: 30px; }
	.tsm-integrations__subtitle { font-size: 16px; }
	.tsm-integrations__intro { margin-bottom: 36px; }
}
