/*
Theme Name: IndioFit
Theme URI: https://indiofit.com
Author: IndioFit
Author URI: https://indiofit.com
Description: Premium WooCommerce Affiliate Theme for Kurtis & Women's Fashion
Version: 2.0
Requires at least: 6.0
Tested up to: 6.5
WC requires at least: 7.0
WC tested up to: 8.9
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: indiofit
Tags: woocommerce, affiliate, fashion, ecommerce, responsive
*/

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
	--brand:         #ff6b35;
	--brand-dark:    #e55a24;
	--brand-light:   #fff3ea;
	--text:          #1a1a2e;
	--text-mid:      #4a4a68;
	--text-light:    #888;
	--border:        #f0f0f5;
	--bg:            #fafafa;
	--bg-alt:        #f5f5fb;
	--white:         #ffffff;
	--dark-navy:     #0d1b2a;
	--shadow-sm:     0 2px 8px rgba(0,0,0,.06);
	--shadow-md:     0 6px 24px rgba(0,0,0,.10);
	--shadow-lg:     0 16px 48px rgba(0,0,0,.14);
	--radius-sm:     8px;
	--radius-md:     14px;
	--radius-lg:     20px;
	--radius-xl:     28px;
	--transition:    .25s ease;
	--font:          'Inter', Arial, sans-serif;
	--max-width:     1280px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
}

img, svg {
	max-width: 100%;
	height: auto;
	display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* =========================================================
   LAYOUT UTILS
   ========================================================= */
.container {
	width: 92%;
	max-width: var(--max-width);
	margin-inline: auto;
}

#page-wrapper {
	min-height: 100vh;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: var(--radius-sm);
	font-weight: 700;
	font-size: 15px;
	transition: var(--transition);
	white-space: nowrap;
	text-decoration: none;
	border: 2px solid transparent;
	line-height: 1;
}

.btn-primary {
	background: var(--brand);
	color: var(--white);
}
.btn-primary:hover {
	background: var(--brand-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255,107,53,.35);
}

.btn-outline {
	border-color: var(--brand);
	color: var(--brand);
	background: transparent;
}
.btn-outline:hover {
	background: var(--brand);
	color: var(--white);
	transform: translateY(-2px);
}

.btn-ghost {
	color: var(--brand);
	padding: 10px 16px;
	border-color: transparent;
}
.btn-ghost:hover {
	background: var(--brand-light);
	border-radius: var(--radius-sm);
}

.btn-deal {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--brand);
	font-weight: 700;
	font-size: 14px;
	padding: 0;
	margin-top: 4px;
	transition: gap var(--transition);
}
.btn-deal:hover { gap: 10px; }

.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* =========================================================
   SECTION HELPERS
   ========================================================= */
