/**
 * Trendy Indian Women — Main Stylesheet
 *
 * @package Trendy Indian Women
 * @since 1.0.0
 */

/* ─── CSS Variables ─── */
:root {
	--blush: #e8909c;
	--beige: #faf6f2;
	--white: #ffffff;
	--charcoal: #2d2d2d;
	--rose: #c76b7c;
	--gray: #6b6b6b;
	--light: #f5f1ee;
	--shadow: 0 8px 24px rgba(45, 45, 45, .06);
	--radius: 16px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Inter, system-ui, -apple-system, sans-serif;
	color: var(--charcoal);
	background: var(--white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: Poppins, sans-serif;
	font-weight: 600;
	line-height: 1.25;
}

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

img {
	max-width: 100%;
	display: block;
}

/* ─── Container ─── */
.container {
	width: min(1120px, 92%);
	margin-inline: auto;
}

/* ─── Header ─── */
.header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .86);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #f0e9e3;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	width: min(1120px, 92%);
	margin: auto;
}

.logo {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 1.35rem;
	letter-spacing: .2px;
	color: var(--rose);
	font-style: italic;
}

.logo img {
	max-height: 32px;
	width: auto;
}

.nav {
	display: flex;
	gap: 28px;
	list-style: none;
}

.nav li {
	list-style: none;
}

.nav a {
	font-size: .95rem;
	color: #4a4a4a;
	font-weight: 500;
	position: relative;
	padding: 6px 0;
}

.nav a:hover,
.nav a.active {
	color: var(--rose);
}

.nav a.active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -16px;
	height: 2px;
	background: var(--rose);
}

/* ─── Hamburger ─── */
.hamburger {
	display: none;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
}

.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--charcoal);
	margin: 5px 0;
	transition: .3s;
}

@media (max-width: 820px) {
	.hamburger {
		display: block;
	}

	.nav {
		position: fixed;
		inset: 60px 0 auto 0;
		background: white;
		flex-direction: column;
		padding: 20px;
		gap: 18px;
		border-bottom: 1px solid #eee;
		transform: translateY(-130%);
		transition: .3s;
		box-shadow: var(--shadow);
	}

	.nav.open {
		transform: translateY(0);
	}

	.nav a.active::after {
		display: none;
	}
}

/* ─── Buttons ─── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 12px;
	font-weight: 600;
	font-family: Poppins, sans-serif;
	font-size: .95rem;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: .2s;
}

.btn-primary {
	background: var(--rose);
	color: white;
	box-shadow: 0 6px 16px rgba(199, 107, 124, .24);
}

.btn-primary:hover {
	transform: translateY(-1px);
	background: #b85a6b;
}

.btn-outline {
	border-color: #e5d9d1;
	background: white;
	color: var(--charcoal);
}

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

/* ─── Tags ─── */
.tag {
	display: inline-block;
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .5px;
	background: #f9f1f3;
	color: var(--rose);
	padding: 4px 9px;
	border-radius: 6px;
	font-weight: 600;
	margin-bottom: 10px;
}

/* ─── Sections ─── */
.section {
	padding: 48px 0;
}

.section h2 {
	font-size: 1.6rem;
	margin-bottom: 22px;
}

/* ─── Grid Layouts ─── */
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* ─── Card Post ─── */
.card-post {
	background: white;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid #f2e9e3;
	transition: .25s;
}

.card-post:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.card-img {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f7f3ef;
}

.card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .4s;
}

.card-post:hover .card-img img {
	transform: scale(1.03);
}

.pin-btn {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--rose);
	color: white;
	border: none;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 600;
	opacity: 0;
	transform: translateY(-4px);
	transition: .2s;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
}

.card-img:hover .pin-btn,
.product-img:hover .pin-btn {
	opacity: 1;
	transform: none;
}

.card-body {
	padding: 16px 18px 20px;
}

.card-body h3 {
	font-size: 1.12rem;
	margin-bottom: 8px;
}

.card-body h3 a {
	color: var(--charcoal);
}

.card-body h3 a:hover {
	color: var(--rose);
}

