/* =========================================================
   SGL Techno — Main Stylesheet
   ========================================================= */

:root {
	--sgltechno-primary: #e8590c;
	--sgltechno-primary-dark: #c94a08;
	--sgltechno-dark: #14213d;
	--sgltechno-text: #1f2430;
	--sgltechno-muted: #6b7280;
	--sgltechno-border: #e6e8ec;
	--sgltechno-bg-soft: #f7f8fa;
	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;
	--radius: 10px;
	--container-width: 1240px;
}

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; }
body {
	font-family: var(--font-body);
	color: var(--sgltechno-text);
	margin: 0;
	line-height: 1.55;
	background: #fff;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; margin: 0 0 .5em; color: var(--sgltechno-dark); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}
.container-narrow { max-width: 820px; }

.section-heading { text-align: center; margin-bottom: 40px; }
.section-eyebrow {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--sgltechno-primary);
	margin-bottom: 8px;
}
.section-title {
	font-size: 30px;
	margin-bottom: 12px;
	position: relative;
}
.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	border-radius: 4px;
	background: var(--sgltechno-primary);
	margin: 14px auto 0;
}
.section-subtitle {
	font-size: 14.5px;
	color: var(--sgltechno-muted);
	max-width: 460px;
	margin: 0 auto;
}

.btn {
	display: inline-block;
	padding: 13px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	transition: all .18s ease;
	border: 2px solid transparent;
}
.btn-primary { background: var(--sgltechno-primary); color: #fff; }
.btn-primary:hover { background: var(--sgltechno-primary-dark); }
.btn-outline { border-color: var(--sgltechno-dark); color: var(--sgltechno-dark); }
.btn-outline:hover { background: var(--sgltechno-dark); color: #fff; }

/* ---------- Announcement Bar ---------- */
.announcement-bar {
	background: var(--sgltechno-dark);
	color: #fff;
}
.announcement-bar p {
	margin: 0;
	padding: 9px 0;
	text-align: center;
	font-size: 13px;
	letter-spacing: .2px;
}

/* ---------- Header ---------- */
.site-header {
	border-bottom: 1px solid var(--sgltechno-border);
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 100;
}
.header-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 16px 20px;
}
.site-branding img { max-height: 52px; width: auto; }
.site-title-link { font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: var(--sgltechno-dark); }

.main-navigation { flex: 1; }
.primary-menu { display: flex; gap: 26px; flex-wrap: wrap; }
.primary-menu > li { position: relative; }
.primary-menu > li > a {
	font-weight: 500;
	font-size: 15px;
	padding: 8px 0;
	display: inline-block;
}
.primary-menu > li > a:hover { color: var(--sgltechno-primary); }
.primary-menu .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	background: #fff;
	border: 1px solid var(--sgltechno-border);
	border-radius: var(--radius);
	min-width: 220px;
	padding: 10px 0;
	box-shadow: 0 12px 28px rgba(0,0,0,.08);
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: all .15s ease;
}
.primary-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-menu .sub-menu li a { display: block; padding: 8px 18px; font-size: 14px; }
.primary-menu .sub-menu li a:hover { background: var(--sgltechno-bg-soft); color: var(--sgltechno-primary); }