.section-label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--brand);
	margin-bottom: 10px;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.section-header.centered {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.section-header h2 {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 8px;
}

.section-header p {
	color: var(--text-mid);
	font-size: 16px;
}

.no-items {
	text-align: center;
	color: var(--text-light);
	padding: 40px;
	font-size: 15px;
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
	background: var(--brand);
	color: var(--white);
	text-align: center;
	padding: 9px 20px;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.top-bar-sep {
	opacity: .4;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
	background: var(--white);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
	transition: box-shadow var(--transition);
}

.navbar.scrolled {
	box-shadow: 0 2px 20px rgba(0,0,0,.10);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 68px;
}

/* LOGO */
.logo { display: flex; align-items: center; }
.logo .custom-logo { height: 46px; width: auto; }

.logo-text {
	font-size: 28px;
	font-weight: 900;
	color: var(--text);
	letter-spacing: -.5px;
}

.logo-text em {
	color: var(--brand);
	font-style: normal;
}

/* DESKTOP NAV */
.nav-desktop ul {
	display: flex;
	align-items: center;
	gap: 6px;
}

.nav-desktop a {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 14px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	transition: var(--transition);
	position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
	color: var(--brand);
	background: var(--brand-light);
}

/* DROPDOWN */
.has-dropdown {
	position: relative;
}

.dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: var(--white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all var(--transition);
	z-index: 100;
	padding: 8px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown li a {
	display: block;
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 500;
}

/* NAV ACTIONS */
.nav-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-search-toggle {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
	color: var(--text-mid);
	transition: var(--transition);
}
.nav-search-toggle:hover {
	background: var(--brand-light);
	color: var(--brand);
}

/* HAMBURGER */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 38px;
	height: 38px;
	padding: 8px;
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.hamburger span {
	display: block;
	height: 2.5px;
	background: var(--text);
	border-radius: 2px;
	transition: var(--transition);
	transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* SEARCH BAR */
.nav-search-bar {
	border-top: 1px solid var(--border);
	padding: 16px 0;
	display: none;
}

.nav-search-bar.open { display: block; }

.search-form {
	display: flex;
	gap: 10px;
	align-items: center;
}

.search-form input[type="search"] {
	flex: 1;
	padding: 12px 18px;
	border: 2px solid var(--border);
	border-radius: var(--radius-sm);
	font-size: 15px;
	font-family: var(--font);
	outline: none;
	transition: border-color var(--transition);
}

.search-form input[type="search"]:focus {
	border-color: var(--brand);
}

.search-form button[type="submit"] {
	padding: 12px 18px;
	background: var(--brand);
	color: var(--white);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.search-form button[type="submit"]:hover {
	background: var(--brand-dark);
}

/* MOBILE NAV */
.mobile-nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.5);
	z-index: 1100;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.mobile-nav-overlay.open {
	opacity: 1;
	visibility: visible;
}

.mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(340px, 85vw);
	background: var(--white);
	z-index: 1200;
	padding: 80px 28px 40px;
	transform: translateX(100%);
	transition: transform .35s cubic-bezier(.4,0,.2,1);
	overflow-y: auto;
}

.mobile-nav.open {
	transform: translateX(0);
}

.mobile-nav ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mobile-nav li a {
	display: block;
	padding: 14px 16px;
	border-radius: var(--radius-sm);
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	transition: var(--transition);
}

.mobile-nav li a:hover {
	background: var(--brand-light);
	color: var(--brand);
}

.mobile-nav-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 38px;
	height: 38px;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-mid);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}
.mobile-nav-close:hover {
	background: var(--brand-light);
	color: var(--brand);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
	padding: 80px 0 100px;
	background: linear-gradient(135deg, #fff8f4 0%, #ffffff 60%, #f0f4ff 100%);
	position: relative;
	overflow: hidden;
}

.hero-bg-shapes {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.shape {
	position: absolute;
	border-radius: 50%;
	opacity: .06;
	background: var(--brand);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: 80px; }
.shape-3 { width: 150px; height: 150px; top: 60px; left: 40%; background: #6366f1; }

.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
}

.hero-content {
	max-width: 600px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	padding: 10px 20px;
	border-radius: 50px;
	box-shadow: var(--shadow-md);
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 28px;
	border: 1px solid var(--border);
}

.hero h1 {
	font-size: 58px;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 22px;
	letter-spacing: -.5px;
}

.hero h1 em {
	color: var(--brand);
	font-style: normal;
}

.hero > .hero-inner > .hero-content > p {
	font-size: 18px;
	color: var(--text-mid);
	line-height: 1.75;
	margin-bottom: 36px;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.hero-stats {
	display: flex;
	align-items: center;
	gap: 24px;
}

.stat {
	display: flex;
	flex-direction: column;
}

.stat strong {
	font-size: 24px;
	font-weight: 900;
	color: var(--text);
	line-height: 1.1;
}

.stat span {
	font-size: 13px;
	color: var(--text-light);
	font-weight: 500;
}

.stat-sep {
	width: 1px;
	height: 40px;
	background: var(--border);
}

/* HERO VISUAL */
.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 460px;
}

.hero-image-box {
	background: var(--brand-light);
	border-radius: var(--radius-xl);
	padding: 24px;
	box-shadow: var(--shadow-lg);
}

.hero-card-float {
	position: absolute;
	background: var(--white);
	padding: 12px 20px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
	animation: float 3s ease-in-out infinite;
}

.card-a { top: 20px; left: -20px; animation-delay: 0s; }
.card-b { bottom: 80px; left: -30px; animation-delay: .8s; }
.card-c { top: 120px; right: -20px; animation-delay: 1.6s; }

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* =========================================================
   FEATURED CATEGORIES
   ========================================================= */
.featured-categories {
	padding: 90px 0;
	background: var(--white);
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.category-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: block;
	aspect-ratio: 3/2;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.category-card-image {
	position: absolute;
	inset: 0;
}

.category-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.category-card:hover .category-card-image img {
	transform: scale(1.08);
}

.category-card-placeholder {
	width: 100%;
	height: 100%;
	background: var(--brand-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.category-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}

.category-card-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 18px;
	color: var(--white);
	z-index: 2;
}

.category-card-info h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 4px;
}

.category-count {
	font-size: 13px;
	opacity: .85;
}

/* =========================================================
   PRODUCTS GRID
   ========================================================= */
.latest-products {
	padding: 90px 0;
	background: var(--bg-alt);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* PRODUCT CARD */
.product-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.product-card-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3/4;
	background: var(--bg-alt);
	flex-shrink: 0;
}

.product-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.product-card:hover .product-card-image img {
	transform: scale(1.07);
}

.product-no-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-light);
}

/* DISCOUNT BADGE */
.discount-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: #e53e3e;
	color: var(--white);
	font-size: 12px;
	font-weight: 800;
	padding: 5px 10px;
	border-radius: 6px;
	z-index: 3;
	letter-spacing: .03em;
}

