/**
 * Aswitha Crackers — main storefront styles
 */

:root {
	--brand: #66155f;
	--brand-dark: #4a1046;
	--brand-light: #8a3a7f;
	--brand-mist: #f6eef5;
	--brand-wash: #fbf7fa;
	--ink: #2a1f29;
	--ink-muted: #6d556a;
	--muted: #6d556a;
	--gold: #d4a017;
	--white: #ffffff;
	--shadow: 0 12px 40px rgba(102, 21, 95, 0.12);
	--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: sticky;
	top: 0;
	z-index: 1030;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(102, 21, 95, 0.08);
	transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
	box-shadow: var(--shadow);
}

.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: 72px;
}

.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 */
.hero-slider {
	position: relative;
	overflow: hidden;
}

.hero-slide {
	min-height: 520px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	position: relative;
}

.hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(42, 15, 38, 0.82), rgba(102, 21, 95, 0.45));
}

.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);
}

/* 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(102, 21, 95, 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);
}

.order-cart-bar {
	background: var(--white);
	border: 2px solid var(--brand-mist);
	border-radius: var(--radius);
	padding: 1rem 1.25rem;
	margin-bottom: 2rem;
	box-shadow: var(--shadow);
	position: sticky;
	top: calc(var(--header-height) + 8px);
	z-index: 100;
}

.order-cart-bar.has-items {
	border-color: var(--brand-light);
	background: linear-gradient(135deg, var(--brand-mist), var(--white));
}

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

.order-cart-bar-info {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.order-cart-bar-icon {
	font-size: 1.5rem;
	color: var(--brand);
}

.order-cart-bar-label {
	display: block;
	font-size: 0.8rem;
	color: var(--ink-muted);
	font-weight: 500;
	line-height: 1.2;
}

.order-cart-bar-amount {
	display: block;
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--brand);
	line-height: 1.2;
}

.order-cart-bar-meta {
	display: block;
	font-size: 0.82rem;
	color: var(--ink-muted);
	margin-top: 0.15rem;
}

.order-cart-bar-link {
	flex-shrink: 0;
}

.order-cart-bar-link-short {
	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;
}

/* Order page legal warning */
.section-order-top {
	padding-top: 0;
}

.order-legal-warning {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	background: #fff8e8;
	border: 1px solid #f0d48a;
	border-left: 4px solid #d4a017;
	border-radius: 12px;
	padding: 1rem 1.15rem;
	margin-bottom: 1.25rem;
	color: #5c4816;
	box-shadow: 0 6px 18px rgba(212, 160, 23, 0.08);
}

.order-legal-warning-icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #d4a017;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.05rem;
}

.order-legal-warning-body strong {
	display: block;
	margin-bottom: 0.25rem;
	color: #6b4e00;
	font-size: 0.95rem;
}

.order-legal-warning-body p {
	font-size: 0.92rem;
	line-height: 1.55;
	color: #5c4816;
}

/* 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: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(102, 21, 95, 0.1);
}

.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: 12px;
	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 {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 0.35rem;
}

.footer-social a {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 50%;
	color: var(--white);
	margin-right: 0;
	font-size: 1.05rem;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-social a:hover {
	transform: translateY(-3px);
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.footer-social a:hover .fa-phone:before
{
	color:black !important
}

.footer-social-phone:hover {
	background: #fff;
	border-color: #fff;
	color: var(--brand);
}

.footer-social-whatsapp:hover {
	background: #25d366;
	border-color: #25d366;
	color: #fff;
}

.footer-social-map:hover {
	background: #4285f4;
	border-color: #4285f4;
	color: #fff;
}

.footer-social-instagram:hover {
	background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
	border-color: transparent;
	color: #fff;
}

.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: 24px;
	right: 24px;
	background: #25d366;
}

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

.float-top {
	bottom: 152px;
	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);
}
