/**
 * Sree Mariammai Crackers — main storefront styles
 */

:root {
	--brand: #e91e63;
	--brand-dark: #ad1457;
	--brand-light: #f48fb1;
	--brand-mist: #fce4ec;
	--brand-wash: #fff5f8;
	--ink: #1a1a2e;
	--ink-muted: #5c5c5c;
	--muted: #5c5c5c;
	--gold: #ffb703;
	--accent-orange: #ff6b35;
	--accent-teal: #00b4d8;
	--accent-purple: #7b2cbf;
	--white: #ffffff;
	--shadow: 0 12px 40px rgba(233, 30, 99, 0.14);
	--radius: 14px;
	--header-height: 88px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Outfit", sans-serif;
	color: var(--ink);
	background: var(--brand-wash);
	margin: 0;
	line-height: 1.6;
	overflow-x: hidden;
	padding-bottom: 5.5rem;
}

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

a {
	color: var(--brand);
	text-decoration: none;
	transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
	color: var(--brand-dark);
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 9999;
	background: var(--brand);
	color: var(--white);
	padding: 0.5rem 1rem;
}

.skip-link:focus {
	left: 0;
}

/* Header */
.site-header {
	position: relative;
	z-index: 1030;
	background: #fff;
	border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.site-header.scrolled {
	box-shadow: none;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--header-height);
	flex-wrap: nowrap;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.brand-logo {
	width: auto;
	max-height: 150px;
	border-radius: 50%;
}

.site-nav .nav-list {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-link {
	display: block;
	padding: 0.55rem 0.9rem;
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--ink);
	border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
	color: var(--brand);
	background: var(--brand-mist);
}

.btn-header {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 0.85rem;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	border: 1px solid transparent;
}

.btn-call {
	background: var(--brand-mist);
	color: var(--brand);
}

.btn-whatsapp {
	background: #25d366;
	color: var(--white);
}

.btn-order {
	background: var(--brand);
	color: var(--white);
	position: relative;
}

.cart-badge {
	background: var(--gold);
	color: var(--ink);
	font-size: 0.7rem;
	min-width: 1.35rem;
	height: 1.35rem;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.35rem;
}

.nav-toggle {
	display: none;
	border: none;
	background: var(--brand-mist);
	color: var(--brand);
	width: 42px;
	height: 42px;
	border-radius: 10px;
	font-size: 1.1rem;
}

/* Hero — stacked crossfade (legacy / commented markup) */
.hero-slider {
	position: relative;
	overflow: hidden;
	min-height: 520px;
}

.hero-slide {
	position: absolute;
	inset: 0;
	min-height: 520px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	z-index: 0;
}

.hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(26, 10, 10, 0.78), rgba(227, 30, 36, 0.42));
}

.hero-content {
	position: relative;
	z-index: 1;
	color: var(--white);
	max-width: 640px;
	padding: 3rem 0;
}

.hero-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(2.4rem, 5vw, 4rem);
	line-height: 1.1;
	margin-bottom: 1rem;
}

.hero-text {
	font-size: 1.05rem;
	opacity: 0.95;
	margin-bottom: 1.5rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hero-dots {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 0.5rem;
}

.hero-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.85);
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.active,
.hero-dot:hover {
	background: var(--white);
	transform: scale(1.08);
}

/* Image-only banner slider (no text / overlay) */
.banner-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #f7f1e6;
	line-height: 0;
}

.banner-slides {
	position: relative;
	width: 100%;
}

.banner-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.65s ease, visibility 0.65s ease;
	z-index: 0;
}

.banner-slide.is-active {
	position: relative;
	inset: auto;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.banner-slide img {
	display: block;
	width: 100%;
	height: auto;
}

.banner-dots {
	position: absolute;
	bottom: 0.85rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 0.5rem;
}

.banner-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	border: 2px solid rgba(26, 26, 26, 0.45);
	background: rgba(255, 255, 255, 0.75);
	padding: 0;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.banner-dot.active,
.banner-dot:hover {
	background: var(--brand);
	border-color: var(--brand);
	transform: scale(1.08);
}

/* Brand client logos */
.brand-logos-section {
	padding: 2.5rem 0 2rem;
	background: linear-gradient(180deg, #fffdf8 0%, #f7f1e6 100%);
	border-bottom: 1px solid rgba(180, 140, 90, 0.12);
}

.brand-logos-head {
	text-align: center;
	margin-bottom: 1.5rem;
}

.brand-logos-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	color: var(--brand-dark);
	margin: 0;
}

.brand-logos-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 0.85rem;
	align-items: center;
}

