/* landing.css  */

:root {
	--bg: #ffffff;
	--text: #0b1220;
	--muted: #595f6a;
	--muted2: #808893;
	--line: #e7ebf0;

	--primary: #16a34a;
	--primary-2: #22c55e;
	--primary-ink: #0f6a2f;

	--card: #ffffff;
	--soft: #f6f8fb;

	--radius: 18px;
	--shadow: 0 10px 30px rgba(11, 18, 32, 0.08);
	--shadow2: 0 8px 22px rgba(11, 18, 32, 0.08);

	--container: 1120px;
}

/* -------------------------
   Global / Reset (landing page)
-------------------------- */
img,
svg {
	display: block;
}

button {
	font: inherit;
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Remove browser search clear button */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	-webkit-appearance: none;
	display: none;
}

input[type="search"] {
	appearance: none;
}

.noDisplay {
	display: none;
	visibility: hidden
}

/* -------------------------
   Navbar search + cart
-------------------------- */
.cart-btn {
	position: relative;
}

.cart-badge {
	display: flex;
	min-width: 18px;
	height: 18px;
	padding: 0 6px;
	border-radius: 999px;
	font-size: 12px;
	line-height: 18px;
	font-weight: 700;
	background: var(--primary);
	color: #fff;
	text-align: center;
	position: absolute;
	right: 0;
	top: 2px;
}

/* Search UI */
.nav-search {
	display: flex;
	align-items: center;
	position: relative;
}

.nav-search:not(.is-open) #openSearchBtn {
	display: grid;
}

.nav-search.is-open #openSearchBtn {
	display: none;
}

.search-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 42px;
	padding: 0 10px 0 12px;
	border-radius: 999px;
	border: 2px solid rgba(22, 163, 74, 0.95);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 10px 25px rgba(11, 18, 32, 0.08);

	width: 0;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
	transform: translateY(-1px);
	transition: width .22s ease, opacity .15s ease;
}

.nav-search.is-open .search-pill {
	width: min(420px, 52vw);
	opacity: 1;
	pointer-events: auto;
}

.search-ico,
.search-close,
#openSearchBtn,
#closeSearchBtn,
#searchGoBtn {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	cursor: pointer;
}

.search-ico,
.search-close {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 10px;
}

.search-ico svg,
.search-close svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.search-ico svg {
	stroke: #595f6a;
}

.search-close svg {
	stroke: #808893;
}

.search-close:hover svg {
	stroke: #111827;
}

.search-input {
	border: 0;
	outline: none;
	height: 38px;
	flex: 1;
	min-width: 120px;
	font-size: 14px;
	background: transparent;
	color: var(--text);
}

.search-input::placeholder {
	color: #808893;
}

@media (max-width: 560px) {
	.nav-search.is-open .search-pill {
		width: min(65vw, 420px);
	}
}