.product-on-sale-tag {
	position: absolute;
	top: 14px;
	right: 14px;
	background: var(--brand);
	color: var(--white);
	font-size: 10px;
	font-weight: 800;
	padding: 4px 8px;
	border-radius: 4px;
	z-index: 3;
	letter-spacing: .1em;
}

/* CARD BODY */
.product-card-body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-cat-label {
	display: inline-block;
	background: var(--brand-light);
	color: var(--brand);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.product-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 10px;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-title a {
	color: var(--text);
	transition: color var(--transition);
}
.product-title a:hover { color: var(--brand); }

/* WOOCOMMERCE PRICE */
.product-price-wrap {
	margin-bottom: 12px;
	line-height: 1.3;
}

.product-price-wrap .woocommerce-Price-amount,
.product-price-wrap .price {
	font-weight: 700;
	font-size: 17px;
	color: var(--brand);
}

.product-price-wrap del .woocommerce-Price-amount {
	color: var(--text-light) !important;
	font-size: 13px;
	font-weight: 500;
}

.product-price-wrap ins {
	text-decoration: none;
}

/* =========================================================
   WHY CHOOSE SECTION
   ========================================================= */
.why-choose {
	padding: 90px 0;
	background: var(--white);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 8px;
}

.why-card {
	background: var(--bg-alt);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	text-align: center;
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
	border: 2px solid transparent;
}

.why-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	background: var(--white);
	border-color: var(--brand-light);
}

.why-icon {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.why-card h3 {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text);
}

.why-card p {
	font-size: 14px;
	color: var(--text-mid);
	line-height: 1.7;
}

/* =========================================================
   BLOG SECTION
   ========================================================= */
.blog-section {
	padding: 90px 0;
	background: var(--bg-alt);
}

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

.blog-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.blog-card-image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16/9;
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.06);
}

.blog-card-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.blog-card-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: var(--text-light);
	margin-bottom: 12px;
}

.blog-cat {
	background: var(--brand-light);
	color: var(--brand);
	padding: 3px 8px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.blog-card-body h3 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.4;
	flex: 1;
}

.blog-card-body h3 a {
	color: var(--text);
	transition: color var(--transition);
}
.blog-card-body h3 a:hover { color: var(--brand); }

.blog-card-body > p {
	color: var(--text-mid);
	font-size: 14px;
	line-height: 1.65;
	margin-bottom: 16px;
}

/* =========================================================
   SINGLE PRODUCT PAGE
   ========================================================= */
.single-product-page {
	padding: 50px 0 80px;
}

.sp-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
	margin-bottom: 70px;
}

/* GALLERY */
.sp-main-image {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 3/4;
	background: var(--bg-alt);
	box-shadow: var(--shadow-md);
}

.sp-main-image .discount-badge {
	top: 16px;
	left: 16px;
	font-size: 14px;
	padding: 7px 14px;
}

#sp-main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.sp-no-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-light);
}

.sp-thumbnails {
	display: flex;
	gap: 10px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.sp-thumb {
	width: 70px;
	height: 70px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border-color var(--transition);
	padding: 0;
}

.sp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sp-thumb.active, .sp-thumb:hover { border-color: var(--brand); }

/* PRODUCT INFO */
.sp-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--text-light);
	margin-bottom: 16px;
}
.sp-breadcrumb a { color: var(--brand); }

.sp-title {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 24px;
	color: var(--text);
}

.sp-pricing {
	display: flex;
	align-items: baseline;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border);
}

.sp-sale-price {
	font-size: 36px;
	font-weight: 900;
	color: var(--brand);
}

.sp-regular-price {
	font-size: 20px;
	color: var(--text-light);
	text-decoration: line-through;
}

.sp-discount-tag {
	background: #fef2f2;
	color: #e53e3e;
	font-size: 14px;
	font-weight: 800;
	padding: 5px 12px;
	border-radius: 6px;
}

.sp-price-html .price { font-size: 28px; font-weight: 800; color: var(--brand); }

.sp-description {
	font-size: 15px;
	color: var(--text-mid);
	line-height: 1.75;
	margin-bottom: 28px;
}

.sp-cta {
	margin-bottom: 32px;
}

.btn-cta {
	width: 100%;
	justify-content: center;
	font-size: 18px;
	padding: 18px 32px;
	border-radius: var(--radius-md);
}

.sp-cta-note {
	font-size: 12px;
	color: var(--text-light);
	margin-top: 10px;
	text-align: center;
}