.brand-logo-item {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 88px;
	padding: 0.65rem 0.75rem;
	background: linear-gradient(160deg, #fffef9 0%, #f4ead7 100%);
	border: 1px solid rgba(180, 140, 90, 0.18);
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(120, 80, 30, 0.06);
}

.brand-logo-item img {
	max-width: 100%;
	max-height: 64px;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* Sections */
.section {
	padding: 4.5rem 0;
}

.section-alt {
	background: var(--white);
}

.section-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(2rem, 4vw, 2.8rem);
	color: var(--brand);
	margin-bottom: 0.5rem;
}

.section-subtitle {
	color: var(--ink-muted);
	margin-bottom: 2rem;
	max-width: 720px;
}

/* Buttons */
.btn-brand {
	background: var(--brand);
	border-color: var(--brand);
	color: var(--white);
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
	font-weight: 600;
}

.btn-brand:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: var(--white);
}

.btn-outline-brand {
	border: 2px solid var(--brand);
	color: var(--brand);
	padding: 0.65rem 1.35rem;
	border-radius: 999px;
	font-weight: 600;
	background: transparent;
}

.btn-outline-brand:hover {
	background: var(--brand);
	color: var(--white);
}

/* Cards */
.feature-card,
.category-card,
.product-card,
.offer-banner,
.testimonial-card,
.step-card {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: 0 8px 28px rgba(102, 21, 95, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.category-card:hover,
.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.category-card {
	padding: 1.25rem;
	text-align: center;
}

.category-card img {
	width: 100%;
	height: 140px;
	object-fit: contain;
	margin-bottom: 1rem;
}

.category-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	background: var(--brand-mist);
	color: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
}

.checkout-form-card {
	background: var(--white);
	border: 1px solid #e8e8e8;
	border-radius: 4px;
	padding: 1.5rem 1.75rem 1.25rem;
}

.checkout-field {
	margin-bottom: 1rem;
}

.checkout-label {
	display: block;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 0.35rem;
	font-size: 0.95rem;
}

.checkout-input {
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	padding: 0.55rem 0.75rem;
	font-size: 0.95rem;
}

.checkout-input:focus {
	border-color: #ccc;
	box-shadow: none;
}

.checkout-submit-wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 0.5rem;
}

.checkout-submit-btn {
	background: #e85d4c;
	border: none;
	color: var(--white);
	font-weight: 700;
	padding: 0.55rem 1.75rem;
	border-radius: 4px;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.checkout-submit-btn:hover {
	background: #d94c3b;
	color: var(--white);
}

/* Product gallery (Products page) */
.product-gallery-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 1rem;
	box-shadow: 0 8px 28px rgba(227, 30, 36, 0.08);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-gallery-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow);
}

.product-thumb-wrap {
	position: relative;
	background: var(--brand-mist);
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0.85rem;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-gallery-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.5rem;
}

.product-discount-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	background: var(--gold);
	color: var(--ink);
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.2rem 0.45rem;
	border-radius: 4px;
	line-height: 1.2;
	z-index: 1;
}

.product-gallery-name {
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	line-height: 1.35;
}

