/* ========================================
   GLOBAL FONT FAMILY & OVERFLOW PREVENTION
   ======================================== */
/* Apply Nunito Sans font globally across all elements, pages, and WooCommerce templates */
* ,
.mobile-menu-item {
	font-family: "Nunito", sans-serif;
	box-sizing: border-box;
}

.sangeetly-home-redirect {
	cursor: pointer;
}

/* Prevent horizontal scrolling on all devices */
html,
body {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

/* Ensure all containers respect viewport width */
body > * {
	max-width: 100%;
	overflow-x: hidden;
}

/* WordPress site containers */
.site,
.site-header,
.site-main,
.site-footer,
.wp-site-blocks {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
}

/* ========================================
   GLOBAL RESPONSIVE PADDING VARIABLES
   ======================================== */
/* CSS Variables for consistent horizontal padding across header and footer */
:root {
	--layout-padding-horizontal: 20px; /* Default padding for screens 320px and above */
}

/* Responsive padding breakpoints */
@media (min-width: 1024px) {
	:root {
		--layout-padding-horizontal: 36px; /* Padding for screens 1024px and above */
	}
}

@media (min-width: 1440px) {
	:root {
		--layout-padding-horizontal: 48px; /* Padding for screens 1440px and above */
	}
}

/* Common header and footer visibility rules shared across every template. */
.sangeetly-header-mobile { /* Display mobile header by default for mobile-first approach. */
	display: block; /* Display on mobile by default */
	width: 100%;
	position: relative; /* Ensure proper positioning */
	z-index: 1000; /* Keep header above other content */
}

.gift-category-section { /* Align sections vertically while preserving existing Anima wrappers. */
	display: flex;
	flex-direction: column;
	gap: clamp(18px, 3vw, 32px);
	width: 100%;
	padding: 0 var(--layout-padding-horizontal); /* Use global responsive padding variable for consistent horizontal spacing */
	box-sizing: border-box;
}

.gift-category-section__track { /* Enable horizontal scrolling for gift cards without breaking legacy class names. */
	display: flex;
	gap: clamp(14px, 3vw, 24px);
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0; /* Padding removed as requested */
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none; /* Hide scrollbar on Firefox while preserving scrollability. */
	box-sizing: border-box;
}

/* Combined selector for elements with both frame-148 and gift-category-section__track classes */
.frame-148.gift-category-section__track,
.gift-category-section__track.frame-148 { /* Ensure no padding when both classes are present. */
	padding: 0 !important; /* Force remove all padding */
}

.gift-category-section__track::-webkit-scrollbar { /* Hide scrollbar on WebKit browsers. */
	display: none;
}

.gift-category-card { /* Present each gift category as a rounded tile anchored for scroll snapping. */
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
	gap: clamp(10px, 2vw, 16px);
	scroll-snap-align: start;
	flex: 0 0 auto;
	min-width: clamp(160px, 42vw, 220px);
	max-width: clamp(180px, 32vw, 240px);
}

.gift-category-card__image { /* Maintain square-ish card ratio with subtle background. */
	width: 100%;
	aspect-ratio: 1 / 1;
	background-color: #f0f0f0;
	border-radius: clamp(12px, 2vw, 20px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.gift-category-card__img { /* Ensure thumbnails fill card space without distortion. */
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gift-category-card__label { /* Center label text and keep uppercase styling from legacy classes. */
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0;
}

.gift-category-section__dots { /* Reuse pagination dot layout for gift sections. */
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
}

.gift-category-section__dots .dot { /* Visible circular dots for carousel pagination. */
	width: 6px;
	height: 6px;
	background-color: #000000;
	border-radius: 50%;
	display: inline-block;
	opacity: 0.3;
	transform: scale(1);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.gift-category-section[data-gift-view="mobile"] .gift-category-card { /* Adjust mobile card sizing for narrow screens. */
	min-width: clamp(140px, 60vw, 200px);
	max-width: clamp(160px, 70vw, 220px);
}

@media (min-width: 768px) {
	.gift-category-section[data-gift-view="desktop"] .gift-category-card { /* Scale cards appropriately on larger screens. */
		min-width: clamp(180px, 18vw, 240px);
		max-width: clamp(200px, 16vw, 260px);
	}
}
.sangeetly-header-desktop { /* Hide desktop header on small screens; revealed via media query. */
	display: none;
}

.header-shared { /* Base wrapper styling keeps header background consistent across pages. */
	background-color: #ffffff;
	color: #0a0a0a;
	width: 100%;
}

.header-shared img { /* Ensure header icons/logos scale without distortion. */
	display: block;
	max-width: 100%;
	height: auto;
}

.sangeetly-header-mobile .frame-1 { /* Stack mobile header content vertically with spacing. */
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 8px;
}

.sangeetly-header-mobile .frame { /* Expand mobile header rows to full width for alignment. */
	display: flex;
	flex-direction: column;
	width: 100%;
}

.sangeetly-header-mobile .top-part { /* Render announcement bar with brand color. */
	background-color: #a3e1ff;
	text-align: center;
	padding: clamp(8px, 2vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
	line-height: 1;
	min-height: clamp(34px, 8.7vw, 38px);
	max-height: 38px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sangeetly-header-mobile .top-part p,
.sangeetly-header-mobile .free-shipping-on-orders-rs-1999 { /* Control announcement typography to avoid overflow. */
	margin: 0;
	font-size: clamp(12px, 2.5vw, 14px);
	font-weight: 400;
	color: #000000;
	line-height: 100%;
}

.sangeetly-header-mobile .app-bar { /* Layout app bar items horizontally with spacing. */
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(12px, 3vw, 40px);
	padding: clamp(8px, 2vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
	min-height: clamp(64px, 16.4vw, 96px);
	max-height: 96px;
	width: 100%;
	position: relative;
	border-bottom: 1px solid #ededed;
}

.sangeetly-header-mobile .frame-1-1,
.sangeetly-header-mobile .frame-1-2 { /* Align icon clusters in mobile header. */
	display: flex;
	align-items: center;
	gap: clamp(8px, 2vw, 16px);
	min-width: clamp(60px, 15.4vw, 64px);
	max-width: 64px;
	min-height: clamp(24px, 6.2vw, 24px);
	max-height: 24px;
}

.sangeetly-header-mobile .x75310f82-4cfd-4b43-8988-24001c1d7940-1 { /* Logo image responsive sizing. */
	max-width: clamp(164px, 42vw, 164px);
	max-height: clamp(64px, 16.4vw, 96px);
	width: auto;
	height: auto;
	object-fit: contain;
}


.sangeetly-header-mobile .state-layer-1,
.sangeetly-header-mobile .state-layer-1.state-layer-3,
.sangeetly-header-mobile .leading-icon,
.sangeetly-header-mobile .leading-icon .content,
.sangeetly-header-mobile .state-layer-1 img,
.sangeetly-header-mobile .state-layer-3 img { /* Make hamburger icon clickable with pointer cursor. */
	cursor: pointer;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	pointer-events: auto;
}

.sangeetly-header-mobile .state-layer-1 img.icon { /* Ensure hamburger image is clickable. */
	pointer-events: auto;
	cursor: pointer;
}

.sangeetly-header-mobile .avatar-1 { /* Style search icon as clickable link. */
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.sangeetly-header-mobile .avatar-1 img { /* Ensure search icon image displays properly. */
	display: block;
	width: 24px;
	height: 24px;
}

.sangeetly-header-mobile .mobile-search-input { /* Style hidden search input when revealed via JS. */
	width: 100%;
	margin-top: 8px;
	padding: 10px 12px;
	border: 1px solid #d9d9d9;
	border-radius: 8px;
	font-size: 14px;
	display: none;
}

.sangeetly-header-mobile .mobile-search-input.show { /* Ensure JS toggle displays the search field. */
	display: block;
}

/* Mobile Menu Styles */
.sangeetly-header-mobile { /* Ensure mobile header has relative positioning for dropdown menu. */
	position: relative;
	z-index: 1000;
}

/* Reset any conflicting styles for mobile menu */
.sangeetly-header-mobile .mobile-menu,
.sangeetly-header-mobile .mobile-menu * {
	box-sizing: border-box;
}

.sangeetly-header-mobile .mobile-menu a,
.sangeetly-header-mobile .mobile-menu button {
	margin: 0;
	border: none;
	outline: none;
}

.sangeetly-header-mobile .mobile-menu { /* Mobile navigation menu container - dropdown style positioned under app-bar. */
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	width: 90%;
	max-width: 320px;
	background-color: #ffffff;
	z-index: 9999;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	display: none;
	flex-direction: column;
	overflow: hidden;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.sangeetly-header-mobile .mobile-menu.menu-open { /* Show dropdown menu when open. */
	display: flex;
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* Hamburger and Cancel icon toggle styles */
.sangeetly-header-mobile .state-layer-1.state-layer-3 { /* Container for hamburger/cancel icon toggle. */
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

.sangeetly-header-mobile .hamburger-icon,
.sangeetly-header-mobile .cancel-icon { /* Icon sizing for hamburger and cancel icons. */
	width: 24px;
	height: 24px;
	display: block;
	transition: opacity 0.2s ease;
	position: absolute;
	top: 0;
	left: 0;
}

.sangeetly-header-mobile .cancel-icon { /* Cancel icon styling. */
	color: #000000;
	stroke: currentColor;
	fill: none;
}

.sangeetly-header-mobile .mobile-menu-nav { /* Navigation menu list container. */
	display: flex;
	flex-direction: column;
	padding: 12px 0;
	width: 100%;
	box-sizing: border-box;
}

.sangeetly-header-mobile .mobile-menu-item { /* Individual menu item styling. */
	display: block;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 500;
	color: #000000;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.2s ease, color 0.2s ease;
	width: 100%;
	box-sizing: border-box;
	white-space: nowrap;
	text-align: left;
	cursor: pointer;
}

.sangeetly-header-mobile .mobile-menu-item:first-of-type { /* First menu item. */
	border-top: none;
}

.sangeetly-header-mobile .mobile-menu-item:last-child { /* Remove border from last menu item. */
	border-bottom: none;
}

.sangeetly-header-mobile .mobile-menu-item:hover,
.sangeetly-header-mobile .mobile-menu-item:focus { /* Hover and focus states for menu items. */
	background-color: #f5f5f5;
	color: #000000;
	text-decoration: none;
	outline: none;
}

.sangeetly-header-mobile .mobile-menu-item:active { /* Active state for menu items. */
	background-color: #e8e8e8;
}

/* Prevent body scroll when menu is open - removed for dropdown menu */
body.menu-open { /* Keep body scroll enabled for dropdown menu. */
	/* overflow: hidden; - Removed for dropdown menu style */
	width: 100%;
}

/* Additional mobile menu fixes to prevent collapse */
.sangeetly-header-mobile .mobile-menu-nav a { /* Ensure menu links maintain proper display. */
	display: block;
	width: 100%;
	min-height: 48px;
	line-height: 1.5;
}

.sangeetly-header-desktop { /* Provide subtle border separation for desktop header. */
	border-bottom: 1px solid #ededed;
}

.sangeetly-header-desktop .frame-1-1 { /* Center announcement bar on desktop. */
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #a4e1ff;
	padding: clamp(10px, 2.5vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
	min-height: clamp(34px, 8.7vw, 38px);
	max-height: 38px;
	width: 100%;
}

.sangeetly-header-desktop .frame-1-1 p,
.sangeetly-header-desktop .enjoy-free-shipping.nunitosans-normal-black-14px-2 { /* Tweak announcement typography for readability. */
	margin: 0;
	font-size: clamp(12px, 2.5vw, 14px);
	font-weight: 400;
	color: #000000;
	line-height: 100%;
}

.sangeetly-header-desktop .frame-6 { /* Lay out desktop header primary row with flexbox. */
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(12px, 3vw, 40px);
	padding: clamp(11px, 2.8vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
	min-height: clamp(64px, 16.4vw, 96px);
	max-height: 96px;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.sangeetly-header-desktop .frame-2-1,
.sangeetly-header-desktop .frame-2-1.nunitosans-normal-black-16px-2 { /* Position navigation links evenly across remaining space in single line. */
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: clamp(12px, 3vw, 42px);
	flex: 1 1 auto;
	justify-content: center;
	min-width: 0;
	max-width: 494px;
	min-height: clamp(22px, 5.6vw, 22px);
	max-height: 22px;
	white-space: nowrap;
}

.sangeetly-header-desktop .frame,
.sangeetly-header-desktop .frame + .by,
.sangeetly-header-desktop .frame-2-1 .by { /* Keep compound nav labels aligned in single line. */
	display: inline-flex;
	align-items: center;
	gap: clamp(6px, 1.5vw, 6px);
	min-height: clamp(22px, 5.6vw, 22px);
	max-height: 22px;
	white-space: nowrap;
	flex-shrink: 0;
	cursor: pointer;
}

/* Desktop menu items - Shop and By links */
.sangeetly-header-desktop .frame-2-1 .frame,
.sangeetly-header-desktop .frame-2-1 .frame .shop,
.sangeetly-header-desktop .frame-2-1 .by { /* Make desktop navigation items clickable. */
	cursor: pointer;
}

.sangeetly-header-desktop .frame-3 { /* Size dropdown caret wrapper. */
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sangeetly-header-desktop .frame-3-1 { /* Style the search input pill on desktop. */
	display: flex;
	align-items: center;
	gap: clamp(12px, 3vw, 12px);
	background-color: #f5f5f5;
	border-radius: 62px;
	padding: clamp(12px, 3vw, 12px) clamp(16px, 4vw, 16px);
	flex: 0 1 clamp(200px, 51.3vw, 292px);
	min-width: 200px;
	max-width: 292px;
	min-height: clamp(48px, 12.3vw, 48px);
	max-height: 48px;
}

.sangeetly-header-desktop .frame-1 { /* Normalize icon button size in desktop header. */
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(24px, 6.2vw, 24px);
	height: clamp(24px, 6.2vw, 24px);
	max-width: 24px;
	max-height: 24px;
}

.sangeetly-header-desktop .search-for-products { /* Style desktop search field inline. */
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 16px;
	flex: 1 1 auto;
	min-width: 0;
	color: #333333;
}

.sangeetly-header-desktop .frame-5-1 { /* Align account/cart icons with spacing. */
	display: flex;
	align-items: center;
	gap: clamp(12px, 3vw, 16px);
	min-width: clamp(60px, 15.4vw, 64px);
	max-width: 64px;
	min-height: clamp(24px, 6.2vw, 24px);
	max-height: 24px;
}

.sangeetly-header-desktop .frame-5-1 a { /* Remove underline from header action links. */
	text-decoration: none;
}

/* Responsive header scaling - 768px breakpoint */
@media (min-width: 768px) {
	.sangeetly-header-mobile .top-part { /* Scale announcement bar proportionally at tablet size. */
		padding: clamp(9px, 1.2vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(35px, 4.6vw, 38px);
	}

	.sangeetly-header-mobile .top-part p,
	.sangeetly-header-mobile .free-shipping-on-orders-rs-1999 { /* Scale font size proportionally. */
		font-size: clamp(12.5px, 1.6vw, 14px);
	}

	.sangeetly-header-mobile .app-bar { /* Scale app bar proportionally. */
		padding: clamp(9px, 1.2vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(70px, 9.1vw, 96px);
		gap: clamp(14px, 1.8vw, 40px);
	}

	.sangeetly-header-mobile .frame-1-1,
	.sangeetly-header-mobile .frame-1-2 { /* Scale icon clusters proportionally. */
		min-width: clamp(62px, 8.1vw, 64px);
		gap: clamp(10px, 1.3vw, 16px);
	}

	.sangeetly-header-mobile .x75310f82-4cfd-4b43-8988-24001c1d7940-1 { /* Scale logo proportionally. */
		max-width: clamp(164px, 21.4vw, 164px);
		max-height: clamp(70px, 9.1vw, 96px);
	}

	.sangeetly-header-desktop .frame-1-1 { /* Scale desktop announcement bar. */
		padding: clamp(10px, 1.3vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(35px, 4.6vw, 38px);
	}

	.sangeetly-header-desktop .frame-1-1 p,
	.sangeetly-header-desktop .enjoy-free-shipping.nunitosans-normal-black-14px-2 { /* Scale desktop announcement text. */
		font-size: clamp(12.5px, 1.6vw, 14px);
	}

	.sangeetly-header-desktop .frame-6 { /* Scale desktop header bar. */
		padding: clamp(11px, 1.4vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(70px, 9.1vw, 96px);
		gap: clamp(20px, 2.6vw, 40px);
	}

	.sangeetly-header-desktop .frame-2-1,
	.sangeetly-header-desktop .frame-2-1.nunitosans-normal-black-16px-2 { /* Scale navigation links in single line - fit content at 768px. */
		gap: clamp(16px, 2.1vw, 42px);
		max-width: none;
		width: auto;
		flex: 0 0 auto;
		justify-content: flex-start;
		flex-wrap: nowrap;
		white-space: nowrap;
		min-width: 0;
	}

	.sangeetly-header-desktop .frame-3-1 { /* Scale search input. */
		flex: 0 1 clamp(220px, 28.6vw, 292px);
		max-width: clamp(220px, 28.6vw, 292px);
		padding: clamp(12px, 1.6vw, 12px) clamp(16px, 2.1vw, 16px);
	}

	.sangeetly-header-desktop .frame-5-1 { /* Scale icon group. */
		min-width: clamp(62px, 8.1vw, 64px);
		gap: clamp(14px, 1.8vw, 16px);
	}
}

/* Responsive header scaling - 1024px breakpoint */
@media (min-width: 1024px) {
	.sangeetly-header-mobile .top-part { /* Scale announcement bar at small desktop size. */
		padding: clamp(10px, 1vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(36px, 3.5vw, 38px);
	}

	.sangeetly-header-mobile .top-part p,
	.sangeetly-header-mobile .free-shipping-on-orders-rs-1999 { /* Scale font size. */
		font-size: clamp(13px, 1.3vw, 14px);
	}

	.sangeetly-header-mobile .app-bar { /* Scale app bar. */
		padding: clamp(10px, 1vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(80px, 7.8vw, 96px);
		gap: clamp(25px, 2.4vw, 40px);
	}

	.sangeetly-header-mobile .frame-1-1,
	.sangeetly-header-mobile .frame-1-2 { /* Scale icon clusters. */
		min-width: clamp(63px, 6.2vw, 64px);
		gap: clamp(12px, 1.2vw, 16px);
	}

	.sangeetly-header-mobile .x75310f82-4cfd-4b43-8988-24001c1d7940-1 { /* Scale logo. */
		max-width: clamp(164px, 16vw, 164px);
		max-height: clamp(80px, 7.8vw, 96px);
	}

	.sangeetly-header-desktop .frame-1-1 { /* Scale desktop announcement bar. */
		padding: clamp(10px, 1vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(36px, 3.5vw, 38px);
	}

	.sangeetly-header-desktop .frame-1-1 p,
	.sangeetly-header-desktop .enjoy-free-shipping.nunitosans-normal-black-14px-2 { /* Scale desktop announcement text. */
		font-size: clamp(13px, 1.3vw, 14px);
	}

	.sangeetly-header-desktop .frame-6 { /* Scale desktop header bar. */
		padding: clamp(11px, 1.1vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(80px, 7.8vw, 96px);
		gap: clamp(30px, 2.9vw, 40px);
	}

	.sangeetly-header-desktop .frame-2-1,
	.sangeetly-header-desktop .frame-2-1.nunitosans-normal-black-16px-2 { /* Scale navigation links in single line - fit content at 1024px. */
		gap: clamp(20px, 2vw, 42px);
		max-width: none;
		width: auto;
		flex: 0 0 auto;
		justify-content: flex-start;
		flex-wrap: nowrap;
		white-space: nowrap;
		min-width: 0;
	}

	.sangeetly-header-desktop .frame-3-1 { /* Scale search input. */
		flex: 0 1 clamp(250px, 24.4vw, 292px);
		max-width: clamp(250px, 24.4vw, 292px);
	}

	.sangeetly-header-desktop .frame-5-1 { /* Scale icon group. */
		min-width: clamp(63px, 6.2vw, 64px);
		gap: clamp(15px, 1.5vw, 16px);
	}
}

/* Responsive header scaling - 1024px breakpoint */
@media (min-width: 1024px) {
	.sangeetly-header-mobile .top-part { /* Scale announcement bar at medium desktop size. */
		padding: clamp(10px, 0.8vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(37px, 2.9vw, 38px);
	}

	.sangeetly-header-mobile .top-part p,
	.sangeetly-header-mobile .free-shipping-on-orders-rs-1999 { /* Scale font size. */
		font-size: clamp(13.5px, 1.1vw, 14px);
	}

	.sangeetly-header-mobile .app-bar { /* Scale app bar. */
		padding: clamp(11px, 0.9vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(88px, 6.9vw, 96px);
		gap: clamp(35px, 2.7vw, 40px);
	}

	.sangeetly-header-mobile .frame-1-1,
	.sangeetly-header-mobile .frame-1-2 { /* Scale icon clusters. */
		min-width: clamp(63px, 4.9vw, 64px);
		gap: clamp(14px, 1.1vw, 16px);
	}

	.sangeetly-header-mobile .x75310f82-4cfd-4b43-8988-24001c1d7940-1 { /* Scale logo. */
		max-width: clamp(164px, 12.8vw, 164px);
		max-height: clamp(88px, 6.9vw, 96px);
	}

	.sangeetly-header-desktop .frame-1-1 { /* Scale desktop announcement bar. */
		padding: clamp(10px, 0.8vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(37px, 2.9vw, 38px);
	}

	.sangeetly-header-desktop .frame-1-1 p,
	.sangeetly-header-desktop .enjoy-free-shipping.nunitosans-normal-black-14px-2 { /* Scale desktop announcement text. */
		font-size: clamp(13.5px, 1.1vw, 14px);
	}

	.sangeetly-header-desktop .frame-6 { /* Scale desktop header bar. */
		padding: clamp(11px, 0.9vw, 11px) var(--layout-padding-horizontal); /* Use global responsive padding variable */
		min-height: clamp(88px, 6.9vw, 96px);
		gap: clamp(35px, 2.7vw, 40px);
	}

	.sangeetly-header-desktop .frame-2-1,
	.sangeetly-header-desktop .frame-2-1.nunitosans-normal-black-16px-2 { /* Scale navigation links in single line. */
		gap: clamp(35px, 2.7vw, 42px);
		max-width: clamp(450px, 35.2vw, 494px);
		flex-wrap: nowrap;
		white-space: nowrap;
	}

	.sangeetly-header-desktop .frame-3-1 { /* Scale search input. */
		flex: 0 1 clamp(270px, 21.1vw, 292px);
		max-width: clamp(270px, 21.1vw, 292px);
	}

	.sangeetly-header-desktop .frame-5-1 { /* Scale icon group. */
		min-width: clamp(63px, 4.9vw, 64px);
		gap: clamp(15px, 1.2vw, 16px);
	}
}

/* Ensure footer wrapper is visible on mobile */
.site-footer { /* Keep footer wrapper visible on all screen sizes. */
	display: block !important;
}

/* --- Custom Song Section styles START --- */
.custom-song-section .custom-song-card__cta.custom-song-card__cta-mobile { /* Show mobile CTA by default to support small screens. */
	display: block !important;
}

.custom-song-section .custom-song-card__cta.custom-song-card__cta-desktop { /* Hide desktop CTA until desktop breakpoint. */
	display: none !important;
}

.custom-song-section { /* Custom song hero wrapper: wrap promotional card with aligned spacing */
	padding: 20px var(--layout-padding-horizontal); /* Use global responsive padding variable for consistent horizontal spacing */
	width: 100%;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
}

.custom-song-card { /* Render promotional card with background image for mobile view - responsive sizing based on 362×292 baseline. */
	background-image: url('../../anima/img/clip-path-group.png');
	background-image: image-set(url('../../anima/img/clip-path-group.png') 1x, url('../../anima/img/clip-path-group@2x.png') 2x);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 20px; /* Fixed border radius: 20px */
	padding: 20px; /* Fixed padding: 20px */
	display: flex;
	flex-direction: column;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.custom-song-card__main { /* Layout copy, CTA, and illustration - responsive gap matching image layout. */
	display: flex;
	flex-direction: column; 
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	flex: 1; /* Allow main content to grow and fill available space */
	width: 100%;
}

.custom-song-card__copy { /* Group title, subtitle, and CTA together for layout control - responsive gap. */
	display: flex;
	flex-direction: column;
	align-items: center; /* Left-align content to match image */
}

.custom-song-card__row {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-evenly;
}

.custom-song-card__title { 
	font-family: "Allura", "Brush Script MT", cursive;
	font-weight: 700; /* Bold font weight */
	font-size: 30px; /* Fixed font size: 30px */
	line-height: 1.2; /* Maintain readable line height */
	color: #000000; /* Black color matching image exactly */
	margin: 0;
	width: 100%; /* Full width within copy container */
	max-width: 100%; /* Prevent overflow on smaller screens */
}
@media (min-width: 375px) {
	.custom-song-card__title {
		font-size: 38px;
	}
	.custom-song-card__row {
		justify-content: space-between;
	}
}

.custom-song-card__subtitle { /* Style price subtitle text - clear sans-serif black font matching image - responsive font size based on 144×21 baseline. */
	font-family: "Poppins", sans-serif; /* Apply Poppins font */
	font-size: clamp(12px, 3.08vw, 18px); /* Responsive typography: 12-18px */
	font-weight: 400; /* Normal weight matching image */
	letter-spacing: 0.04em; /* Reduced letter spacing to match image */
	text-transform: none; /* No uppercase to match image exactly */
	color: #000000; /* Black color matching image exactly */
	margin: 0;
	width: auto; /* Auto width to fit content */
	max-width: 100%; /* Prevent overflow on smaller screens */
}

.custom-song-card__cta { /* Shared CTA button styling - responsive sizing based on 188×32 baseline. */
	font-family: "Poppins", sans-serif; /* Apply Poppins font */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: clamp(8px, 2.05vw, 12px) clamp(20px, 5.13vw, 32px); /* Responsive padding: 8-12px vertical, 20-32px horizontal */
	border-radius: 48px; /* Maintain pill shape */
	background-color: #000000;
	color: #ffffff;
	font-size: clamp(11px, 2.82vw, 14px); /* Responsive typography: 11-14px */
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	width: auto; /* Auto width to fit content */
	max-width: 100%; /* Prevent overflow on smaller screens */
	white-space: nowrap; /* Keep button text on one line */
	margin-top: clamp(4px, 1.03vw, 8px); /* Small margin above button */
}

.custom-song-card__cta:hover,
.custom-song-card__cta:focus { /* Provide subtle interaction feedback for CTA. */
	transform: translateY(-1px);
	box-shadow: 0 clamp(16px, 4.1vw, 20px) clamp(24px, 6.15vw, 36px) rgba(0, 0, 0, 0.2); /* Responsive hover shadow */
}

.custom-song-card__illustration { /* Illustration container with proper positioning - responsive sizing based on 142×196 baseline. */
	position: relative;
	z-index: 1;
	width: clamp(100px, 25.64vw, 142px); /* Responsive width: 100-142px based on baseline */
	max-width: 39.23%; /* 142/362 = 39.23% of card width at baseline */
	flex-shrink: 0; /* Prevent illustration from shrinking */
	aspect-ratio: 142 / 196; /* Maintain illustration aspect ratio from baseline */
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-song-card__illustration img { /* Constrain illustration sizing for consistency - responsive width. */
	width: 100%;
	height: 100%;
	object-fit: contain; /* Maintain aspect ratio without cropping */
	display: block;
}

.custom-song-card__footer { /* Align availability footer row neatly - horizontal layout matching image. */
	display: flex;
	flex-direction: row; /* Horizontal layout: "Available at" left, platforms right */
	align-items: center;
	justify-content: flex-start; /* Start from left to match image */
	gap: clamp(10px, 2.56vw, 14px); /* Responsive gap: 10-14px between text and icons */
	position: relative;
	z-index: 1;
	width: 100%;
	flex-wrap: wrap; /* Allow wrapping on very small screens */
}

.custom-song-card__availability { /* Style availability label wording - smaller sans-serif black font matching image - responsive font size based on 93×14 baseline. */
	font-family: "Poppins", sans-serif; /* Apply Poppins font */
	font-size: clamp(10px, 2.56vw, 13px); /* Responsive typography: 10-13px */
	font-weight: 400; /* Normal weight matching image */
	letter-spacing: 0.04em; /* Reduced letter spacing to match image */
	text-transform: none; /* No uppercase to match image exactly */
	color: #000000; /* Black color matching image exactly */
	width: auto; /* Auto width to fit content */
	max-width: 100%; /* Prevent overflow on smaller screens */
	white-space: nowrap; /* Keep text on one line */
}

.custom-song-card__platforms { /* Arrange streaming platform icons horizontally - responsive sizing based on 84×33 baseline. */
	display: flex;
	align-items: center;
	justify-content: flex-start; /* Start from left to match image */
	width: auto; /* Auto width to fit content */
	max-width: 100%; /* Prevent overflow on smaller screens */
	flex-shrink: 0; /* Prevent icons from shrinking */
}

.custom-song-card__platforms img { /* Set consistent size on platform icons - responsive sizing. */
	width: clamp(28px, 7.18vw, 36px); /* Responsive icon size: 28-36px */
	height: clamp(28px, 7.18vw, 36px); /* Maintain square aspect ratio */
	object-fit: contain;
	filter: drop-shadow(0 clamp(3px, 0.77vw, 4px) clamp(6px, 1.54vw, 8px) rgba(15, 32, 60, 0.18)); /* Responsive drop shadow */
}

/* Ultra-small screens default to centered content for readability. */
.custom-song-card {
	overflow: visible; /* Permit footer block to stay inside card instead of being clipped. */
}

.custom-song-card__main,
.custom-song-card__copy,
.custom-song-card__footer {
	text-align: center;
}

.custom-song-card__title,
.custom-song-card__subtitle {
	text-align: center;
}

.custom-song-card__availability,
.custom-song-card__platforms {
	justify-content: center;
	text-align: center;
}

@media (min-width: 375px) { /* Restore left-aligned layout for wider screens. */
	.custom-song-card {
		overflow: hidden;
	}

	.custom-song-card__main,
	.custom-song-card__copy,
	.custom-song-card__footer,
	.custom-song-card__title,
	.custom-song-card__subtitle {
		text-align: left;
	}

	.custom-song-card__availability,
	.custom-song-card__platforms {
		justify-content: flex-start;
		text-align: left;
	}
}

.custom-song-section-desktop { /* Desktop/tablet banner hidden by default to preserve mobile card. */
	display: none;
	width: 100%;
}

@media (min-width: 768px) { /* Tablet breakpoint: reveal desktop banner layout and hide mobile card. */
	.custom-song-section {
		display: none !important;
	}

	.custom-song-section-desktop {
		display: flex;
		padding: 16px var(--layout-padding-horizontal); /* Use global responsive padding variable for consistent horizontal spacing */
		box-sizing: border-box;
	}

	.custom-song-banner { /* Core tablet banner replicating provided reference. */
		background-image: url('../../anima/img/clip-path-group.png');
		background-image: image-set(url('../../anima/img/clip-path-group.png') 1x, url('../../anima/img/clip-path-group@2x.png') 2x);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		border-radius: 20px; /* Updated border radius: 20px */
		max-height: 161px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0px 30px;
	}

	.custom-song-banner__left,
	.custom-song-banner__right {
		display: flex;
		flex-direction: column;
	}

	.custom-song-banner__title {
		font-family: "Allura", "Brush Script MT", cursive;
		font-size: 42px; /* Updated font size: 42px */
		font-weight: 700; /* Added font weight: 700 */
		line-height: 1.05;
		margin: 0;
		color: #000000;
	}

	.custom-song-banner__subtitle {
		font-family: "Poppins", sans-serif; /* Apply Poppins font */
		font-size: clamp(18px, 2.4vw, 22px);
		text-transform: uppercase;
		text-align: center; /* Center align text */
		letter-spacing: 0.15em; /* Updated letter spacing: 0.15em */
		margin: 0;
		color: #000000;
	}

	.custom-song-banner__mascot {
		display: flex;
		align-items: center;
		justify-content: center;
		width: clamp(140px, 15vw, 200px);
	}

	.custom-song-banner__mascot img {
		width: 100%;
		height: 100%;
		display: block;
	}

	.custom-song-banner__right {
		align-items: center;
		text-align: center;
	}

	.custom-song-banner__cta {
		font-family: "Poppins", sans-serif; /* Apply Poppins font */
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 12px clamp(32px, 4vw, 48px);
		border-radius: 999px;
		background-color: #000000;
		color: #ffffff;
		font-size: 10px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.2em;
		text-decoration: none;
		transition: transform 0.2s ease;
	}

	.custom-song-banner__cta:hover,
	.custom-song-banner__cta:focus {
		transform: translateY(-1px);
	}

	.custom-song-banner__meta {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		gap: 8px;
		margin-top: clamp(10px, 1.5vw, 16px);
		color: #000000;
		font-size: clamp(12px, 1.7vw, 14px);
		text-transform: uppercase;
		letter-spacing: 0.25em;
	}

	.custom-song-banner__icons {
		display: inline-flex;
		align-items: center;
		gap: 12px;
	}

	.custom-song-banner__icons img {
		width: clamp(28px, 3.7vw, 36px);
		height: clamp(28px, 3.7vw, 36px);
		object-fit: contain;
	}

	.custom-song-banner__label { /* Style for banner label text */
		font-family: "Poppins", sans-serif; /* Apply Poppins font */
	}
}

@media (min-width: 1024px) { /* Desktop refinements for custom song banner. */
	.custom-song-section-desktop {
		align-items: center;
		justify-content: center;
		padding: 24px var(--layout-padding-horizontal); /* Use global responsive padding variable for consistent horizontal spacing */
		max-height: 200px;
		margin-bottom: 24px;
	}

	.custom-song-banner {
		width: 100%;
		max-height: 200px;
	}

	.custom-song-banner__title {
		font-size: 55px;
	}

	.custom-song-banner__mascot {
		width: clamp(180px, 14vw, 240px);
	}

	.custom-song-banner__cta {
		font-size: clamp(15px, 1.2vw, 18px);
		padding: 14px clamp(40px, 3.8vw, 56px);
	}

	.custom-song-banner__icons img {
		width: 40px;
		height: 40px;
	}
}

@media (min-width: 1440px) {
	.custom-song-banner {
		padding: 0px 80px;
	}
}

/* Custom Song Template - Main container styling */
.custom-song-template { /* Apply horizontal padding to custom song template container */
	box-sizing: border-box;
}

/* --- Custom Song Section styles END --- */


/* Footer Container - Based on group-13-1 structure */
.footer-container.group-13-1 {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 29px 18px 40px;
	background-color: #F0F0F0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Footer Top Section Wrapper - Mobile (no changes) */
.footer-container .footer-top-section {
	display: contents;
}

.footer-container .footer-brand-section {
	display: contents;
}

.footer-container .frame-50-1 {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 11px;
	width: 248px;
	margin: 0 auto 20px;
}

.footer-container .meet-santy-2-1 {
	height: 74px;
	width: 165px;
}

.footer-container .we-have-gifts-that-m-1 {
	letter-spacing: 0;
	line-height: 22px;
	text-align: center;
	width: 248px;
}

/* Social Icons Wrapper */
.footer-container .social-icons-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0 auto 20px;
	width: 148px;
	height: 28px;
}

.footer-container .social-icon-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.footer-container .social-icon-link:hover {
	opacity: 0.7;
}

.footer-container .social-icon-link img {
	height: auto;
	width: auto;
	max-height: 28px;
	display: block;
}

/* Footer Navigation Grid - Flexbox layout (2x2 on mobile, 4 columns on desktop) */
.footer-container .footer-navigation-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px 20px;
	margin: 0 auto 20px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	justify-content: center;
	align-items: flex-start;
}

.footer-container .frame-47 {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
	width: fit-content;
	flex: 0 1 calc(50% - 10px);
	order: 1;
}

.footer-container .frame-113 {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
	width: fit-content;
	flex: 0 1 calc(50% - 10px);
	order: 3;
}

.footer-container .frame-110 {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
	width: fit-content;
	flex: 0 1 calc(50% - 10px);
	order: 2;
}

.footer-container .frame-112 {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
	width: fit-content;
	flex: 0 1 calc(50% - 10px);
	order: 4;
}

.footer-container .help-menu-1 {
	letter-spacing: 3.00px;
	line-height: 18px;
	margin-top: -1.00px;
	white-space: nowrap;
	width: fit-content;
}

/* About Features Works - List styling */
.footer-container .about-features-works {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	letter-spacing: 0;
	line-height: 16px;
}

.footer-container .about-features-works li {
	margin: 0;
	padding: 0;
	display: block;
}

.footer-container .about-features-works li:not(:last-child) {
	margin-bottom: 16px;
}

.footer-container .about-features-works a {
	color: inherit;
	text-decoration: none;
	display: inline-block;
	transition: opacity 0.2s ease;
}

.footer-container .about-features-works a:hover {
	opacity: 0.7;
}

.footer-container .about-features-works-3 {
	width: fit-content;
	max-width: 100%;
}

.footer-container .about-features-works-2 {
	width: fit-content;
	max-width: 100%;
}

.footer-container .about-features-works-4 {
	width: fit-content;
	max-width: 100%;
}

.footer-container .line-5 {
	height: 1px;
	object-fit: cover;
	width: 358px;
	margin: 0 auto 17px;
	display: block;
}

.footer-container .footer-bottom-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin: 0 auto;
	width: fit-content;
}

.footer-container .x2000-2021-all-rights-reserved-1 {
	letter-spacing: 0;
	line-height: normal;
	text-align: right;
	width: 273px;
}

.footer-container .frame-53-1 {
	height: 41px;
	width: 257px;
	display: block;
}

/* Typography classes */
.footer-container .nunitosans-normal-black-14px {
	color: var(--black-2, #000000);
	font-family: var(--font-family-nunito_sans, "Nunito Sans", sans-serif);
	font-size: var(--font-size-s, 14px);
	font-style: normal;
	font-weight: 400;
}

.footer-container .nunitosans-medium-black-14px {
	color: var(--black, #000000);
	font-family: var(--font-family-nunito_sans, "Nunito Sans", sans-serif);
	font-size: var(--font-size-s, 14px);
	font-style: normal;
	font-weight: 500;
}

/* Responsive adjustments - Mobile-first approach */
@media (min-width: 375px) {
	.footer-container.group-13-1 {
		padding: 29px 20px 40px;
	}

	.footer-container .footer-navigation-grid {
		gap: 16px 24px;
	}

	.footer-container .frame-47,
	.footer-container .frame-113,
	.footer-container .frame-110,
	.footer-container .frame-112 {
		flex: 0 1 calc(50% - 12px);
	}
}

@media (min-width: 425px) {
	.footer-container.group-13-1 {
		padding: 29px 24px 40px;
	}

	.footer-container .footer-navigation-grid {
		gap: 16px 32px;
	}

	.footer-container .frame-47,
	.footer-container .frame-113,
	.footer-container .frame-110,
	.footer-container .frame-112 {
		flex: 0 1 calc(50% - 16px);
	}
}

@media (min-width: 768px) {
	.footer-container.group-13-1 {
		padding: 40px var(--layout-padding-horizontal, 24px) 48px;
	}

	.footer-container .frame-50-1 {
		align-items: center;
		width: auto;
		margin: 0 0 20px 0;
	}

	.footer-container .we-have-gifts-that-m-1 {
		text-align: center;
	}

	.footer-container .social-icons-wrapper {
		justify-content: center;
		margin: 0 0 20px 0;
		width: 100%;
	}

	.footer-container .footer-navigation-grid {
		flex-wrap: nowrap;
		gap: 40px 32px;
		margin: 0 0 20px 0;
		width: 100%;
		max-width: 100%;
		justify-content: flex-start;
	}

	.footer-container .frame-47,
	.footer-container .frame-113,
	.footer-container .frame-110,
	.footer-container .frame-112 {
		width: auto;
		min-width: 0;
		max-width: 100%;
		flex: 1 1 0;
	}

	.footer-container .frame-47 {
		order: 1;
	}

	.footer-container .frame-110 {
		order: 2;
	}

	.footer-container .frame-113 {
		order: 3;
	}

	.footer-container .frame-112 {
		order: 4;
	}

	.footer-container .line-5 {
		width: 100%;
		margin: 20px 0 17px;
	}

	.footer-container .footer-bottom-section {
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
		align-items: center;
	}

	.footer-container .x2000-2021-all-rights-reserved-1 {
		text-align: left;
		width: auto;
	}

	.footer-container .frame-53-1 {
		width: auto;
		height: auto;
	}
}

@media screen and (min-width: 1024px) {
	.footer-container.group-13-1 {
		padding: 48px var(--layout-padding-horizontal, 36px) 56px;
	}

	/* Desktop Footer Layout - Horizontal: Brand (left) + Navigation (right) */
	.footer-container .footer-top-section {
		display: flex;
		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 80px;
		width: 100%;
	}

	.footer-container .footer-brand-section {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		flex: 0 0 auto;
		min-width: 0;
	}

	.footer-container .frame-50-1 {
		align-items: flex-start;
		width: auto;
		margin: 0 0 20px 0;
	}

	.footer-container .we-have-gifts-that-m-1 {
		text-align: left;
		width: auto;
		max-width: 248px;
	}

	.footer-container .social-icons-wrapper {
		justify-content: flex-start;
		margin: 0;
		width: auto;
	}

	.footer-container .footer-navigation-grid {
		flex: 1 1 auto;
		justify-content: flex-start;
		margin: 0;
		gap: 40px 32px;
		max-width: none;
		align-items: flex-start;
	}

	.footer-container .footer-bottom-section {
		margin-top: 0;
	}
}

@media (min-width: 1440px) {
}

.footer-social-icons { /* Layout social icons in a neat row. */
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-social-icons .social-icon { /* Style individual social icon pills. */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	padding: 8px;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.footer-social-icons .social-icon:hover { /* Fade icons subtly when hovered. */
	opacity: 0.8;
}

.footer-social-icons .social-icon img { /* Ensure icon art scales correctly. */
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.footer-social-icons .social-icon-facebook { /* Override Facebook icon to inverse colors. */
	background-color: #000000;
	border: none;
}

.footer-social-icons .social-icon-facebook img { /* Force white icon within black circle. */
	filter: brightness(0) invert(1);
}

@media (min-width: 768px) { /* Desktop breakpoint: switch visibility for header and footer variants. */
	.sangeetly-header-mobile { /* Hide mobile header once viewport exceeds tablet size. */
		display: none !important; /* Force hide on desktop to prevent duplication */
	}

	.sangeetly-header-desktop { /* Reveal desktop header for wider layouts. */
		display: block !important; /* Force show on desktop */
	}
}

/* Hide the search input container in desktop header */
.sangeetly-header-desktop .frame-3-1 {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
}

/* Hide the search icon/avatar in mobile header */
.sangeetly-header-mobile .avatar-1 {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
}

/* ========================================
   Hide WooCommerce Block Grid Sale Badge
   ======================================== */
/* Hide the sale badge from WooCommerce block grid products */
.wc-block-grid__product .wc-block-grid__product-onsale,
.wc-block-grid__product-onsale,
.wc-block-components-product-sale-badge {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	position: absolute !important;
	left: -9999px !important;
}

/* ========================================
   Hide WooCommerce Core Sale Badge
   ======================================== */
/* Hide the default WooCommerce "Sale!" badge on products */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	overflow: hidden !important;
	position: absolute !important;
	left: -9999px !important;
}