.sp-meta {
	background: var(--bg-alt);
	border-radius: var(--radius-md);
	padding: 20px;
}

.sp-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
	font-size: 14px;
}

.sp-meta-row:last-child { border-bottom: none; }
.sp-meta-label { color: var(--text-light); }
.sp-meta-value { font-weight: 600; color: var(--text); }

/* FULL DESCRIPTION */
.sp-full-description {
	padding: 48px 0;
	border-top: 1px solid var(--border);
	margin-bottom: 48px;
}

.sp-full-description h2 {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 20px;
}

.sp-full-description p {
	font-size: 15px;
	line-height: 1.8;
	color: var(--text-mid);
}

/* RELATED PRODUCTS */
.sp-related {
	padding-top: 48px;
	border-top: 1px solid var(--border);
}

.sp-related h2 {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 36px;
}

/* =========================================================
   ARCHIVE / SHOP PAGE
   ========================================================= */
.archive-page { padding: 50px 0 80px; }
.woo-archive { padding: 50px 0 80px; }

.archive-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.archive-header h1 {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 8px;
}

.archive-desc {
	color: var(--text-mid);
	font-size: 15px;
}

.archive-controls {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* WooCommerce override */
.woocommerce-result-count { font-size: 14px; color: var(--text-light); margin: 0; }
.woocommerce-ordering select {
	padding: 10px 14px;
	border: 2px solid var(--border);
	border-radius: var(--radius-sm);
	font-family: var(--font);
	font-size: 14px;
	outline: none;
	cursor: pointer;
}

/* =========================================================
   SINGLE BLOG
   ========================================================= */
.single-blog-page { padding: 50px 0 80px; }

.single-blog-container {
	max-width: 820px;
}

.single-blog-cats {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.single-blog-title {
	font-size: 40px;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 16px;
}

.single-blog-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--text-light);
	margin-bottom: 32px;
}

.single-blog-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 40px;
	box-shadow: var(--shadow-md);
}

.single-blog-image img { width: 100%; }

.single-blog-content {
	font-size: 16px;
	line-height: 1.85;
	color: var(--text-mid);
}

.single-blog-content h2, .single-blog-content h3 {
	color: var(--text);
	margin: 32px 0 16px;
}

.single-blog-content p { margin-bottom: 20px; }
.single-blog-content ul, .single-blog-content ol { padding-left: 24px; margin-bottom: 20px; }
.single-blog-content li { margin-bottom: 8px; }

.single-blog-tags {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
	font-size: 14px;
	color: var(--text-light);
}

.single-blog-tags a {
	background: var(--bg-alt);
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 13px;
	color: var(--text-mid);
	transition: var(--transition);
}
.single-blog-tags a:hover { background: var(--brand-light); color: var(--brand); }

/* POST NAVIGATION */
.post-navigation {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.post-navigation a {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nav-label { font-size: 12px; color: var(--text-light); }
.nav-title { font-size: 15px; font-weight: 600; color: var(--brand); }

.related-posts { margin-top: 70px; padding-top: 50px; border-top: 1px solid var(--border); }
.related-posts h2 { font-size: 26px; font-weight: 800; margin-bottom: 32px; }

/* =========================================================
   SEARCH / 404
   ========================================================= */
.no-results {
	text-align: center;
	padding: 80px 24px;
}

.no-results-icon {
	font-size: 60px;
	margin-bottom: 20px;
}

.no-results h2 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 14px;
}

.no-results p {
	color: var(--text-mid);
	max-width: 520px;
	margin: 0 auto 28px;
	font-size: 16px;
}

.no-results-search {
	max-width: 480px;
	margin: 0 auto;
}

.error-page {
	padding: 100px 20px;
	text-align: center;
}

.error-inner {
	max-width: 560px;
	margin: 0 auto;
}

.error-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
}

.error-number {
	font-size: 120px;
	font-weight: 900;
	color: var(--brand);
	line-height: 1;
}

.error-emoji {
	font-size: 64px;
}

.error-page h1 {
	font-size: 40px;
	font-weight: 800;
	margin-bottom: 16px;
}

.error-page p {
	color: var(--text-mid);
	font-size: 16px;
	margin-bottom: 32px;
	line-height: 1.7;
}

.error-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.error-search {
	max-width: 420px;
	margin: 0 auto;
}

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
	margin-top: 60px;
	text-align: center;
	display: flex;
	justify-content: center;
}

.pagination .page-numbers,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin: 4px;
	background: var(--white);
	border-radius: var(--radius-sm);
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	text-decoration: none !important;
	border: 2px solid transparent;
}

.pagination .current,
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--brand) !important;
	color: var(--white) !important;
	border-color: var(--brand) !important;
}

