﻿
:root {
	--bg: #0a0e14;
	--surface: #111620;
	--surface2: #1a2133;
	--gold: #c9a84c;
	--gold-light: #e8c97a;
	--teal: #1fa08c;
	--teal-light: #2ec4a9;
	--white: #f0ede8;
	--muted: #7a8499;
	--border: #1e2a3a;
	--red: #e05c5c;
	--radius: 16px;
	--radius-sm: 8px;
}
.header-actions {
	display: flex;
	align-items: center;
	gap: 10px; /* Dono buttons ke beech ka gap */
}

.btn-signin, .btn-signup {
	padding: 8px 16px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	display: inline-block;
}

/* Sign In Style (Light/Outline) */
.btn-signin {
	color: #333;
	border: 1px solid #ddd;
	background: #fff;
}

	.btn-signin:hover {
		background: #f5f5f5;
		border-color: #ccc;
	}

/* Sign Up Style (Primary/Dark) */
.btn-signup {
	color: #fff;
	background: #007bff; /* Aap apne theme ka color yahan daal sakte hain */
	border: 1px solid #007bff;
}

	.btn-signup:hover {
		background: #0056b3;
		border-color: #0056b3;
	}
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--white);
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announce {
	background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
	background-size: 200% 100%;
	animation: shimmer 4s linear infinite;
	text-align: center;
	padding: 10px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #0a0e14;
}

@keyframes shimmer {
	0% {
		background-position: 0% 50%
	}

	100% {
		background-position: 200% 50%
	}
}

/* ── HEADER ── */
header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10,14,20,0.92);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	padding: 0 5%;
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 70px;
	max-width: 1400px;
	margin: 0 auto;
}

.logo {
	font-family: 'Playfair Display', serif;
	font-size: 26px;
	font-weight: 900;
	color: var(--white);
	text-decoration: none;
	letter-spacing: -0.5px;
	flex-shrink: 0;
}

	.logo span {
		color: var(--gold);
	}

nav {
	display: flex;
	gap: 2px;
	margin-left: 16px;
}

	nav a {
		text-decoration: none;
		color: var(--muted);
		font-size: 14px;
		font-weight: 500;
		padding: 8px 14px;
		border-radius: var(--radius-sm);
		transition: all 0.2s;
		white-space: nowrap;
	}

		nav a:hover, nav a.active {
			color: var(--white);
			background: var(--surface);
		}

		nav a.sale-link {
			color: var(--gold);
		}

.search-bar {
	flex: 1;
	max-width: 400px;
	display: flex;
	align-items: center;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 50px;
	padding: 8px 16px;
	gap: 10px;
	transition: border-color 0.2s;
}

	.search-bar:focus-within {
		border-color: var(--teal);
	}

	.search-bar input {
		background: none;
		border: none;
		outline: none;
		color: var(--white);
		font-family: inherit;
		font-size: 14px;
		flex: 1;
	}

		.search-bar input::placeholder {
			color: var(--muted);
		}

	.search-bar svg {
		color: var(--muted);
		flex-shrink: 0;
	}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
}

.icon-btn {
	width: 40px;
	height: 40px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
	color: var(--white);
	position: relative;
	text-decoration: none;
}

	.icon-btn:hover {
		background: var(--surface2);
		border-color: var(--teal);
	}

.badge {
	position: absolute;
	top: -4px;
	right: -4px;
	width: 18px;
	height: 18px;
	background: var(--gold);
	border-radius: 50%;
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
}

.btn-signin {
	background: var(--gold);
	color: #0a0e14;
	border: none;
	border-radius: 50px;
	padding: 10px 22px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
	font-family: inherit;
}

	.btn-signin:hover {
		background: var(--gold-light);
		transform: translateY(-1px);
	}

/* ── HERO ── */
.hero {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 24px;
	padding: 40px 5%;
	max-width: 1400px;
	margin: 0 auto;
}

.hero-main {
	background: linear-gradient(135deg, #0d1826 0%, #162035 40%, #0e2218 100%);
	border: 1px solid var(--border);
	border-radius: 24px;
	position: relative;
	overflow: hidden;
	min-height: 440px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

	.hero-main::before {
		content: '';
		position: absolute;
		inset: 0;
		background: radial-gradient(ellipse at 80% 20%, rgba(31,160,140,0.15) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.1) 0%, transparent 50%);
	}

.hero-bg-text {
	position: absolute;
	top: -20px;
	right: -20px;
	font-family: 'Playfair Display', serif;
	font-size: 180px;
	font-weight: 900;
	line-height: 1;
	color: rgba(255,255,255,0.03);
	pointer-events: none;
	user-select: none;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(201,168,76,0.15);
	border: 1px solid rgba(201,168,76,0.3);
	color: var(--gold);
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 20px;
	width: fit-content;
}

	.hero-badge::before {
		content: '✦';
		font-size: 10px;
	}

.hero-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 16px;
	position: relative;
}

	.hero-title em {
		color: var(--teal-light);
		font-style: italic;
	}