/* -------------------------
   Sections
-------------------------- */
.section {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.section-title {
	font-size: 44px;
	letter-spacing: -0.02em;
	margin: 0 0 22px;
	font-weight: 600;
}

.section-title.center {
	text-align: center;
	font-size: 1.875rem;
	line-height: 2.25rem;
	margin-bottom: 4rem;
	margin-top: 4rem;
}

.section-subtitle {
	margin: -10px 0 0;
	color: var(--muted);
	font-size: 16px;
}

.section-subtitle.center {
	text-align: center;
	font-size: 1.25rem;
	line-height: 1.75rem;
	font-weight: 300;
}

@media (max-width: 980px) {
	.section-title {
		font-size: 38px;
	}
}

/* -------------------------
   Store grid
-------------------------- */
.store {
	padding-top: 40px;
}

.store-grid {
	margin-top: 48px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 56px 64px;
	justify-items: center;
	align-items: start;
}

.store-item {
	width: 100%;
	display: flex;
	justify-content: center;
}

.store-card {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0;
	width: 100%;
	max-width: 240px;
	text-align: center;
	cursor: pointer;
	display: grid;
	justify-content: center;
}

.store-icon {
	width: 140px;
	height: 140px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: #f6f7f9;
	border: 1px solid rgba(11, 18, 32, 0.04);
	transition: transform .18s ease, box-shadow .18s ease;
}

.store-icon svg {
	width: 44px;
	height: 44px;
	stroke: #9ca3af;
	fill: none;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke .18s ease;
}

.store-label {
	display: block;
	margin-top: 18px;
	font-size: 16px;
	font-weight: 500;
	color: #0f172a;
	transition: color .18s ease;
}

.store-card:hover .store-icon,
.store-card:focus-visible .store-icon {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.store-card:hover .store-icon svg,
.store-card:focus-visible .store-icon svg {
	stroke: var(--primary);
}

.store-card:hover .store-label,
.store-card:focus-visible .store-label {
	color: var(--primary);
}

.store-card:focus-visible {
	outline: none;
}

.store-card:focus-visible .store-icon {
	box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18),
		0 10px 28px rgba(15, 23, 42, 0.08);
}

@media (max-width: 1024px) {
	.store-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 48px 36px;
	}
}

@media (max-width: 768px) {
	.store-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 28px;
	}
}

/* -------------------------
   Why Choose Us
-------------------------- */
.why-grid {
	margin-top: 46px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px 26px;
}

.why-card {
	text-align: center;
	padding: 8px 10px;
}

.why-icon {
	margin: 0 auto 14px;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: #f4f6f9;
	display: grid;
	place-items: center;
}

.why-icon svg {
	width: 22px;
	height: 22px;
	stroke: #111827;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.9;
}

.why-title {
	margin: 8px 0 6px;
	font-size: 18px;
	font-weight: 500;
}

.why-text {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.625;
	font-weight: 300;
}

@media (max-width: 980px) {
	.why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.why-grid {
		grid-template-columns: 1fr;
	}
}

.solarTextDiv {
	display: grid;
	gap: 15px;
}

/* -------------------------
   System Design (scoped B/W block retained)
-------------------------- */
#system-design.system-bw {
	background: #fff;
	position: relative;
}

#system-design.system-bw::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
	background-size: 42px 42px;
	pointer-events: none;
	opacity: 0.35;
}

#system-design.system-bw .system-head {
	text-align: center;
	margin-bottom: 28px;
}

#system-design.system-bw .system-subtitle {
	margin: 10px auto 0;
	max-width: 720px;
	color: #a8acb4;
	font-weight: 400;
}

#system-design.system-bw .system-timeline {
	padding: 0;
	margin: 26px auto 0;
	display: grid;
	gap: 14px;
	max-width: 880px;
}

#system-design.system-bw .system-step {
	display: flex;
	gap: 14px;
	align-items: stretch;
	border-bottom: 2px solid #e8e8e8;
}

#system-design.system-bw .system-card {
	background: #fff;
	padding: 16px 16px 14px;
}

#system-design.system-bw .system-top {
	display: grid;
	grid-template-columns: auto auto 1fr;
	gap: 12px;
	align-items: center;
	margin-bottom: 10px;
}

#system-design.system-bw .system-num {
	font-weight: bold;
	letter-spacing: 0.12em;
	font-size: 12px;
	color: #d1d5db;
	font-size: .875rem;
	line-height: 1.25rem;
	padding: 6px 10px;
}

#system-design.system-bw .system-icon {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
}

#system-design.system-bw .system-icon svg {
	width: 18px;
	height: 18px;
	color: #111;
}

#system-design.system-bw .system-h {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	color: #0b0b0b;
}

#system-design.system-bw .system-p {
	margin: 0;
	color: #858a96;
	line-height: 1.55;
}