.product-gallery-desc {
	font-size: 0.82rem;
	color: var(--ink-muted);
	margin-bottom: 0.5rem;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.price-combo {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.price-combo .price-mrp {
	color: var(--ink-muted);
	font-size: 0.85rem;
	text-decoration: line-through;
}

.price-combo .price-off {
	color: var(--brand);
	font-weight: 700;
	font-size: 1rem;
}

/* Order page table */
.order-table-wrap {
	border-radius: var(--radius);
}

.order-product-cell {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.order-thumb {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	aspect-ratio: auto;
}

.order-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.25rem;
}

.order-product-name {
	font-weight: 600;
	font-size: 0.92rem;
}

.order-table .qty-control {
	justify-content: flex-end;
}

.order-table .btn-add {
	background: var(--brand);
	border: none;
	color: var(--white);
	border-radius: 6px;
	padding: 0.45rem 1.25rem;
	min-width: 80px;
}

.order-cart-panel {
	padding-top: 1rem;
	border-top: 2px solid var(--brand-mist);
}

.order-inline-total {
	font-size: 1.1rem;
	color: var(--brand);
}

body:has(#order-cart-bar) {
	padding-bottom: 6.5rem;
}

.order-cart-bar {
	position: fixed;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%);
	width: min(1140px, calc(100% - 1.5rem));
	background: #faf7f2;
	border: 1px solid rgba(26, 26, 26, 0.1);
	border-radius: 999px;
	padding: 0.7rem 1rem 0.7rem 1.25rem;
	margin: 0;
	box-shadow: 0 10px 28px rgba(26, 26, 26, 0.14);
	z-index: 1040;
}

.order-cart-bar.has-items {
	box-shadow: 0 12px 30px rgba(227, 30, 36, 0.16);
}

.order-cart-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
}

.order-summary-total-block {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	min-width: 0;
}

.order-summary-value {
	font-size: 1.45rem;
	font-weight: 700;
	color: var(--brand-dark);
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.order-summary-meta {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.82rem;
	color: var(--ink-muted);
	line-height: 1.3;
	white-space: nowrap;
}

.order-summary-count {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.order-summary-sep {
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #c4b8b0;
	flex-shrink: 0;
}

.order-summary-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.order-btn-cart,
.order-btn-checkout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.35rem;
	padding: 0.4rem 1.15rem;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1;
	border: 1.5px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.order-btn-cart {
	background: transparent;
	border-color: var(--brand-dark);
	color: var(--brand-dark);
}

.order-btn-cart:hover {
	background: var(--brand-mist);
	color: var(--brand-dark);
	border-color: var(--brand-dark);
}

.order-btn-checkout {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
}

.order-btn-checkout:hover {
	background: var(--brand-dark);
	border-color: var(--brand-dark);
	color: #fff;
}

.mobile-gallery-note {
	display: none;
}

/* Product image lightbox (Order page) */
body.lightbox-open {
	overflow: hidden;
}

.product-image-trigger {
	border: none;
	padding: 0;
	cursor: zoom-in;
	text-align: left;
	width: 64px;
	height: 64px;
}

.product-image-trigger:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 2px;
}

.product-image-zoom-hint {
	position: absolute;
	bottom: 4px;
	left: 4px;
	width: 22px;
	height: 22px;
	background: rgba(42, 15, 38, 0.65);
	color: var(--white);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.product-image-trigger:hover .product-image-zoom-hint,
.product-image-trigger:focus .product-image-zoom-hint {
	opacity: 1;
}

.product-image-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-image-lightbox.is-open {
	visibility: visible;
	opacity: 1;
}

.product-image-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 12, 20, 0.88);
}

.product-image-lightbox-dialog {
	position: relative;
	z-index: 1;
	width: min(92vw, 720px);
	max-height: 92vh;
	background: var(--white);
	border-radius: var(--radius);
	padding: 1rem 1rem 1.25rem;
	box-shadow: var(--shadow);
	display: flex;
	flex-direction: column;
	margin: 0.5rem;
}

.product-image-lightbox-close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: var(--brand-mist);
	color: var(--brand);
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}

.product-image-lightbox-close:hover {
	background: var(--brand);
	color: var(--white);
}

.product-image-lightbox-title {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--ink);
	margin: 0 2.5rem 0.75rem 0;
	padding-right: 0.5rem;
	line-height: 1.35;
}

