/*
Theme Name: Warisha Modern Pastel
Theme URI: https://warishafashionbd.com
Author: Antigravity AI
Author URI: https://warishafashionbd.com
Description: An ultra-modern, clean Champagne Pastel & Onyx Edition theme for Warisha Fashion.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: warisha-modern-pastel
*/

:root {
	--bg-primary: #FFFDF9;
	--bg-card: #FFFFFF;
	--onyx-main: #1F1A24;
	--gold-accent: #E6BE75;
	--rose-blush: #F7EBE8;
	--text-primary: #2C2430;
	--text-muted: #756A7A;
	--border-light: #EBE5DF;
	--font-bangla: 'Hind Siliguri', 'Tiro Bangla', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
	background-color: var(--bg-primary);
	color: var(--text-primary);
	font-family: var(--font-bangla);
	line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

/* HEADER */
.site-header {
	background: #FFFDF9;
	color: var(--onyx-main);
	padding: 18px 5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid var(--border-light);
}
.site-header .logo span {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--onyx-main);
}
.nav-menu { display: flex; gap: 24px; list-style: none; }
.nav-menu a {
	color: var(--text-primary);
	font-weight: 600;
}
.nav-actions { display: flex; align-items: center; gap: 14px; }
.cta-whatsapp {
	background: #25D366;
	color: #FFF;
	padding: 8px 18px;
	border-radius: 30px;
	font-weight: 600;
}

/* HERO */
.hero {
	background: linear-gradient(135deg, #1F1A24 0%, #342B3D 100%);
	color: #FFF;
	padding: 90px 5%;
	text-align: center;
}
.hero h1 {
	font-size: 3.2rem;
	color: var(--gold-accent);
	margin-bottom: 16px;
}
.btn-gold {
	background: var(--gold-accent);
	color: #1F1A24;
	padding: 14px 34px;
	border-radius: 30px;
	font-weight: 700;
	display: inline-block;
}

/* CATEGORIES & PRODUCTS */
#categories, #products, .trust, .reviews {
	padding: 60px 5%;
	max-width: 1200px;
	margin: 0 auto;
}
.section-title {
	text-align: center;
	font-size: 2.2rem;
	color: var(--onyx-main);
	margin-bottom: 35px;
}
.categories {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
}
.cat-card {
	background: #FFF;
	border: 1px solid var(--border-light);
	border-radius: 20px;
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
}
.cat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(31,26,36,0.08);
}
.cat-card img {
	width: 100%;
	height: 230px;
	object-fit: cover;
	border-radius: 14px;
	margin-bottom: 14px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 28px;
}
.product-card {
	background: #FFF;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border-light);
	box-shadow: 0 4px 16px rgba(0,0,0,0.03);
	transition: transform 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); }
.product-media { position: relative; height: 310px; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 22px; }
.product-name { font-size: 1.25rem; font-weight: 700; color: var(--onyx-main); margin-bottom: 8px; }
.price-now { font-size: 1.35rem; font-weight: 800; color: var(--onyx-main); }
.order-row { display: flex; gap: 10px; margin-top: 16px; }
.order-btn {
	flex: 1;
	text-align: center;
	padding: 11px;
	border-radius: 10px;
	font-weight: 600;
}
.order-whatsapp { background: #25D366; color: #FFF; }
.order-buy { background: var(--onyx-main); color: #FFF; }

/* FOOTER */
.site-footer {
	background: #1F1A24;
	color: #E0D8E6;
	padding: 50px 5% 20px;
	margin-top: 60px;
}
.footer-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto 40px;
}
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; color: #888; }