.pagination .page-numbers:hover,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	border-color: var(--brand);
	color: var(--brand);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
	background: var(--dark-navy);
	color: rgba(255,255,255,.8);
	margin-top: 0;
}

.footer-inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 48px;
	padding: 70px 0 40px;
}

.footer-logo {
	display: inline-block;
	font-size: 28px;
	font-weight: 900;
	color: var(--white);
	margin-bottom: 16px;
}

.footer-logo em {
	color: var(--brand);
	font-style: normal;
}

.footer-about p {
	font-size: 14px;
	line-height: 1.75;
	margin-bottom: 24px;
	color: rgba(255,255,255,.65);
}

.footer-social {
	display: flex;
	gap: 10px;
}

.footer-social a {
	width: 38px;
	height: 38px;
	border-radius: var(--radius-sm);
	background: rgba(255,255,255,.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,.7);
	transition: var(--transition);
}

.footer-social a:hover {
	background: var(--brand);
	color: var(--white);
}

.footer-col h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 20px;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col li a {
	font-size: 14px;
	color: rgba(255,255,255,.65);
	transition: color var(--transition);
}
.footer-col li a:hover { color: var(--brand); }

.footer-disclaimer {
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255,255,255,.55);
	margin-bottom: 20px;
}

.footer-platforms span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255,255,255,.65);
	margin-bottom: 10px;
}

.platform-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.platform-tags span {
	background: rgba(255,255,255,.08);
	color: rgba(255,255,255,.75);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	display: block !important;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 0;
	font-size: 13px;
	color: rgba(255,255,255,.5);
	flex-wrap: wrap;
	gap: 8px;
}

.footer-bottom-inner strong { color: rgba(255,255,255,.75); }

/* =========================================================
   WOOCOMMERCE BREADCRUMB
   ========================================================= */
.woocommerce-breadcrumb {
	font-size: 13px;
	color: var(--text-light);
	margin-bottom: 10px;
}

.woocommerce-breadcrumb a { color: var(--brand); }

/* =========================================================
   RESPONSIVE — TABLET (768px – 1199px)
   ========================================================= */
@media (max-width: 1199px) {
	.hero h1 { font-size: 46px; }
	.hero-inner { gap: 40px; }
	.products-grid { grid-template-columns: repeat(3, 1fr); }
	.category-grid { grid-template-columns: repeat(3, 1fr); }
	.why-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
	.sp-layout { gap: 40px; }
	.sp-title { font-size: 26px; }
}

@media (max-width: 1024px) {
	.hero-visual { display: none; }
	.hero-inner { grid-template-columns: 1fr; }
	.hero-content { max-width: 100%; text-align: center; }
	.hero-buttons { justify-content: center; }
	.hero-stats { justify-content: center; }
	.section-header h2 { font-size: 30px; }
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   RESPONSIVE — MOBILE (< 768px)
   ========================================================= */
@media (max-width: 767px) {

	/* NAVBAR */
	.nav-desktop { display: none; }
	.hamburger { display: flex; }
	.nav-container { height: 60px; }
	.logo-text { font-size: 24px; }

	/* TOP BAR */
	.top-bar { font-size: 12px; gap: 6px; }
	.top-bar-sep:last-of-type { display: none; }
	.top-bar span:last-child { display: none; }

	/* HERO */
	.hero { padding: 60px 0 70px; }
	.hero h1 { font-size: 34px; }
	.hero > .hero-inner > .hero-content > p { font-size: 16px; }
	.hero-buttons { flex-direction: column; align-items: center; }
	.hero-stats { flex-wrap: wrap; justify-content: center; gap: 16px; }
	.stat-sep { display: none; }

	/* GRIDS */
	.products-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 14px !important;
	}
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.blog-grid { grid-template-columns: 1fr; }

	/* PRODUCT CARD MOBILE */
	.product-card-body { padding: 12px; }
	.product-cat-label { font-size: 10px; padding: 3px 8px; }
	.product-title { font-size: 13px; margin-bottom: 8px; }
	.product-price-wrap .woocommerce-Price-amount,
	.product-price-wrap .price { font-size: 14px; }
	.btn-deal { font-size: 12px; }

	/* SECTION HEADERS */
	.section-header { flex-direction: column; align-items: flex-start; margin-bottom: 32px; }
	.section-header h2 { font-size: 26px; }
	.section-header .btn-ghost { display: none; }

	/* WHY CARDS */
	.why-card { padding: 24px 18px; }
	.why-card h3 { font-size: 16px; }

	/* SINGLE PRODUCT */
	.sp-layout { grid-template-columns: 1fr; gap: 32px; }
	.sp-title { font-size: 22px; }
	.sp-sale-price { font-size: 28px; }

	/* FOOTER */
	.footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 30px; }
	.footer-bottom-inner { flex-direction: column; text-align: center; }

	/* ARCHIVE */
	.archive-header { flex-direction: column; align-items: flex-start; }
	.archive-header h1 { font-size: 26px; }

	/* BLOG SINGLE */
	.single-blog-title { font-size: 28px; }
	.post-navigation { grid-template-columns: 1fr; }

	/* SEARCH / 404 */
	.error-number { font-size: 80px; }
	.error-actions { flex-direction: column; align-items: center; }

	/* PADDING SECTIONS */
	.featured-categories,
	.latest-products,
	.why-choose,
	.blog-section { padding: 60px 0; }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE (< 480px)
   ========================================================= */