#system-design.system-bw .system-meta {
	margin-top: 12px;
	padding-top: 12px;
	display: flex;
	gap: 10px;
	align-items: baseline;
	color: #595f6a;
	font-size: 13px;
}

#system-design.system-bw .system-chip {
	flex: 0 0 auto;
	color: #d1d5db;
	font-weight: 800;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 8px;
	border-radius: 999px;
	background: #fff;
}

@media (max-width: 640px) {
	#system-design.system-bw .system-step {
		gap: 10px;
	}

	#system-design.system-bw .system-card {
		padding: 14px;
		border-radius: 16px;
	}

	#system-design.system-bw .system-top {
		gap: 10px;
	}
}

/* -------------------------
   About
-------------------------- */
.about {
	padding-bottom: 94px;
}

.about-narrow {
	max-width: 900px;
}

.about-lead,
.about-sub {
	text-align: center;
	color: var(--muted);
	max-width: 760px;
	margin: 10px auto 8px;
	font-size: 15px;
	line-height: 1.625;
	font-weight: 300;
}

.about-icons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 18px;
	gap: 30px;
	/* Mobile default */
}

@media (min-width: 768px) {
	.about-icons {
		gap: 50px;
		/* PC */
	}
}


.about-icon {
	display: grid;
	justify-items: center;
	gap: 10px;
	min-width: 140px;
}

.about-icon-circle {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
}

.about-icon-circle svg {
	width: 2rem;
	height: 2rem;
	stroke: #111827;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.9;
}

.about-icon-label {
	color: #111827;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
}

.about-cta {
	margin-top: 8rem;
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* -------------------------
   Footer (dark only; contrast-safe)
-------------------------- */
footer#contact {
	background: #f5f5f580;
	color: #595f6a;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}

footer#contact a {
	color: rgba(248, 250, 252, 0.86);
	transition: color 200ms ease;
}

footer#contact a:hover {
	color: var(--primary-2);
}

.footer-logo {
	width: 55px;
	height: 55px;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: flex-start;
	align-items: center;
	max-width: 240px;
}

.footer-social .social-icon {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: #e6e6e680;
	border: 1px solid rgba(255, 255, 255, 0.12);
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-social .social-icon:hover {
	transform: translateY(-1px);
	background: rgba(34, 197, 94, 0.14);
	border-color: rgba(34, 197, 94, 0.35);
}

.footer-social .social-icon svg {
	width: 18px;
	height: 18px;
	stroke: #808893;
	fill: none;
}

.footer-dev {
	margin-top: 14px;
	font-size: 12px;
	text-align: center;
	color: #808893;
}

.footerBorderTop {
	display: grid;
	border-top: 1px solid #e6e6e680;
}


@media (min-width: 768px) {
	.footerBorderTop {
		display: flex;
	}
}

/* Footer helper text classes used in your HTML */
footer#contact .text-secondary-foreground\/80 {
	color: #565454;
}

footer#contact .text-secondary-foreground\/60 {
	color: #595f6a;
}

/* -------------------------
   SEO prose helper
-------------------------- */
.seoDiv {
	font-size: 14px;
	line-height: 1.625;
	font-weight: 300;
	text-align: center;
	color: var(--muted);
}

.prose {
	font-size: 14px;
}

.prose strong {
	color: #0f172a;
	font-weight: 600;
}

/* -------------------------
   Utilities used by landing HTML (kept minimal)
-------------------------- */
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.flex {
	display: flex;
}

.inline-flex {
	display: inline-flex;
}

.items-center {
	align-items: center;
}