.hero-sub {
	color: rgba(240,237,232,0.6);
	font-size: 16px;
	max-width: 420px;
	margin-bottom: 32px;
	position: relative;
}

.hero-btns {
	display: flex;
	gap: 12px;
	position: relative;
}

.btn-primary {
	background: var(--gold);
	color: #0a0e14;
	border: none;
	border-radius: 50px;
	padding: 14px 28px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.2s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

	.btn-primary:hover {
		background: var(--gold-light);
		transform: translateY(-2px);
	}

.btn-outline {
	background: transparent;
	color: var(--white);
	border: 1px solid var(--border);
	border-radius: 50px;
	padding: 14px 28px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.2s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

	.btn-outline:hover {
		border-color: var(--teal);
		color: var(--teal-light);
	}

.hero-side {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hero-card {
	flex: 1;
	border-radius: 20px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	cursor: pointer;
	transition: transform 0.2s;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

	.hero-card:hover {
		transform: translateY(-3px);
	}

	.hero-card.card-warm {
		background: linear-gradient(145deg, #1e1208, #2d1f0a);
		border: 1px solid rgba(201,168,76,0.2);
	}

	.hero-card.card-cool {
		background: linear-gradient(145deg, #081820, #0e2535);
		border: 1px solid rgba(31,160,140,0.2);
	}

	.hero-card .card-icon {
		font-size: 52px;
		position: absolute;
		right: 20px;
		top: 16px;
		filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
		animation: float 3s ease-in-out infinite;
	}

	.hero-card.card-cool .card-icon {
		animation-delay: 1.5s;
	}

@keyframes float {
	0%,100% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-8px)
	}
}

.card-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.card-warm .card-label {
	color: var(--gold);
}

.card-cool .card-label {
	color: var(--teal-light);
}

.hero-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
}

.hero-card p {
	font-size: 13px;
	color: var(--muted);
	margin-top: 4px;
}

/* ── SECTION HEADER ── */
.section {
	padding: 60px 5%;
	max-width: 1400px;
	margin: 0 auto;
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 36px;
}

	.section-head h2 {
		font-family: 'Playfair Display', serif;
		font-size: 36px;
		font-weight: 800;
		line-height: 1.2;
	}

		.section-head h2 span {
			color: var(--teal-light);
		}

	.section-head p {
		color: var(--muted);
		font-size: 14px;
		margin-top: 6px;
	}

.view-all {
	color: var(--gold);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

	.view-all:hover {
		color: var(--gold-light);
	}

/* ── CATEGORIES ── */
.cat-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

.cat-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 28px 16px 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.25s;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

	.cat-card:hover {
		background: var(--surface2);
		border-color: var(--teal);
		transform: translateY(-4px);
	}

.cat-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
}

	.cat-icon.c1 {
		background: rgba(201,168,76,0.12);
	}

	.cat-icon.c2 {
		background: rgba(31,160,140,0.12);
	}

	.cat-icon.c3 {
		background: rgba(120,80,200,0.12);
	}

	.cat-icon.c4 {
		background: rgba(220,80,80,0.12);
	}

	.cat-icon.c5 {
		background: rgba(80,160,80,0.12);
	}

	.cat-icon.c6 {
		background: rgba(200,120,40,0.12);
	}

.cat-card h4 {
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
}

.cat-card p {
	font-size: 12px;
	color: var(--muted);
}

/* ── FILTER TABS ── */
.filter-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.tab {
	padding: 9px 20px;
	border-radius: 50px;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--muted);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	font-family: inherit;
}

	.tab:hover {
		border-color: var(--teal);
		color: var(--white);
	}

	.tab.active {
		background: var(--teal);
		border-color: var(--teal);
		color: #fff;
	}

/* ── PRODUCT GRID ── */
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.product-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.25s;
	cursor: pointer;
}

	.product-card:hover {
		transform: translateY(-4px);
		border-color: var(--surface2);
		box-shadow: 0 20px 60px rgba(0,0,0,0.4);
	}

.product-img {
	/*height: 220px;*/
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	overflow: hidden;
}

	.product-img .bg {
		position: absolute;
		inset: 0;
	}

	.product-img .emoji {
		position: relative;
		z-index: 1;
		transition: transform 0.3s;
		filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
	}

.product-card:hover .emoji {
	transform: scale(1.12) translateY(-4px);
}

.product-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 4px 10px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.tag-new {
	background: var(--teal);
	color: #fff;
}

.tag-hot {
	background: var(--gold);
	color: #000;
}

.tag-sale {
	background: var(--red);
	color: #fff;
}

.wishlist-btn {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(10,14,20,0.6);
	backdrop-filter: blur(8px);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.2s;
}

	.wishlist-btn:hover {
		background: rgba(201,168,76,0.2);
		border-color: var(--gold);
	}

.product-body {
	padding: 18px 18px 20px;
}

.product-brand {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--teal-light);
	margin-bottom: 6px;
}