@media (max-width: 480px) {
	.hero h1 { font-size: 28px; }
	.products-grid { gap: 10px !important; }
	.category-grid { gap: 10px; }
	.product-card-body { padding: 10px; }
	.product-title { font-size: 12px; }
	.why-grid { gap: 12px; }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
:focus-visible {
	outline: 2.5px solid var(--brand);
	outline-offset: 3px;
	border-radius: 4px;
}

.skip-link {
	position: absolute;
	top: -999px;
	left: -999px;
	background: var(--brand);
	color: var(--white);
	padding: 12px 20px;
	border-radius: var(--radius-sm);
	font-weight: 700;
	z-index: 9999;
}

.skip-link:focus {
	top: 16px;
	left: 16px;
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
	.navbar, .top-bar, .footer, .hero-visual, .why-choose { display: none !important; }
	body { background: #fff; color: #000; }
}

/* =============================================
   SINGLE PRODUCT PAGE — IndioFit
   ============================================= */

.single-product-page {
	padding: 36px 0 80px;
	background: #fafafa;
}

/* BREADCRUMB */
.sp-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 13px;
	color: #aaa;
	margin-bottom: 32px;
	padding-bottom: 16px;
	border-bottom: 1px solid #f0f0f5;
}
.sp-breadcrumb a {
	color: #ff6b35;
	text-decoration: none;
}
.sp-breadcrumb a:hover { text-decoration: underline; }
.sp-breadcrumb-current { color: #555; font-weight: 600; }

/* ── MAIN LAYOUT: 2 columns ── */
.sp-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
	margin-bottom: 60px;
}

/* ══════════════════════════
   LEFT — IMAGE GALLERY
   ══════════════════════════ */
.sp-gallery {}

.sp-main-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #fff3ea;
	aspect-ratio: 3 / 4;
	box-shadow: 0 8px 32px rgba(0,0,0,.10);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sp-main-image .discount-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #e53e3e;
	color: #fff;
	font-size: 14px;
	font-weight: 900;
	padding: 6px 14px;
	border-radius: 8px;
	z-index: 3;
	letter-spacing: .03em;
}

.sp-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.sp-main-image:hover .sp-img {
	transform: scale(1.04);
}

.sp-no-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #fff3ea;
}

/* THUMBNAILS */
.sp-thumbnails {
	display: flex;
	gap: 10px;
	margin-top: 14px;
	flex-wrap: wrap;
}
.sp-thumb {
	width: 72px;
	height: 80px;
	border-radius: 10px;
	overflow: hidden;
	border: 2.5px solid transparent;
	background: #f5f5f7;
	padding: 0;
	cursor: pointer;
	transition: border-color .2s;
}
.sp-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sp-thumb.active,
.sp-thumb:hover {
	border-color: #ff6b35;
}

/* ══════════════════════════
   RIGHT — PRODUCT INFO
   ══════════════════════════ */
.sp-info {
	padding-top: 8px;
}

/* Category label */
.sp-cat-label {
	display: inline-block;
	background: #fff3ea;
	color: #ff6b35;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: .06em;
}

/* Title */
.sp-title {
	font-size: 28px;
	font-weight: 900;
	line-height: 1.25;
	color: #1a1a2e;
	margin-bottom: 22px;
}

/* ── PRICE BLOCK ── */
.sp-price-block {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 14px;
	padding-bottom: 22px;
	border-bottom: 1.5px solid #f0f0f5;
}
.sp-price-sale {
	font-size: 36px;
	font-weight: 900;
	color: #ff6b35;
	line-height: 1;
}
.sp-price-sale .woocommerce-Price-amount { font-size: inherit; color: inherit; font-weight: inherit; }

.sp-price-regular {
	font-size: 20px;
	color: #bbb;
	text-decoration: line-through;
}
.sp-price-regular .woocommerce-Price-amount { font-size: inherit; color: inherit; }