.product-image-lightbox-body {
	flex: 1;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-wash);
	border-radius: 10px;
	padding: 0.75rem;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.product-image-lightbox-img {
	max-width: 100%;
	max-height: min(70vh, 600px);
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

@media (max-width: 575.98px) {
	.product-image-lightbox-dialog {
		width: 100%;
		height: auto;
		max-height: calc(100vh - 1rem);
		margin: 0.5rem;
		padding: 0.75rem;
	}

	.product-image-lightbox-img {
		max-height: calc(100vh - 140px);
	}

	.product-image-zoom-hint {
		opacity: 1;
	}
}

.product-card {
	padding: 1rem;
	height: 100%;
}

.product-card .product-image {
	width: 100%;
	height: 160px;
	object-fit: contain;
	margin-bottom: 0.75rem;
}

.product-name {
	font-weight: 600;
	font-size: 0.95rem;
	margin-bottom: 0.5rem;
	min-height: 2.4em;
}

.price-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 0.35rem;
}

.price-mrp {
	color: var(--ink-muted);
	font-size: 0.85rem;
	text-decoration: line-through;
}

.price-off {
	color: var(--brand);
	font-weight: 700;
	font-size: 1.1rem;
}

.discount-badge {
	background: var(--gold);
	color: var(--ink);
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.15rem 0.45rem;
	border-radius: 6px;
}

/* Qty controls */
.qty-control {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	margin-top: 0.75rem;
}

.qty-control .btn-qty {
	width: 34px;
	height: 34px;
	border: 1px solid var(--brand-light);
	background: var(--brand-mist);
	color: var(--brand);
	border-radius: 8px;
	font-weight: 700;
	line-height: 1;
}

.qty-control .qty-input {
	width: 52px;
	height: 34px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-weight: 600;
}

.qty-control .btn-add {
	flex: 1;
	min-width: 90px;
	padding: 0.45rem 0.75rem;
	border: none;
	background: var(--brand);
	color: var(--white);
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.85rem;
}

.qty-control.mode-add .btn-qty,
.qty-control.mode-add .qty-input {
	display: none;
}

.qty-control.mode-qty .btn-add {
	display: none;
}

/* Home notice marquee */
.home-notice-marquee {
	background: linear-gradient(90deg, #8b0000, #b22222, #8b0000);
	color: #fff;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	overflow: hidden;
	width: 100%;
}

.home-notice-marquee-viewport {
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}

.home-notice-marquee-track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	will-change: transform;
	animation: home-notice-marquee-scroll 35s linear infinite;
}

.home-notice-marquee:hover .home-notice-marquee-track {
	animation-play-state: paused;
}

.home-notice-marquee-item {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 2.5rem;
	font-size: 0.95rem;
	font-weight: 500;
	white-space: nowrap;
	line-height: 1.4;
}

.home-notice-marquee-link {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
	white-space: nowrap;
}

.home-notice-marquee-link:hover {
	color: #ffe082;
}

@keyframes home-notice-marquee-scroll {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-notice-marquee-track {
		animation: none !important;
		transform: none !important;
		display: block;
		width: 100%;
		max-width: 100%;
	}

	.home-notice-marquee-item[aria-hidden="true"] {
		display: none !important;
	}

	.home-notice-marquee-item {
		display: block;
		white-space: normal;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		text-align: center;
		padding: 0.85rem 1rem;
		box-sizing: border-box;
	}

	.home-notice-marquee-link {
		display: inline;
		margin-left: 0.35rem;
	}
}

/* Offers banner */
.offer-banner {
	padding: 1.5rem;
	background: linear-gradient(135deg, var(--brand), var(--brand-light));
	color: var(--white);
	margin-bottom: 1rem;
}

.offer-banner h3 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.6rem;
}

/* Counter */
.counter-box {
	text-align: center;
	padding: 1.5rem;
}

.counter-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--brand);
}

/* Steps */
.step-card {
	padding: 1.5rem;
	text-align: center;
}

.step-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--brand-mist);
	color: var(--brand);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
	padding: 1.5rem;
}

.testimonial-stars {
	color: var(--gold);
	margin-bottom: 0.75rem;
}

/* Category section (products page) */
.category-block {
	margin-bottom: 0.5rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(233, 30, 99, 0.1);
	scroll-margin-top: 4.5rem;
}