.product-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 8px;
}

.product-stars {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}

.stars {
	color: var(--gold);
	font-size: 13px;
	letter-spacing: -1px;
}

.review-count {
	font-size: 12px;
	color: var(--muted);
}

.product-price {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.price-now {
	font-size: 20px;
	font-weight: 800;
	color: var(--white);
}

.price-was {
	font-size: 14px;
	color: var(--muted);
	text-decoration: line-through;
}

.price-off {
	font-size: 12px;
	font-weight: 700;
	color: var(--teal-light);
	background: rgba(31,160,140,0.12);
	padding: 2px 8px;
	border-radius: 50px;
}

.add-cart {
	width: 100%;
	padding: 12px;
	border-radius: 12px;
	background: var(--surface2);
	border: 1px solid var(--border);
	color: var(--white);
	font-weight: 600;
	font-size: 14px;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

	.add-cart:hover {
		background: var(--teal);
		border-color: var(--teal);
	}

/* ── PROMO BANNERS ── */
.promo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}



	.promo-card::before {
		content: '';
		position: absolute;
		inset: 0;
		background: inherit;
		z-index: 0;
	}

	.promo-card > * {
		position: relative;
		z-index: 1;
	}

	.promo-card.p1 {
		background: linear-gradient(135deg, #0d2b1a, #1a4530);
		border: 1px solid rgba(31,160,140,0.3);
	}

	.promo-card.p2 {
		background: linear-gradient(135deg, #2b1d08, #3d2910);
		border: 1px solid rgba(201,168,76,0.3);
	}

.promo-deco {
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 100px;
	opacity: 0.15;
}

.promo-sub {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.p1 .promo-sub {
	color: var(--teal-light);
}

.p2 .promo-sub {
	color: var(--gold);
}

.promo-card h3 {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 20px;
}

.promo-card a {
	text-decoration: none;
}

/* ── ABOUT US ── */
#about {
	padding: 80px 5%;
	max-width: 1400px;
	margin: 0 auto;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-visual {
	position: relative;
	height: 460px;
}

.about-blob {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #0e2535, #0d1e30);
	border-radius: 60px;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 120px;
	overflow: hidden;
}

	.about-blob::before {
		content: '';
		position: absolute;
		inset: 0;
		background: radial-gradient(circle at 30% 30%, rgba(31,160,140,0.2) 0%, transparent 60%), radial-gradient(circle at 70% 70%, rgba(201,168,76,0.15) 0%, transparent 50%);
	}

.about-stat-card {
	position: absolute;
	background: var(--surface2);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 16px 20px;
	backdrop-filter: blur(10px);
}

	.about-stat-card:nth-child(2) {
		bottom: 32px;
		left: -24px;
	}

	.about-stat-card:nth-child(3) {
		top: 32px;
		right: -24px;
	}

.stat-num {
	font-family: 'Playfair Display', serif;
	font-size: 28px;
	font-weight: 900;
	color: var(--gold);
}

.stat-label {
	font-size: 12px;
	color: var(--muted);
}

.about-text .section-head {
	margin-bottom: 24px;
}

.about-text p {
	color: rgba(240,237,232,0.65);
	line-height: 1.8;
	margin-bottom: 16px;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 32px;
}

.about-feat {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 20px;
}

.feat-icon {
	font-size: 28px;
	margin-bottom: 10px;
}

.feat-title {
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 4px;
}

.feat-desc {
	font-size: 13px;
	color: var(--muted);
}

/* ── TRUST STRIP ── */
.trust-strip {
	background: var(--surface);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 32px 5%;
}

.trust-inner {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.trust-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
}

.ti1 {
	background: rgba(31,160,140,0.12);
}

.ti2 {
	background: rgba(201,168,76,0.12);
}

.ti3 {
	background: rgba(120,80,200,0.12);
}

.ti4 {
	background: rgba(220,80,80,0.12);
}

.trust-text h4 {
	font-weight: 700;
	font-size: 15px;
}

.trust-text p {
	font-size: 13px;
	color: var(--muted);
}

/* ── CONTACT ── */
#contact {
	padding: 80px 5%;
	max-width: 1400px;
	margin: 0 auto;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-info h2 {
	font-family: 'Playfair Display', serif;
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 16px;
}

	.contact-info h2 span {
		color: var(--gold);
	}

.contact-info > p {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 36px;
}

.contact-items {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.c-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--surface2);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.c-text h4 {
	font-weight: 700;
	font-size: 14px;
}

.c-text p {
	font-size: 13px;
	color: var(--muted);
}

.contact-form {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 40px;
}

	.contact-form h3 {
		font-family: 'Playfair Display', serif;
		font-size: 24px;
		font-weight: 700;
		margin-bottom: 28px;
	}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 16px;
}

	.form-group label {
		font-size: 13px;
		font-weight: 600;
		color: var(--muted);
	}

	.form-group input, .form-group textarea, .form-group select {
		background: var(--bg);
		border: 1px solid var(--border);
		border-radius: 12px;
		padding: 13px 16px;
		color: var(--white);
		font-family: inherit;
		font-size: 14px;
		outline: none;
		transition: border-color 0.2s;
		resize: none;
	}

		.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
			border-color: var(--teal);
		}

	.form-group textarea {
		height: 110px;
	}

	.form-group select option {
		background: var(--surface);
	}

/* ── FOOTER ── */
footer {
	background: var(--surface);
	border-top: 1px solid var(--border);
	padding: 60px 5% 32px;
}

.footer-inner {
	max-width: 1400px;
	margin: 0 auto;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand .logo {
	font-size: 28px;
	display: block;
	margin-bottom: 14px;
}

.footer-brand p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
	max-width: 260px;
	margin-bottom: 20px;
}

.socials {
	display: flex;
	gap: 10px;
}

.social-btn {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--surface2);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
}

	.social-btn:hover {
		background: var(--teal);
		border-color: var(--teal);
	}

.footer-col h4 {
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 18px;
}

.footer-col a {
	display: block;
	color: var(--muted);
	text-decoration: none;
	font-size: 14px;
	margin-bottom: 10px;
	transition: color 0.2s;
}

	.footer-col a:hover {
		color: var(--white);
	}

.footer-bottom {
	border-top: 1px solid var(--border);
	padding-top: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

	.footer-bottom p {
		color: var(--muted);
		font-size: 13px;
	}

.payment-methods {
	display: flex;
	gap: 8px;
}

.pay-badge {
	background: var(--surface2);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 700;
	color: var(--muted);
}

/* ── SCROLL ANIMATIONS ── */
.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

	.fade-in.visible {
		opacity: 1;
		transform: none;
	}

	.fade-in:nth-child(2) {
		transition-delay: 0.1s;
	}

	.fade-in:nth-child(3) {
		transition-delay: 0.2s;
	}

	.fade-in:nth-child(4) {
		transition-delay: 0.3s;
	}

/* ── MOBILE ── */
@media (max-width: 1024px) {
	.hero {
		grid-template-columns: 1fr;
	}

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

	.cat-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-grid, .contact-grid {
		grid-template-columns: 1fr;
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	nav {
		display: none;
	}

	.search-bar {
		display: none;
	}

	.hero-main {
		padding: 36px 28px;
		min-height: 340px;
	}

	.hero-side {
		flex-direction: column;
	}

	.cat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.promo-grid {
		grid-template-columns: 1fr;
	}

	.trust-inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-top {
		grid-template-columns: 1fr;
	}

	.about-visual {
		height: 260px;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}

/* Hamburger button — sirf mobile pe dikhega */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 4px;
	border-radius: 8px;
	transition: background 0.2s;
	margin-left: auto;
	flex-shrink: 0;
}

	.hamburger:hover {
		background: rgba(255,255,255,0.08);
	}

	.hamburger span {
		display: block;
		width: 22px;
		height: 2px;
		background: #f0ede8;
		border-radius: 2px;
		transition: all 0.3s ease;
		transform-origin: center;
	}
	/* Animated X when open */
	.hamburger.open span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.hamburger.open span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}

	.hamburger.open span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

/* Mobile nav overlay */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	/* Hide desktop nav by default on mobile */
	header nav {
		display: none !important;
		position: fixed;
		top: 70px; /* header height */
		left: 0;
		right: 0;
		background: rgba(10, 14, 20, 0.97);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 16px 0 24px;
		z-index: 999;
		border-bottom: 1px solid rgba(255,255,255,0.08);
		box-shadow: 0 20px 60px rgba(0,0,0,0.4);
		animation: slideDown 0.25s ease;
	}

		header nav.mobile-open {
			display: flex !important;
		}

	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}

		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	header nav a {
		padding: 14px 28px !important;
		font-size: 16px !important;
		border-radius: 0 !important;
		border-bottom: 1px solid rgba(255,255,255,0.05);
		display: block;
		width: 100%;
	}

		header nav a:last-child {
			border-bottom: none;
		}

		header nav a:hover {
			background: rgba(255,255,255,0.06) !important;
			padding-left: 36px !important;
			transition: padding 0.2s;
		}

	/* Hide search bar on mobile to save space */
	.search-bar {
		display: none !important;
	}

	/* Keep Sign In / Sign Up visible */
	.header-actions {
		display: flex !important;
		gap: 8px;
	}
}