.sp-discount-pill {
	background: #fef2f2;
	color: #e53e3e;
	font-size: 13px;
	font-weight: 800;
	padding: 5px 13px;
	border-radius: 20px;
}

/* Savings */
.sp-savings {
	width: 100%;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 700;
	color: #166534;
	margin-top: 6px;
}
.sp-savings .woocommerce-Price-amount { font-size: inherit; color: inherit; }

/* Short description */
.sp-short-desc {
	font-size: 14px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 24px;
}

/* ══ BUY BUTTON ══ */
.sp-cta-wrap {
	margin-bottom: 28px;
}
.sp-buy-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	background: #ff6b35;
	color: #ffffff;
	font-size: 18px;
	font-weight: 900;
	padding: 18px 28px;
	border-radius: 14px;
	text-decoration: none;
	letter-spacing: .02em;
	transition: background .2s, transform .2s, box-shadow .2s;
	border: none;
}
.sp-buy-btn:hover {
	background: #e55a24;
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(255,107,53,.35);
}
.sp-redirect-note {
	font-size: 12px;
	color: #aaa;
	text-align: center;
	margin-top: 10px;
}

/* META BOX */
.sp-meta-box {
	background: #f9f9fb;
	border-radius: 14px;
	padding: 18px 20px;
}
.sp-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 9px 0;
	border-bottom: 1px solid #f0f0f5;
	font-size: 13px;
}
.sp-meta-row:last-child { border: none; padding-bottom: 0; }
.sp-meta-key { color: #aaa; font-weight: 500; }
.sp-meta-val { font-weight: 700; color: #1a1a2e; }
.sp-meta-val .woocommerce-Price-amount { font-size: inherit; }
.sp-green { color: #16a34a !important; }
.sp-red   { color: #e53e3e !important; }

/* FULL DESCRIPTION */
.sp-full-desc {
	padding: 40px 0;
	border-top: 1px solid #f0f0f5;
	margin-bottom: 50px;
}
.sp-full-desc h2 {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 18px;
	color: #1a1a2e;
}
.sp-full-desc p  { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.sp-full-desc ul { padding-left: 20px; }
.sp-full-desc li { font-size: 14px; color: #555; line-height: 1.9; }

/* RELATED PRODUCTS */
.sp-related {
	padding-top: 50px;
	border-top: 1px solid #f0f0f5;
}
.sp-related h2 {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 28px;
	color: #1a1a2e;
}

/* ══════════════════════════
   RESPONSIVE
   ══════════════════════════ */
@media (max-width: 900px) {
	.sp-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.sp-title { font-size: 22px; }
	.sp-price-sale { font-size: 28px; }
}

@media (max-width: 767px) {
	.sp-layout { gap: 24px; }
	.sp-title { font-size: 20px; }
	.sp-price-sale { font-size: 26px; }
	.sp-buy-btn { font-size: 16px; padding: 15px 20px; }
}



/* =============================================
   MANUAL PRODUCT RATING — IndioFit
   ============================================= */
.indiofit-rating-block {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.indiofit-rating-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #16a34a;
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	padding: 5px 12px;
	border-radius: 6px;
	letter-spacing: .02em;
}

.indiofit-rating-count {
	font-size: 13px;
	color: #888888;
	font-weight: 500;
}




/* =============================================
   ABOUT PAGE — Complete Styles
   ============================================= */

.about-page {
	padding: 60px 0 90px;
	background: #fafafa;
}

/* ── HERO ── */
.about-hero {
	max-width: 760px;
	margin: 0 auto 70px;
	text-align: center;
}
.about-hero .section-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #ff6b35;
	display: block;
	margin-bottom: 14px;
}
.about-hero h1 {
	font-size: 42px;
	font-weight: 900;
	color: #1a1a2e;
	line-height: 1.15;
	margin-bottom: 20px;
	letter-spacing: -.5px;
}
.about-lead {
	font-size: 17px;
	color: #4a4a68;
	line-height: 1.8;
}
.about-lead strong {
	color: #ff6b35;
}

/* ── HOW IT WORKS ── */
.about-how {
	text-align: center;
	margin-bottom: 70px;
}
.about-how h2 {
	font-size: 32px;
	font-weight: 800;
	color: #1a1a2e;
	margin-bottom: 10px;
}
.about-how-sub {
	font-size: 15px;
	color: #888;
	margin-bottom: 44px;
}
.how-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	text-align: left;
}
.how-step {
	background: #ffffff;
	border: 1.5px solid #f0f0f5;
	border-radius: 18px;
	padding: 32px 22px 28px;
	position: relative;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.how-step:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 36px rgba(0,0,0,.08);
	border-color: #ffd0b5;
}
.how-step-num {
	position: absolute;
	top: -14px;
	left: 22px;
	width: 30px;
	height: 30px;
	background: #ff6b35;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(255,107,53,.4);
}
.how-step-icon {
	font-size: 32px;
	margin: 14px 0 16px;
	display: block;
}
.how-step h3 {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 10px;
	line-height: 1.4;
}
.how-step p {
	font-size: 13px;
	color: #4a4a68;
	line-height: 1.7;
	margin: 0;
}

/* ── WHY CHOOSE US ── */
.about-why {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-bottom: 70px;
}
.about-why-card {
	background: #f5f5fb;
	border-radius: 18px;
	padding: 32px 26px;
	text-align: center;
	transition: transform .25s ease, box-shadow .25s ease;
	border: 2px solid transparent;
}
.about-why-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0,0,0,.08);
	background: #fff;
	border-color: #fff3ea;
}
.about-why-icon {
	font-size: 36px;
	display: block;
	margin-bottom: 16px;
}
.about-why-card h3 {
	font-size: 17px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 10px;
}
.about-why-card p {
	font-size: 14px;
	color: #4a4a68;
	line-height: 1.7;
	margin: 0;
}

/* ── STATS ── */
.about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	background: linear-gradient(135deg, #ff6b35, #ff9a6c);
	border-radius: 20px;
	padding: 44px 20px;
	margin-bottom: 70px;
	text-align: center;
}
.about-stat {
	position: relative;
	padding: 0 20px;
}
.about-stat:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 50px;
	background: rgba(255,255,255,.3);
}
.about-stat strong {
	display: block;
	font-size: 36px;
	font-weight: 900;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 8px;
}
.about-stat span {
	font-size: 13px;
	color: rgba(255,255,255,.85);
	font-weight: 600;
	letter-spacing: .03em;
}

/* ── PLATFORMS ── */
.about-platforms {
	text-align: center;
	margin-bottom: 70px;
}
.about-platforms h2 {
	font-size: 28px;
	font-weight: 800;
	color: #1a1a2e;
	margin-bottom: 10px;
}
.about-platforms-sub {
	font-size: 15px;
	color: #888;
	margin-bottom: 26px;
}
.about-platform-list {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}
.about-platform-tag {
	background: #ffffff;
	border: 2px solid #f0f0f5;
	color: #1a1a2e;
	font-weight: 700;
	font-size: 15px;
	padding: 12px 28px;
	border-radius: 50px;
	transition: all .22s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.about-platform-tag:hover {
	background: #fff3ea;
	border-color: #ff6b35;
	color: #ff6b35;
	transform: translateY(-2px);
}

/* ── CTA ── */
.about-cta {
	background: #1a1a2e;
	border-radius: 24px;
	padding: 60px 40px;
	text-align: center;
}
.about-cta h2 {
	font-size: 28px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
}
.about-cta-sub {
	font-size: 15px;
	color: rgba(255,255,255,.65);
	margin-bottom: 28px;
}
.about-cta .btn { margin: 0 6px; }
.about-cta .btn-outline {
	border-color: rgba(255,255,255,.5);
	color: #ffffff;
}
.about-cta .btn-outline:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #1a1a2e;
}

/* ── RESPONSIVE TABLET ── */
@media (max-width: 1024px) {
	.how-steps { grid-template-columns: repeat(2, 1fr); }
	.about-hero h1 { font-size: 34px; }
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 767px) {
	.about-page { padding: 40px 0 60px; }
	.about-hero { margin-bottom: 48px; }
	.about-hero h1 { font-size: 26px; }
	.about-lead { font-size: 15px; }
	.about-how h2 { font-size: 22px; }
	.how-steps { grid-template-columns: 1fr; gap: 28px; }
	.how-step { padding: 28px 20px 24px; }
	.about-why { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 48px; }
	.about-why-card { padding: 22px 14px; }
	.about-stats { grid-template-columns: repeat(2, 1fr); padding: 32px 16px; margin-bottom: 48px; }
	.about-stat:not(:last-child)::after { display: none; }
	.about-stat strong { font-size: 26px; }
	.about-platforms { margin-bottom: 48px; }
	.about-platforms h2 { font-size: 20px; }
	.about-platform-tag { padding: 10px 20px; font-size: 14px; }
	.about-cta { padding: 36px 20px; border-radius: 16px; }
	.about-cta h2 { font-size: 20px; }
	.about-cta .btn { display: block; width: 100%; margin: 8px 0; justify-content: center; }
}

@media (max-width: 480px) {
	.about-hero h1 { font-size: 22px; }
	.about-why { grid-template-columns: 1fr; }
}


/* About page overflow fix */
.about-page {
	overflow-x: hidden;
	width: 100%;
}
.about-page * {
	max-width: 100%;
}
.how-steps {
	overflow: hidden;
}