.items-start {
	align-items: flex-start;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-col {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

.grid {
	display: grid;
}

.flex-shrink-0 {
	flex-shrink: 0;
}

.mt-1 {
	margin-top: 0.25rem;
}

.mt-8 {
	margin-top: 2rem;
}

.mb-3 {
	margin-bottom: 0.75rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.mb-8 {
	margin-bottom: 1rem;
}

.py-12 {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.py-16 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.gap-2 {
	gap: 0.5rem;
}

.gap-3 {
	gap: 0.75rem;
}

.gap-4 {
	gap: 1rem;
}

.gap-6 {
	gap: 1.5rem;
}

.gap-8 {
	gap: 2rem;
}

.text-sm {
	font-size: 0.875rem;
}

.text-xl {
	font-size: 1rem;
}

.font-semibold {
	font-weight: 600;
}

.font-bold {
	font-weight: 700;
}

.space-y-2>*+* {
	margin-top: 0.5rem;
}

.space-y-3>*+* {
	margin-top: 0.75rem;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
	.md\:grid-cols-2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.lg\:grid-cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lg\:col-span-1 {
		grid-column: span 1 / span 1;
	}

	.lg\:col-span-2 {
		grid-column: span 2 / span 2;
	}

	.lg\:px-8 {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* Footer list marker helpers */
.footerLI {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.footerMarginTop {
	margin-top: 8px;
}

.bg-muted-foreground\/50 {
	background-color: #9d9d9d;
}

.rounded-full {
	border-radius: 9999px;
}

.w-1\.5 {
	width: 0.375rem;
}

.h-1\.5 {
	height: 0.375rem;
}

/* -------------------------
   Responsive tweaks
-------------------------- */
@media (max-width: 560px) {
	.section {
		padding: 70px 0;
	}
}

.spanFooter {
	margin-bottom: 1rem;
	display: flex
}


/* ===============================
   Results Pane
================================ */
.results-pane {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 16px;
}

.results-header {
	margin-bottom: 16px;
	font-size: 14px;
	color: #4b5563;
}

.results-header strong {
	color: #111827;
	font-weight: 600;
}

/* ===============================
   Product Grid
================================ */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
	align-items: stretch;
}

/* ===============================
   Product Card
================================ */
.product-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	color: inherit;
}

.product-card:hover,
.product-card:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
	outline: none;
}

/* ===============================
   Product Image
================================ */
.product-image {
	width: 100%;
	height: 170px;
	object-fit: contain;
	padding: 12px;
}

/* ===============================
   Product Title
================================ */
.product-title {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	color: #555;
	min-height: 56px;
	padding-left: 10px;
	padding-right: 10px;
	margin-block-start: 0em;
	margin-block-end: 0em;
}

/* ===============================
   Rating
================================ */
.product-rating {
	padding: 0 14px;
	font-size: 13px;
	color: #f59e0b;
}

.stars {
	letter-spacing: 1px;
}

/* ===============================
   Price Block
================================ */
.price-block {
	padding: 10px 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.final-price {
	font-size: 18px;
	font-weight: 700;
	color: #16a34a;
}

.price-details {
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mrp-price {
	color: #9ca3af;
	text-decoration: line-through;
}

.discount {
	color: #dc2626;
	font-weight: 600;
}

/* ===============================
   CTA
================================ */
.card-cta {
	margin: 12px 14px 16px;
	padding: 10px;
	text-align: center;
	border-radius: 10px;
	background: linear-gradient(135deg, #16a34a, #22c55e);
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.25s ease, transform 0.2s ease;
}

.product-card:hover .card-cta {
	background: linear-gradient(135deg, #15803d, #16a34a);
	transform: scale(1.02);
}

/* ===============================
   Accessibility
================================ */
.product-card:focus-visible {
	outline: 3px solid #22c55e;
	outline-offset: 3px;
}

/* ===============================
   Responsive Tweaks
================================ */
@media (max-width: 768px) {
	.product-image {
		height: 180px;
	}

	.product-title {
		font-size: 14px;
	}

	.final-price {
		font-size: 17px;
	}
}

@media (max-width: 480px) {
	.results-pane {
		padding: 16px 12px;
	}

	.product-grid {
		gap: 14px;
	}

	.card-cta {
		font-size: 13px;
	}
}