.category-block-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 2rem;
	color: var(--brand);
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 3px solid var(--brand-mist);
}

/* Cart table */
.cart-table-wrap {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.cart-table th {
	background: var(--brand);
	color: var(--white);
	font-weight: 600;
	border: none;
}

.cart-table td,
.cart-table th {
	vertical-align: middle;
}

.cart-product-img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.cart-summary {
	background: var(--white);
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
}

.summary-row {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px dashed #eee;
}

.summary-row.total {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--brand);
	border-bottom: none;
	padding-top: 1rem;
}

.min-order-alert {
	background: #fff3cd;
	border: 1px solid #ffe69c;
	color: #664d03;
	padding: 0.85rem 1rem;
	border-radius: 10px;
	margin-top: 1rem;
}

/* Forms */
.form-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 2rem;
	box-shadow: var(--shadow);
}

.form-label {
	font-weight: 600;
	color: var(--ink);
}

.form-control,
.form-select {
	border-radius: 10px;
	border-color: #ddd;
	padding: 0.65rem 0.85rem;
}

.form-control:focus,
.form-select:focus {
	border-color: var(--brand-light);
	box-shadow: 0 0 0 0.2rem rgba(102, 21, 95, 0.15);
}

/* About gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1rem;
}

.gallery-item {
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--brand-mist);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand);
	font-weight: 600;
}

/* Map */
.map-embed {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.map-embed iframe {
	width: 100%;
	height: 420px;
	border: 0;
}

/* Contact page */
.contact-info-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 1.75rem;
	box-shadow: var(--shadow);
	height: 100%;
}

.contact-info-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--brand-mist);
	color: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	margin-bottom: 1rem;
}

.contact-info-title {
	font-size: 1.15rem;
	margin-bottom: 0.75rem;
	color: var(--ink);
}

.contact-info-text {
	color: var(--muted);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.contact-info-link {
	color: var(--brand);
	font-weight: 600;
	text-decoration: none;
}

.contact-info-link:hover {
	color: var(--brand-dark);
	text-decoration: underline;
}

.contact-info-label {
	display: block;
	font-size: 0.85rem;
	color: var(--muted);
	margin-bottom: 0.15rem;
}

.contact-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

.contact-info-list li + li {
	margin-top: 0.25rem;
}

.contact-map-wrap .section-title {
	font-size: 1.5rem;
}

/* Footer */
.site-footer {
	background: var(--brand-dark);
	color: rgba(255, 255, 255, 0.9);
	margin-top: 3rem;
}

.site-footer a:not(.btn) {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
}

.site-footer a:not(.btn):hover {
	color: var(--white);
	text-decoration: underline;
}

.footer-top {
	padding: 3.5rem 0 2rem;
}

.footer-logo {
	background: var(--white);
	padding: 0.65rem 0.85rem;
	border-radius: 50%;
	display: inline-block;
	max-width: 140px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.footer-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.35rem;
	margin-bottom: 1rem;
	color: var(--white);
}

.footer-text,
.footer-links a,
.footer-contact li,
.footer-contact a,
.footer-bank li {
	color: rgba(255, 255, 255, 0.92);
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.45rem;
}

.footer-links a:hover {
	color: var(--white);
	text-decoration: underline;
}

.footer-contact,
.footer-bank {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact li,
.footer-bank li {
	margin-bottom: 0.5rem;
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
}

.footer-contact i,
.footer-contact .fa-solid,
.footer-contact .fa-brands {
	color: rgba(255, 255, 255, 0.9);
	flex-shrink: 0;
	width: 1.1rem;
	margin-top: 0.15rem;
}

.footer-contact a {
	color: var(--white);
	font-weight: 500;
}

.footer-contact a:hover {
	color: var(--white);
	text-decoration: underline;
}

.footer-social a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	color: var(--white);
	margin-right: 0.35rem;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
	background: var(--white);
	color: var(--brand-dark);
	border-color: var(--white);
	text-decoration: none;
}

.footer-map {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	overflow: hidden;
	min-height: 200px;
}

.footer-map iframe {
	width: 100%;
	height: 200px;
	border: 0;
	border-radius: 10px;
	display: block;
}

.footer-bank {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-bank li {
	margin-bottom: 0.35rem;
	line-height: 1.5;
}

.footer-contact li {
	margin-bottom: 0.55rem;
}

.footer-title.mt-4 {
	margin-top: 1.5rem !important;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1rem 0;
	text-align: center;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.85);
}

/* Floating buttons */
.float-btn {
	position: fixed;
	z-index: 1020;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 1.35rem;
	box-shadow: var(--shadow);
	border: none;
}

.float-whatsapp {
	bottom: 100px;
	right: 24px;
	background: #25d366;
}

.float-call {
	bottom: 164px;
	right: 24px;
	background: var(--brand);
}

.float-top {
	bottom: 228px;
	right: 24px;
	background: var(--ink-muted);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.float-top.visible {
	opacity: 1;
	visibility: visible;
}

/* Animations */
.fade-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

.page-hero {
	padding: 3rem 0 2rem;
	background: linear-gradient(135deg, var(--brand-mist), var(--white));
}

.page-hero h1 {
	font-family: "Cormorant Garamond", Georgia, serif;
	color: var(--brand);
	font-size: clamp(2.2rem, 4vw, 3rem);
}

.payment-option {
	border: 2px solid #eee;
	border-radius: 12px;
	padding: 1rem;
	cursor: pointer;
	transition: border-color 0.25s ease;
}

.payment-option.selected,
.payment-option:hover {
	border-color: var(--brand);
	background: var(--brand-mist);
}

.max-w-640 {
	max-width: 640px;
}

.bank-details-box {
	background: var(--brand-mist);
	border-radius: 12px;
	padding: 1.25rem;
	margin-top: 1rem;
}

.text-brand {
	color: var(--brand);
}

/* Vetrivel single-page order */
.vc-hero {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	background: linear-gradient(180deg, var(--brand-mist), var(--white));
}

.vc-hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 1.5rem;
	align-items: center;
}

.vc-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--brand);
	margin-bottom: 0.5rem;
}