.card-body p {
	color: #666;
	font-size: .92rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 12px;
}

.read-more {
	color: var(--rose);
	font-weight: 600;
	font-size: .9rem;
	cursor: pointer;
}

/* ─── Deals / Products ─── */
.deals {
	background: var(--beige);
	border-top: 1px solid #f0e6dd;
	border-bottom: 1px solid #f0e6dd;
}

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

@media (max-width: 1000px) {
	.grid-4 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 700px) {
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

.product {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #efe4db;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
	display: flex;
	flex-direction: column;
}

.product-img {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #f7f3ef;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.discount {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #2d2d2d;
	color: white;
	font-size: .72rem;
	padding: 4px 8px;
	border-radius: 6px;
	font-weight: 600;
}

.product-info {
	padding: 13px 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.product-info h4 {
	font-size: .98rem;
	font-weight: 600;
}

.price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.price {
	font-weight: 700;
	color: var(--rose);
	font-size: 1.05rem;
}

.old {
	text-decoration: line-through;
	color: #999;
	font-size: .85rem;
}

.benefit {
	font-size: .85rem;
	color: #666;
	min-height: 34px;
}

.product .btn {
	width: 100%;
	padding: 9px;
	font-size: .87rem;
	border-radius: 10px;
	margin-top: auto;
}

/* ─── Newsletter ─── */
.newsletter {
	background: linear-gradient(180deg, #fdecef, #f9e4e8);
	padding: 60px 0;
	text-align: center;
	border-top: 1px solid #f5d6dc;
}

.newsletter h3 {
	font-size: 1.5rem;
	margin-bottom: 8px;
}

.newsletter p {
	color: #7a5a62;
	margin-bottom: 20px;
}

.news-form {
	display: flex;
	gap: 10px;
	max-width: 440px;
	margin: 0 auto;
	background: white;
	padding: 6px;
	border-radius: 14px;
	box-shadow: var(--shadow);
	border: 1px solid #f3d7dd;
}

.news-form input {
	flex: 1;
	border: none;
	padding: 12px 14px;
	font-size: .95rem;
	outline: none;
	border-radius: 10px;
	font-family: Inter, sans-serif;
}

.news-form button {
	background: var(--rose);
	color: white;
	border: none;
	padding: 0 18px;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	font-family: Poppins, sans-serif;
}

.news-message {
	display: none;
	margin-top: 15px;
	padding: 12px;
	border-radius: 6px;
	font-size: 14px;
}

/* ─── Blog Post ─── */
.blog-wrap {
	width: min(820px, 92%);
	margin: auto;
	padding: 40px 0;
}

.blog-post {
	background: white;
	border: 1px solid #f0e6dd;
	border-radius: 20px;
	padding: 28px;
	margin-bottom: 32px;
	box-shadow: var(--shadow);
}

.blog-post header {
	text-align: center;
	border-bottom: 1px dashed #eee;
	padding-bottom: 18px;
	margin-bottom: 22px;
}

.blog-post h2 {
	font-size: 1.6rem;
	margin: 10px 0;
}

.blog-post h2 a {
	color: var(--charcoal);
}

.blog-post h2 a:hover {
	color: var(--rose);
}

.excerpt {
	color: #5a5a5a;
	max-width: 600px;
	margin: 0 auto;
}

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

.share button {
	border: 1px solid #eee;
	background: #fafafa;
	padding: 7px 12px;
	border-radius: 999px;
	font-size: .8rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 500;
}

.share button:hover {
	background: #fff0f3;
	border-color: #f5cbd4;
}

/* ─── Product Row (Blog List) ─── */
.product-row {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 18px;
	padding: 18px 0;
	border-bottom: 1px solid #f5f0eb;
	align-items: start;
}

.product-row:last-child {
	border: none;
}

.product-row img {
	width: 140px;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	border-radius: 12px;
}

.product-row h4 {
	font-size: 1.06rem;
	margin-bottom: 4px;
}

.product-row .price-row {
	margin-bottom: 4px;
}

.product-row p {
	font-size: .92rem;
	color: #5a5a5a;
	margin: 6px 0 12px;
}

.product-row .btn {
	padding: 8px 14px;
	font-size: .85rem;
}

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

	.product-row img {
		width: 110px;
	}
}

/* ─── About ─── */
.about-wrap {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	padding: 80px 20px;
}

.about-wrap h2 {
	font-size: 2.1rem;
	margin-bottom: 18px;
	color: var(--rose);
	font-weight: 700;
}

.about-wrap p {
	font-size: 1.06rem;
	color: #4a4a4a;
	line-height: 1.85;
	margin-bottom: 14px;
}

/* ─── Contact ─── */
.contact-wrap {
	max-width: 520px;
	margin: 0 auto;
	padding: 60px 20px;
}

.contact-wrap h2 {
	text-align: center;
	margin-bottom: 8px;
	font-size: 1.8rem;
}

.contact-wrap > p {
	text-align: center;
	color: #666;
	margin-bottom: 28px;
}

.form {
	display: grid;
	gap: 14px;
	background: white;
	padding: 26px;
	border-radius: 18px;
	border: 1px solid #f0e6dd;
	box-shadow: var(--shadow);
}

.form input,
.form textarea {
	padding: 12px 14px;
	border: 1.5px solid #e8ddd5;
	border-radius: 12px;
	font-family: Inter, sans-serif;
	font-size: .95rem;
	outline: none;
	transition: .2s;
}

.form input:focus,
.form textarea:focus {
	border-color: var(--blush);
	box-shadow: 0 0 0 3px #f9e3e8;
}

.form textarea {
	min-height: 120px;
	resize: vertical;
}

.note {
	font-size: .85rem;
	color: #7a6a62;
	text-align: center;
	margin-top: 14px;
}

/* ─── Privacy / Terms Pages ─── */
.privacy-page {
	min-height: 60vh;
}

.privacy-wrap {
	max-width: 720px;
	margin: 0 auto;
	padding: 60px 20px;
}

.privacy-wrap h2 {
	margin-bottom: 16px;
	font-size: 1.7rem;
	text-align: center;
}

.privacy-wrap p {
	margin-bottom: 14px;
	color: #4a4a4a;
	line-height: 1.8;
}

.privacy-wrap h3 {
	font-size: 1.15rem;
	margin-top: 28px;
	margin-bottom: 10px;
	color: var(--charcoal);
	padding-bottom: 6px;
	border-bottom: 1px solid #f0e6dd;
}

.privacy-content {
	margin-top: 10px;
}

.privacy-content h3 {
	font-size: 1.15rem;
	margin-top: 28px;
	margin-bottom: 10px;
	color: var(--charcoal);
	padding-bottom: 6px;
	border-bottom: 1px solid #f0e6dd;
}

.terms-updated {
	font-size: .88rem;
	color: #999;
	font-style: italic;
	margin-bottom: 24px;
}

/* ─── Footer ─── */
footer {
	border-top: 1px solid #f0e6dd;
	padding: 38px 0;
	background: #fffdfc;
	color: #6a5d56;
	font-size: .9rem;
}

.footer-inner {
	width: min(1120px, 92%);
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	text-align: center;
}

.footer-links {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
}

.footer-links li {
	list-style: none;
}

.footer-links a:hover {
	color: var(--rose);
}

.disclaimer {
	font-size: .8rem;
	color: #8a7a72;
	max-width: 700px;
}

/* ─── Pagination ─── */
.nav-links {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 40px;
	flex-wrap: wrap;
}

.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 10px;
	font-size: .9rem;
	font-weight: 500;
	border: 1px solid #e8ddd5;
	background: white;
	color: var(--charcoal);
	transition: .2s;
}

.nav-links a:hover {
	border-color: var(--rose);
	color: var(--rose);
}

.nav-links span.current {
	background: var(--rose);
	color: white;
	border-color: var(--rose);
}

/* ─── Category Chips ─── */
.categories {
	padding: 26px 0 10px;
	display: flex;
	gap: 10px;
	overflow: auto;
	scrollbar-width: none;
	width: min(1120px, 92%);
	margin: auto;
}

.categories::-webkit-scrollbar {
	display: none;
}

.chip {
	flex: 0 0 auto;
	padding: 9px 16px;
	border-radius: 999px;
	background: #f6f0eb;
	border: 1px solid #ede1d8;
	font-size: .9rem;
	font-weight: 500;
	color: #5b4b44;
	cursor: pointer;
	white-space: nowrap;
	transition: .2s;
}

.chip:hover,
.chip.active {
	background: var(--blush);
	color: white;
	border-color: var(--blush);
}

/* ─── Single Post Meta ─── */
.post-meta {
	display: flex;
	gap: 12px;
	align-items: center;
	font-size: .88rem;
	color: #888;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.post-meta .dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #ccc;
}

/* ─── 404 Page ─── */
.error-404 {
	text-align: center;
	padding: 80px 20px;
}

.error-404 h1 {
	font-size: 4rem;
	color: var(--rose);
	margin-bottom: 10px;
}

.error-404 p {
	color: #666;
	margin-bottom: 24px;
}

/* ─── Search ─── */
.search-form {
	display: flex;
	gap: 8px;
	max-width: 500px;
	margin: 0 auto 30px;
}

.search-form input {
	flex: 1;
	padding: 12px 14px;
	border: 1.5px solid #e8ddd5;
	border-radius: 12px;
	font-size: .95rem;
	outline: none;
	font-family: Inter, sans-serif;
}

.search-form input:focus {
	border-color: var(--blush);
	box-shadow: 0 0 0 3px #f9e3e8;
}

.search-form button {
	padding: 12px 20px;
	border-radius: 12px;
	background: var(--rose);
	color: white;
	border: none;
	font-weight: 600;
	cursor: pointer;
	font-family: Poppins, sans-serif;
}

/* ─── Comments ─── */
.comments-area {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #f0e6dd;
}

.comments-area h3 {
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.comment-list {
	list-style: none;
}

.comment {
	padding: 16px 0;
	border-bottom: 1px solid #f5f0eb;
}

.comment-author {
	font-weight: 600;
	color: var(--charcoal);
}

.comment-content p {
	margin: 8px 0;
	color: #555;
}

.comment-form {
	display: grid;
	gap: 14px;
	margin-top: 20px;
}

.comment-form input,
.comment-form textarea {
	padding: 12px 14px;
	border: 1.5px solid #e8ddd5;
	border-radius: 12px;
	font-family: Inter, sans-serif;
	font-size: .95rem;
	outline: none;
	transition: .2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: var(--blush);
	box-shadow: 0 0 0 3px #f9e3e8;
}

.comment-form textarea {
	min-height: 100px;
	resize: vertical;
}

.comment-form .submit {
	background: var(--rose);
	color: white;
	border: none;
	padding: 12px 22px;
	border-radius: 12px;
	font-weight: 600;
	font-family: Poppins, sans-serif;
	cursor: pointer;
	font-size: .95rem;
	transition: .2s;
}

.comment-form .submit:hover {
	background: #b85a6b;
}

/* ─── About Page ─── */
.about-page {
	min-height: 60vh;
}

.about-description {
	margin-top: 10px;
}

.about-description p {
	margin-bottom: 14px;
	color: #4a4a4a;
	line-height: 1.85;
	font-size: 1.06rem;
}

.about-signature {
	margin-top: 24px;
	color: var(--rose) !important;
	font-weight: 600;
}

.about-image {
	margin-top: 32px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.about-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: var(--radius);
}

/* ─── Contact Page ─── */
.contact-page {
	min-height: 60vh;
}

.contact-intro {
	text-align: center;
	color: #666;
	margin-bottom: 20px;
}

.contact-message {
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: 12px;
	text-align: center;
	font-weight: 500;
	font-size: .95rem;
	animation: fadeInUp .3s ease;
}

.contact-message.success {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #c8e6c9;
}

.contact-message.error {
	background: #fce4ec;
	color: #c62828;
	border: 1px solid #f8bbd0;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ─── Screen Reader Text ─── */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