/* Highlighted Business/B2B nav item */
.nav-cta-item { display: flex; align-items: center; }
.primary-menu .nav-cta {
	background: var(--sgltechno-primary); color: #fff !important;
	padding: 8px 18px !important; border-radius: 999px;
	font-size: 13.5px !important; font-weight: 600;
}
.primary-menu .nav-cta:hover { background: var(--sgltechno-primary-dark); color: #fff !important; }

/* Mega-menu grouping: in Appearance > Menus (enable "CSS Classes" under
   Screen Options), add class "mega-menu" to a top-level item (e.g. "Shop")
   and class "mega-heading" to any sub-items that should act as non-clickable
   group labels (e.g. "PC Components", "Peripherals & Accessories"). Items
   between headings flow underneath them, two per column. */
.primary-menu .sub-menu.mega-menu,
.primary-menu li.mega-menu .sub-menu {
	column-count: 2;
	column-gap: 32px;
	min-width: 440px;
	padding: 20px 24px;
}
.primary-menu li.mega-menu .sub-menu li { break-inside: avoid; }
.primary-menu li.mega-menu .sub-menu li.mega-heading {
	break-before: column;
	margin-top: 4px;
}
.primary-menu li.mega-menu .sub-menu li.mega-heading:first-child { break-before: avoid; }
.primary-menu li.mega-menu .sub-menu li.mega-heading > a,
.primary-menu li.mega-menu .sub-menu li.mega-heading > span {
	font-size: 12px; text-transform: uppercase; letter-spacing: .6px;
	font-weight: 700; color: var(--sgltechno-primary);
	pointer-events: none; padding-bottom: 4px;
}

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions button, .header-actions a {
	position: relative;
	width: 40px; height: 40px;
	display: flex; align-items: center; justify-content: center;
	border: none; background: transparent;
	color: var(--sgltechno-dark);
}
.header-actions svg { width: 22px; height: 22px; }
.header-cart .cart-count {
	position: absolute; top: 2px; right: 2px;
	background: var(--sgltechno-primary); color: #fff;
	font-size: 10px; font-weight: 700;
	width: 16px; height: 16px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}

.header-search-panel { max-height: 0; overflow: hidden; transition: max-height .2s ease; border-top: 1px solid transparent; }
.header-search-panel.is-open { max-height: 90px; border-top-color: var(--sgltechno-border); padding: 14px 0; }
.search-form { display: flex; max-width: 500px; }
.search-form input {
	flex: 1; padding: 10px 14px; border: 1px solid var(--sgltechno-border);
	border-radius: 8px 0 0 8px; font-size: 14px;
}
.search-form button {
	background: var(--sgltechno-dark); color: #fff; border: none;
	padding: 0 16px; border-radius: 0 8px 8px 0;
}

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.mobile-menu-toggle span { width: 22px; height: 2px; background: var(--sgltechno-dark); display: block; }
.mobile-menu-panel { display: none; }

/* ---------- Hero ---------- */
.hero-banner {
	background: linear-gradient(120deg, var(--sgltechno-dark), #1f2d54);
	background-size: cover;
	background-position: center;
	color: #fff;
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}
.hero-banner::before {
	content: '';
	position: absolute;
	top: -120px; right: -80px;
	width: 380px; height: 380px;
	background: radial-gradient(circle, rgba(232,89,12,.35), transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.hero-banner::after {
	content: '';
	position: absolute;
	bottom: -140px; left: -100px;
	width: 340px; height: 340px;
	background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.hero-inner {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	align-items: center;
	gap: 40px;
	text-align: left;
}
.hero-text h1 { color: #fff; font-size: 42px; line-height: 1.22; margin-bottom: 16px; }
.hero-text p { font-size: 17px; opacity: .9; max-width: 480px; margin-bottom: 30px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-hero { display: inline-flex; align-items: center; gap: 10px; }
.btn-hero svg { width: 18px; height: 18px; transition: transform .18s ease; }
.btn-hero:hover svg { transform: translateX(5px); }
.btn-hero-secondary {
	display: inline-flex; align-items: center;
	padding: 13px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
	border: 2px solid rgba(255,255,255,.5); color: #fff;
}
.btn-hero-secondary:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-visual-img { max-height: 340px; margin: 0 auto; filter: drop-shadow(0 25px 40px rgba(0,0,0,.35)); }
.hero-visual-graphic {
	position: relative;
	width: 260px; height: 260px;
	display: flex; align-items: center; justify-content: center;
}
.hero-orbit {
	position: absolute;
	border: 1.5px dashed rgba(255,255,255,.25);
	border-radius: 50%;
}
.hero-orbit-1 { width: 260px; height: 260px; animation: sgltechno-spin 18s linear infinite; }
.hero-orbit-2 { width: 190px; height: 190px; animation: sgltechno-spin 12s linear infinite reverse; }
.hero-chip {
	width: 110px; height: 110px;
	background: linear-gradient(145deg, var(--sgltechno-primary), #ff8a3d);
	border-radius: 18px;
	box-shadow: 0 20px 40px rgba(232,89,12,.4);
	position: relative;
}
.hero-chip::before {
	content: '';
	position: absolute; inset: 18px;
	border: 2px solid rgba(255,255,255,.5);
	border-radius: 10px;
}

@keyframes sgltechno-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Entrance animation for hero content */
@keyframes sgltechno-fade-up {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}
.anim-in { animation: sgltechno-fade-up .6s ease both; }
.anim-delay-1 { animation-delay: .05s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .35s; }

.btn { transition: all .18s ease; }
.btn-primary {
	background: var(--sgltechno-primary); color: #fff;
	box-shadow: 0 10px 24px rgba(232,89,12,.35);
}
.btn-primary:hover { background: var(--sgltechno-primary-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(232,89,12,.45); }

/* ---------- Trust Badges ---------- */
.trust-badges { padding: 40px 0; border-bottom: 1px solid var(--sgltechno-border); }
.badges-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.badge-item { display: flex; align-items: center; gap: 14px; }
.badge-icon {
	width: 46px; height: 46px; flex-shrink: 0;
	background: var(--sgltechno-bg-soft);
	color: var(--sgltechno-primary);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.badge-icon svg { width: 24px; height: 24px; }
.badge-copy { display: flex; flex-direction: column; }
.badge-copy strong { font-size: 14.5px; color: var(--sgltechno-dark); }
.badge-copy small { color: var(--sgltechno-muted); font-size: 13px; }

/* ---------- Shop by Category ---------- */
.shop-by-category { padding: 60px 0; background: var(--sgltechno-bg-soft); }
.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 22px;
}
.category-card {
	background: #fff;
	border-radius: var(--radius);
	padding: 22px 14px;
	text-align: center;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
	border: 1px solid var(--sgltechno-border);
	border-top: 3px solid transparent;
}
.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 32px rgba(20,33,61,.10);
	border-top-color: var(--sgltechno-primary);
}
.category-image { display: flex; align-items: center; justify-content: center; height: 118px; margin-bottom: 14px; }
.category-image img { max-height: 118px; object-fit: contain; margin: 0 auto; }
.category-image-placeholder {
	width: 76px; height: 76px; border-radius: 50%;
	background: var(--sgltechno-primary); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 26px; font-weight: 700;
}
.category-name { font-size: 14px; font-weight: 500; }

/* ---------- Product Grid / Cards (WooCommerce) ---------- */
/* WooCommerce's own frontend stylesheet sets float + width with !important
   on li.product, which fights our CSS grid. We override all of it here
   with matching or higher specificity so the grid actually holds. */
.woocommerce ul.products,
.woocommerce-page ul.products,
ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr) !important;
	gap: 22px !important;
	margin: 0 !important;
	padding: 0 !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
ul.products li.product {
	list-style: none;
	background: #fff;
	border: 1px solid var(--sgltechno-border);
	border-radius: var(--radius);
	padding: 18px;
	text-align: center;
	transition: box-shadow .15s ease, transform .15s ease;
	position: relative;
	/* Reset WooCommerce defaults that break grid layout */
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	clear: none !important;
}
.woocommerce ul.products li.product:hover,
ul.products li.product:hover { box-shadow: 0 16px 32px rgba(20,33,61,.10); transform: translateY(-3px); }
.woocommerce ul.products li.product img,
ul.products li.product img {
	width: 100% !important;
	height: auto !important;
	border-radius: 6px;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	margin-bottom: 12px;
}
.woocommerce ul.products li.product .onsale,
ul.products li.product .onsale {
	position: absolute; top: 12px; right: 12px; left: auto;
	background: var(--sgltechno-primary); color: #fff;
	font-size: 11px !important; font-weight: 700;
	text-transform: uppercase; letter-spacing: .3px;
	padding: 3px 9px !important; border-radius: 999px;
	min-width: 0 !important; height: auto !important; line-height: 1.5 !important;
	margin: 0 !important;
	box-shadow: 0 3px 8px rgba(232,89,12,.35);
	z-index: 2;
}
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product h2,
ul.products li.product .woocommerce-loop-product__title {
	font-size: 14.5px; font-weight: 500; margin: 6px 0 !important;
	color: var(--sgltechno-text);
}
.woocommerce ul.products li.product .price,
ul.products li.product .price {
	font-weight: 700; color: var(--sgltechno-primary); font-size: 15px;
}
.woocommerce ul.products li.product .price del,
ul.products li.product .price del { color: var(--sgltechno-muted); font-weight: 400; margin-right: 6px; }
.woocommerce ul.products li.product .button,
ul.products li.product .button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	white-space: nowrap !important;
	margin-top: 10px !important;
	background: var(--sgltechno-dark); color: #fff;
	padding: 9px 20px !important;
	border-radius: 999px !important;
	font-size: 13px; font-weight: 600;
	width: auto !important;
	height: auto !important;
	line-height: 1.4 !important;
	min-width: 0 !important;
	max-width: none !important;
	text-indent: 0 !important;
	overflow: visible !important;
}
.woocommerce ul.products li.product .button:hover,
ul.products li.product .button:hover { background: var(--sgltechno-primary); }
.woocommerce ul.products li.product .star-rating,
ul.products li.product .star-rating { margin: 4px auto !important; float: none !important; min-height: 16px; }
.star-rating-placeholder { min-height: 16px; }

/* ---------- Brand Logos ---------- */
.brand-logos { padding: 36px 0; border-bottom: 1px solid var(--sgltechno-border); }
.brand-logos-label {
	text-align: center; font-size: 12.5px; text-transform: uppercase;
	letter-spacing: 1.2px; color: var(--sgltechno-muted); margin-bottom: 22px;
}
.brand-logos-row {
	display: flex; align-items: center; justify-content: center;
	flex-wrap: wrap; gap: 44px;
}
.brand-logo-item img { max-height: 34px; max-width: 120px; object-fit: contain; filter: grayscale(1); opacity: .7; transition: all .2s ease; }
.brand-logo-item:hover img { filter: grayscale(0); opacity: 1; }

/* ---------- Comparison Slider ---------- */
.comparison-section { padding: 60px 0; background: var(--sgltechno-bg-soft); }
.comparison-slider {
	position: relative;
	max-width: 800px; margin: 0 auto;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(20,33,61,.12);
}
.comparison-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.comparison-img-after { clip-path: inset(0 50% 0 0); }
.comparison-label {
	position: absolute; bottom: 16px;
	background: rgba(20,33,61,.75); color: #fff;
	font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px;
	pointer-events: none;
}
.comparison-label-left { left: 16px; }
.comparison-label-right { right: 16px; }
.comparison-range {
	position: absolute; top: 0; left: 0; width: 100%; height: 100%;
	margin: 0; opacity: 0; cursor: ew-resize;
	-webkit-appearance: none; appearance: none;
}
.comparison-handle {
	position: absolute; top: 50%; left: 50%;
	width: 40px; height: 40px; border-radius: 50%;
	background: #fff; color: var(--sgltechno-dark);
	display: flex; align-items: center; justify-content: center;
	transform: translate(-50%, -50%);
	box-shadow: 0 6px 16px rgba(0,0,0,.25);
	pointer-events: none;
}
.comparison-handle svg { width: 18px; height: 18px; }
.comparison-slider::after {
	content: '';
	position: absolute; top: 0; left: 50%;
	width: 3px; height: 100%; background: #fff;
	transform: translateX(-50%);
	pointer-events: none;
}

/* ---------- Closing Statement + Store Locations ---------- */
.closing-section { padding: 70px 0; background: linear-gradient(160deg, var(--sgltechno-dark), #1c2b52); color: #fff; }
.closing-statement { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.closing-statement h2 { color: #fff; font-size: 30px; margin-bottom: 12px; }
.closing-statement p { opacity: .85; margin-bottom: 26px; font-size: 15.5px; }
.store-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}
.store-card {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--radius);
	padding: 22px;
}
.store-card h3 { color: #fff; font-size: 16px; margin-bottom: 10px; }
.store-address, .store-phone { font-size: 13.5px; opacity: .85; margin: 0 0 8px; }
.store-phone a { color: #fff; text-decoration: underline; }
.store-card .btn-outline { border-color: rgba(255,255,255,.4); color: #fff; margin-top: 8px; }
.store-card .btn-outline:hover { background: #fff; color: var(--sgltechno-dark); }
.btn-small { padding: 8px 18px; font-size: 13px; }

/* ---------- Business / PC Builder landing pages ---------- */
.business-hero {
	background: linear-gradient(120deg, var(--sgltechno-dark), #1f2d54);
	color: #fff; text-align: center; padding: 70px 0;
}
.business-hero h1 { color: #fff; font-size: 34px; margin: 10px 0 14px; }
.business-hero-sub { max-width: 560px; margin: 0 auto; opacity: .9; font-size: 15.5px; }
.business-content { padding: 60px 0; }
.business-perks {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px;
	margin-bottom: 50px;
}
.business-perk { padding: 22px; border: 1px solid var(--sgltechno-border); border-radius: var(--radius); }
.business-perk h3 { font-size: 16px; margin-bottom: 8px; color: var(--sgltechno-primary); }
.business-perk p { font-size: 14.5px; color: var(--sgltechno-muted); margin: 0; }
.business-cta { text-align: center; background: var(--sgltechno-bg-soft); padding: 40px; border-radius: var(--radius); }
.business-cta h2 { font-size: 22px; margin-bottom: 10px; }
.business-cta p { color: var(--sgltechno-muted); margin-bottom: 22px; }
.business-cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.builder-steps { margin-bottom: 50px; }
.builder-step { display: flex; gap: 18px; margin-bottom: 26px; align-items: flex-start; }
.builder-step-num {
	width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
	background: var(--sgltechno-primary); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 14px;
}
.builder-step h3 { font-size: 16px; margin-bottom: 4px; }
.builder-step p { font-size: 14.5px; color: var(--sgltechno-muted); margin: 0; }

/* YITH Wishlist button cleanup — icon only, centered, no wrapping text stack */
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist,
ul.products li.product .yith-wcwl-add-to-wishlist {
	margin-top: 8px !important;
	display: flex !important;
	justify-content: center;
}
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .feedback,
ul.products li.product .yith-wcwl-add-to-wishlist .feedback { display: none !important; }
.woocommerce ul.products li.product a.add_to_wishlist,
ul.products li.product a.add_to_wishlist {
	font-size: 12px !important;
	color: var(--sgltechno-muted) !important;
	white-space: nowrap;
}
.woocommerce ul.products li.product a.add_to_wishlist:hover,
ul.products li.product a.add_to_wishlist:hover { color: var(--sgltechno-primary) !important; }

.best-sellers, .woocommerce-page-wrap { padding: 60px 0; }
.section-cta { text-align: center; margin-top: 34px; }

/* ---------- Shop / Category Layout ---------- */
.woocommerce-page-title.page-title { font-size: 26px; margin: 20px 0; }
.woocommerce-breadcrumb { font-size: 13px; color: var(--sgltechno-muted); margin: 20px 0 0; }
.woocommerce-breadcrumb a { color: var(--sgltechno-muted); }
.woocommerce-breadcrumb a:hover { color: var(--sgltechno-primary); }

.category-banner {
	display: flex; align-items: center; gap: 24px;
	background: var(--sgltechno-bg-soft);
	border-radius: var(--radius);
	padding: 24px; margin: 20px 0 30px;
}
.category-banner-img { width: 110px; height: 110px; object-fit: contain; background: #fff; border-radius: 10px; padding: 10px; flex-shrink: 0; }
.category-banner-desc { font-size: 14px; color: var(--sgltechno-muted); margin-top: 6px; }
.category-banner-desc p { margin: 0; }

.shop-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 34px;
	align-items: start;
	margin-top: 10px;
}
.shop-sidebar-col {
	background: var(--sgltechno-bg-soft);
	border-radius: var(--radius);
	padding: 22px;
	position: sticky;
	top: 90px;
}
.shop-widget-title, .shop-sidebar-col h2, .shop-sidebar-col h3, .shop-sidebar-col h4 {
	font-size: 14px; text-transform: uppercase; letter-spacing: .4px;
	margin-bottom: 14px; color: var(--sgltechno-dark);
	border-bottom: 2px solid var(--sgltechno-border); padding-bottom: 10px;
}
.shop-widget { margin-bottom: 28px; }
.shop-widget:last-child { margin-bottom: 0; }
.shop-sidebar-col ul { list-style: none; margin: 0; padding: 0; }
.shop-sidebar-col ul li { margin-bottom: 8px; }
.shop-sidebar-col ul li a {
	font-size: 14px; color: var(--sgltechno-text);
	display: flex; justify-content: space-between;
}
.shop-sidebar-col ul li a:hover { color: var(--sgltechno-primary); }
.shop-sidebar-col .price_slider_wrapper { margin-top: 6px; }
.shop-sidebar-col .price_slider_amount { font-size: 13px; margin-top: 12px; }
.shop-sidebar-col .price_slider_amount .button {
	float: none; display: block; width: 100%; text-align: center;
	background: var(--sgltechno-dark); color: #fff; border-radius: 999px;
	padding: 8px 0; margin-top: 10px; font-size: 13px;
}
.shop-sidebar-col .ui-slider .ui-slider-range { background: var(--sgltechno-primary); }
.shop-sidebar-col .ui-slider .ui-slider-handle { background: var(--sgltechno-primary); border: none; }
.shop-sidebar-col .search-form input { width: 100%; }

.woocommerce-ordering, .woocommerce-result-count { font-size: 13px; color: var(--sgltechno-muted); }
.woocommerce-ordering select {
	padding: 7px 12px; border-radius: 6px; border: 1px solid var(--sgltechno-border); font-size: 13px;
}
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info { border-top-color: var(--sgltechno-primary); }

/* ---------- Single Product Page ---------- */
.woocommerce div.product .images { border-radius: var(--radius); overflow: hidden; }
.woocommerce div.product .summary {
	padding-left: 10px;
}
.woocommerce div.product .product_title { font-size: 26px; margin-bottom: 8px; }
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--sgltechno-primary); font-size: 24px; font-weight: 700;
}
.woocommerce div.product p.price del { color: var(--sgltechno-muted); font-size: 16px; font-weight: 400; margin-right: 8px; }
.woocommerce div.product .woocommerce-product-rating { margin-bottom: 16px; }
.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--sgltechno-muted); font-size: 14.5px; margin: 16px 0; line-height: 1.7;
}
.woocommerce div.product form.cart {
	display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
	margin: 20px 0;
}
.woocommerce div.product form.cart .quantity { margin: 0; }
.woocommerce div.product form.cart .quantity input {
	width: 70px; padding: 11px 10px; border: 1px solid var(--sgltechno-border); border-radius: 8px; text-align: center;
}
.woocommerce div.product form.cart button.single_add_to_cart_button {
	background: var(--sgltechno-dark); color: #fff;
	padding: 13px 30px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
	border: none;
}
.woocommerce div.product form.cart button.single_add_to_cart_button:hover { background: var(--sgltechno-primary); }
.btn-buynow {
	display: inline-block;
	background: var(--sgltechno-primary); color: #fff !important;
	padding: 13px 30px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
	box-shadow: 0 10px 20px rgba(232,89,12,.3);
}
.btn-buynow:hover { background: var(--sgltechno-primary-dark); transform: translateY(-2px); }

.single-product-wishlist { margin: 6px 0 0; }
.single-product-wishlist a { font-size: 13.5px; color: var(--sgltechno-muted); display: inline-flex; align-items: center; gap: 6px; }
.single-product-wishlist a:hover { color: var(--sgltechno-primary); }

.single-product-share {
	display: flex; align-items: center; gap: 12px;
	margin-top: 18px; padding-top: 18px;
	border-top: 1px solid var(--sgltechno-border);
}
.single-product-share .share-label { font-size: 13px; color: var(--sgltechno-muted); font-weight: 600; }
.single-product-share a {
	width: 34px; height: 34px; border-radius: 50%;
	background: var(--sgltechno-bg-soft);
	display: flex; align-items: center; justify-content: center;
	color: var(--sgltechno-dark);
}
.single-product-share a:hover { background: var(--sgltechno-primary); color: #fff; }
.single-product-share svg { width: 16px; height: 16px; }

.woocommerce div.product .woocommerce-tabs { margin-top: 40px; }
.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex; gap: 6px; border-bottom: 1px solid var(--sgltechno-border); padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	list-style: none; margin: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block; padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--sgltechno-muted);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--sgltechno-primary); border-bottom: 2px solid var(--sgltechno-primary); }
.woocommerce div.product .woocommerce-tabs .panel { padding: 24px 0; font-size: 14.5px; color: var(--sgltechno-text); line-height: 1.7; }

/* ---------- FAQ Accordion (native <details>, no JS needed) ---------- */
.homepage-faq { padding: 60px 0; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-accordion details {
	border: 1px solid var(--sgltechno-border);
	border-radius: 8px;
	margin-bottom: 12px;
	padding: 16px 20px;
}
.faq-accordion details summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 15.5px;
	color: var(--sgltechno-dark);
	list-style: none;
}
.faq-accordion details summary::-webkit-details-marker { display: none; }
.faq-accordion details summary::after { content: '+'; float: right; font-size: 20px; color: var(--sgltechno-primary); }
.faq-accordion details[open] summary::after { content: '−'; }
.faq-accordion details p { margin: 12px 0 0; color: var(--sgltechno-muted); font-size: 14.5px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--sgltechno-dark); color: #d8dce6; padding: 60px 0 0; margin-top: 20px; }
.footer-columns {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
	padding-bottom: 40px;
}
.footer-widget-title, .footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer-col a { color: #b8bfd1; font-size: 14px; line-height: 2; }
.footer-col a:hover { color: #fff; }
.footer-site-name { color: #fff; font-size: 20px; font-weight: 700; }
.footer-address { font-size: 14px; opacity: .85; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
	width: 34px; height: 34px; border-radius: 50%;
	background: rgba(255,255,255,.08);
	display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
	display: flex; justify-content: space-between; align-items: center;
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 20px 0; font-size: 13px; flex-wrap: wrap; gap: 10px;
}
.footer-payments { display: flex; gap: 10px; }
.payment-badge {
	background: rgba(255,255,255,.08);
	padding: 5px 10px; border-radius: 4px; font-size: 12px;
}

/* ---------- Blog / Page templates ---------- */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding: 50px 0; }
.post-card { border: 1px solid var(--sgltechno-border); border-radius: var(--radius); overflow: hidden; }
.post-card-thumb img { aspect-ratio: 16/10; object-fit: cover; }
.post-card-title, .post-card-excerpt { padding: 0 16px; }
.post-card-title { margin-top: 12px; font-size: 16px; }
.post-card-excerpt { padding-bottom: 16px; font-size: 14px; color: var(--sgltechno-muted); }
.page-content-block { padding: 50px 0; }
.page-title { font-size: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
	.badges-grid { grid-template-columns: repeat(2, 1fr); }
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	ul.products { grid-template-columns: repeat(2, 1fr) !important; }
	.footer-columns { grid-template-columns: 1fr 1fr; }
	.posts-grid { grid-template-columns: repeat(2, 1fr); }
	.hero-inner { grid-template-columns: 1fr; text-align: center; }
	.hero-text p { margin-left: auto; margin-right: auto; }
	.hero-visual { order: -1; }
	.hero-visual-img { max-height: 220px; }
	.shop-layout { grid-template-columns: 1fr; }
	.shop-sidebar-col { position: static; }
	.woocommerce div.product .summary { padding-left: 0; margin-top: 24px; }
}

@media (max-width: 768px) {
	.main-navigation, .header-search-toggle { display: none; }
	.mobile-menu-toggle { display: flex; }
	.mobile-menu-panel {
		display: block;
		max-height: 0; overflow: hidden; transition: max-height .2s ease;
		background: #fff; border-top: 1px solid var(--sgltechno-border);
	}
	.mobile-menu-panel.is-open { max-height: 600px; }
	.mobile-menu li a { display: block; padding: 12px 20px; border-bottom: 1px solid var(--sgltechno-border); }
	.hero-inner h1, .hero-text h1 { font-size: 28px; }
	.hero-banner { padding: 60px 0; }
	.badges-grid { grid-template-columns: 1fr; }
	.category-banner { flex-direction: column; text-align: center; }
	.business-perks { grid-template-columns: 1fr; }
	.primary-menu .sub-menu.mega-menu,
	.primary-menu li.mega-menu .sub-menu { column-count: 1; min-width: 220px; }
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
	.footer-columns { grid-template-columns: 1fr; }
	.posts-grid { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products,
	ul.products { grid-template-columns: 1fr !important; }
}