.vc-hero-points {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.5rem;
}

.vc-hero-points li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.vc-hero-points a {
	color: var(--ink);
	text-decoration: none;
	font-weight: 600;
}

.vc-estimate-head {
	width: 100%;
	max-width: 560px;
	border-radius: 12px;
	background: #fff;
	box-shadow: var(--shadow);
}

.vc-category-nav {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
	padding: 0.65rem 0 1.15rem;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: rgba(26, 26, 26, 0.35) transparent;
	position: sticky;
	top: 0;
	z-index: 90;
	background: var(--brand-wash);
}

.vc-category-nav::-webkit-scrollbar {
	height: 6px;
}

.vc-category-nav::-webkit-scrollbar-track {
	background: rgba(26, 26, 26, 0.06);
	border-radius: 999px;
}

.vc-category-nav::-webkit-scrollbar-thumb {
	background: rgba(26, 26, 26, 0.35);
	border-radius: 999px;
}

.vc-cat-chip {
	border: 1px solid rgba(227, 30, 36, 0.28);
	background: #fff;
	color: var(--brand-dark);
	border-radius: 999px;
	padding: 0.45rem 1rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	white-space: nowrap;
	flex: 0 0 auto;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.vc-cat-chip.active,
.vc-cat-chip:hover {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
}

.vc-payment-note {
	background: var(--brand-mist);
	border-radius: 12px;
	padding: 1.25rem;
}

.category-block.is-hidden {
	display: none;
}

.payment-bank-card {
	background: var(--white);
	border: 1px solid rgba(233, 30, 99, 0.12);
	border-radius: var(--radius);
	padding: 1rem 1.1rem;
	height: 100%;
}

.payment-qr-image {
	border-radius: 12px;
	border: 1px solid rgba(233, 30, 99, 0.15);
	background: #fff;
	padding: 0.5rem;
}

.brand-text .brand-name {
	background: linear-gradient(90deg, var(--brand), var(--accent-purple), var(--accent-orange));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	display:none !important
}
