/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.9
	Stable tag: 3.4.9
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

/* ============================================
   GREEN ORGANIC ECOMMERCE THEME STYLES
   Pure & Sure Clone Structure
   ============================================ */

/* CSS Variables - Pure & Sure Inspired */
:root {
	--primary-color: #1B4332;
	--secondary-color: #2D6A4F;
	--accent-gold: #D4A373;
	--background: #F8F6F1;
	--cream-bg: #F8F6F1;
	--soft-beige: #F4EFE6;
	--text: #2B2B2B;
	--white: #FFFFFF;
	--gray-light: #E8E8E8;
	--gray-medium: #666666;
	--border-color: #DDDDDD;
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
	--transition: all 0.3s ease;
	--container-width: 1200px;
	--spacing-xs: 8px;
	--spacing-sm: 16px;
	--spacing-md: 24px;
	--spacing-lg: 32px;
	--spacing-xl: 48px;
	--spacing-2xl: 64px;
	--spacing-3xl: 96px;
	--font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	--page-width: 1200px;
}

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text);
	background-color: var(--background);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

ul {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

/* Container */
.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

.container-full {
	width: 100%;
	max-width: 100%;
}

.page-width {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
}

/* Remove any width restrictions from parent wrappers */
.site,
.site-main,
.page,
.page-content,
.content-area,
.homepage-wrapper,
main {
	max-width: none !important;
	width: 100%;
}

/* ============================================
   PURE & SURE CLONE SECTIONS
   ============================================ */

/* Slideshow Section - Hero */
.slideshow-section {
	margin: 0;
	padding: 0;
}

.container-inner {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

.slideshow {
	position: relative;
	overflow: hidden;
}

.main-slider {
	position: relative;
}

.slideshow .item {
	position: relative;
}

.slide-image {
	position: relative;
	width: 100%;
}

.image-content {
	position: relative;
	width: 100%;
}

.image-content img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.cap_content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.content {
	position: absolute;
	max-width: 50%;
	padding: 5%;
}

.caption-1 {
	font-size: 30px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
	line-height: 1.3;
}

.caption-2 {
	font-size: 18px;
	color: #535353;
	margin-bottom: 20px;
	line-height: 1.5;
}

.caption-3 a {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--primary-color);
	color: var(--white);
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.caption-3 a:hover {
	background-color: var(--secondary-color);
}

/* EFS Section - Everyday Food Made Good */
.efs-section {
	padding: 80px 20px;
	text-align: center;
}

.efs__container {
	max-width: 1200px;
	margin: 0 auto;
}

.efs__title {
	font-size: 36px;
	font-weight: 700;
	color: var(--efs-color, var(--primary-color));
	margin-bottom: 20px;
}

.efs__text {
	max-width: 800px;
	margin: 0 auto;
}

.efs__p {
	font-size: 18px;
	line-height: 1.7;
	color: #535353;
}

/* Explore Range Section */
.explore-range {
	padding: 60px 20px;
}

.er__inner {
	max-width: var(--page-width);
	margin: 0 auto;
}

.er__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.er__titlewrap {
	flex: 1;
}

.er__title {
	font-size: 32px;
	font-weight: 700;
	color: var(--er-title, var(--accent-gold));
	margin-bottom: 10px;
}

.er__subtitle {
	font-size: 16px;
	color: var(--er-subtitle, #b8b8b8);
}

.er__viewall {
	padding: 10px 25px;
	background-color: var(--er-btn-bg, var(--accent-gold));
	color: var(--er-btn-text, var(--white));
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.er__viewall:hover {
	background-color: var(--er-hover, var(--primary-color));
}

.er__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 20px;
}

.er__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 20px;
	border: 1px solid var(--er-card-border, #e6e6e6);
	border-radius: var(--er-card-radius, 5px);
	transition: var(--transition);
	text-decoration: none;
}

.er__card:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
}

.er__card-media {
	width: 140px;
	height: 140px;
	margin-bottom: 15px;
}

.er__card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.er__card-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--er-card-title, #1a1a1a);
}

/* Featured Products Section */
.featured-products-section {
	padding: 60px 20px;
}

.section-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 40px;
}

.prod-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

.prod-card {
	width: 100%;
}

.card {
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
	transition: var(--transition);
	background: var(--white);
}

.card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.thumb {
	position: relative;
	width: 100%;
	padding-top: 100%;
	overflow: hidden;
}

.img-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.img-wrap a {
	display: block;
	width: 100%;
	height: 100%;
}

.img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.card:hover .img-wrap img {
	transform: scale(1.05);
}

.card-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 5px 12px;
	background-color: var(--accent-gold);
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
}

.info {
	padding: 20px;
}

.row-title-price {
	margin-bottom: 15px;
}

.title {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	margin-bottom: 8px;
	line-height: 1.4;
}

.title:hover {
	color: var(--primary-color);
}

.price {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.btn-add-cart {
	display: inline-block;
	padding: 10px 20px;
	background-color: var(--primary-color);
	color: var(--white);
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	text-align: center;
	transition: var(--transition);
}

.btn-add-cart:hover {
	background-color: var(--secondary-color);
}

/* Static Banner Section */
.static-banner {
	margin: 40px 0;
}

.static-banner__container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}

.static-banner__image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.static-banner__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	max-width: 600px;
	padding: 20px;
}

.static-banner__content h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 15px;
}

.static-banner__content p {
	font-size: 18px;
	color: var(--white);
	margin-bottom: 25px;
	line-height: 1.5;
}

.btn-gold {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--accent-gold);
	color: var(--white);
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.btn-gold:hover {
	background-color: var(--primary-color);
}

/* Health Solutions Section - Kushals Solutions */
.kushals-solutions {
	padding: 60px 20px;
}

.kushals-solutions__inner {
	max-width: var(--page-width);
	margin: 0 auto;
}

.kushals-solutions__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.kushals-solutions__titles {
	flex: 1;
}

.kushals-solutions__heading {
	font-size: 32px;
	font-weight: 700;
	color: var(--heading, var(--primary-color));
	margin-bottom: 10px;
}

.kushals-solutions__subheading {
	font-size: 16px;
	color: var(--sub, #b8b8b8);
}

.kushals-solutions__viewall {
	padding: 10px 25px;
	background-color: var(--accent, var(--primary-color));
	color: var(--white);
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.kushals-solutions__viewall:hover {
	background-color: var(--secondary-color);
}

.kushals-solutions__panels {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.kushals-solutions__panel {
	display: none;
}

.kushals-solutions__panel.is-active {
	display: block;
}

.kushals-solutions__products {
	padding: 20px 0;
}

/* Certifications Section */
.certifications-section {
	padding: 60px 20px;
	background-color: var(--cream-bg);
}

.certifications-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.certification-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 20px;
	background: var(--white);
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.certification-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.certification-card img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin-bottom: 15px;
}

.certification-card h3 {
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
}

.cert-icon {
	font-size: 40px;
	margin-bottom: 15px;
}

/* Top Picks Section */
.top-picks-section {
	padding: 60px 20px;
}

.top-picks-swiper {
	position: relative;
	padding: 0 40px;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
}

.swiper-button-next {
	right: 0;
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background-color: var(--secondary-color);
}

.swiper-pagination {
	text-align: center;
	margin-top: 20px;
}

.swiper-pagination-bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: var(--gray-light);
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
}

.swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

/* Social Section */
.social-section {
	padding: 60px 20px;
}

.social-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.social-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 1;
}

.social-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.social-card:hover img {
	transform: scale(1.05);
}

.social-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

.social-card:hover .social-overlay {
	opacity: 1;
}

.social-overlay span {
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
}

/* Impact Section - Did You Know */
.impact-section {
	padding: 80px 20px;
	background-color: var(--banner-bg, var(--cream-bg));
}

.impact-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.impact-content h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.impact-content p {
	font-size: 18px;
	line-height: 1.7;
	color: var(--text);
	margin-bottom: 30px;
}

/* Why Choose Us Section */
.why-choose-us {
	padding: 80px 20px;
	background-color: var(--white);
}

.why-container {
	max-width: 1200px;
	margin: 0 auto;
}

.why-header {
	text-align: center;
	margin-bottom: 50px;
}

.why-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.why-header p {
	font-size: 18px;
	color: var(--gray-medium);
}

.why-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.why-left {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.why-item h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.why-item p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--gray-medium);
}

.why-right img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Features Row Section */
.features-row-section {
	padding: 60px 20px;
	background-color: var(--cream-bg);
}

.features-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 20px;
	background: var(--white);
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.feature-item:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.feature-icon-wrapper {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.feature-item h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.feature-item p {
	font-size: 14px;
	color: var(--gray-medium);
	line-height: 1.5;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
	.caption-1 {
		font-size: 24px;
	}

	.caption-2 {
		font-size: 16px;
	}

	.efs-section {
		padding: 56px 20px;
	}

	.efs__title {
		font-size: 28px;
	}

	.er__header {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.why-content {
		grid-template-columns: 1fr;
	}

	.why-right {
		order: -1;
	}

	.features-row {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}

	.prod-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 20px;
	}
}

@media (max-width: 576px) {
	.er__cards {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
		gap: 15px;
	}

	.er__card-media {
		width: 100px;
		height: 100px;
	}

	.er__card-title {
		font-size: 12px;
	}

	.certifications-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
		gap: 20px;
	}
}

/* Skip Link */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--primary-color);
	color: var(--white);
	padding: 8px;
	z-index: 100;
}

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

/* ============================================
   SECTION 1: ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 12px 0;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
}

.announcement-bar p {
	margin: 0;
}

/* ============================================
   SECTION 2: HEADER - Pure & Sure Clone
   ============================================ */
.ys-header-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 12000;
	background: var(--white);
	box-sizing: border-box;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	width: 100%;
}

.ys-promo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 12px;
	font-size: 16px;
	font-weight: 500;
	background-color: var(--primary-color);
	color: var(--white);
	overflow: hidden;
}

.marquee-container {
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
}

.marquee-content {
	display: inline-flex;
	animation: marquee 20s linear infinite;
}

.marquee-item {
	padding: 0 40px;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

.ys-promo p {
	margin: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float-btn svg {
	width: 28px;
	height: 28px;
}

.ys-header-inner {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 32px;
	height: 72px;
	min-height: 72px;
	gap: 32px;
	max-width: 1600px;
	margin: 0 auto;
}

.ys-header-col {
	display: flex;
	align-items: center;
}

.ys-header-hamburger-col {
	width: auto;
	flex-shrink: 0;
	display: flex;
}

@media (min-width: 992px) {
	.ys-header-hamburger-col {
		display: none;
	}
}

.ys-header-logo-col {
	width: 180px;
	flex-shrink: 0;
}

.ys-logo {
	flex-shrink: 0;
}

.ys-logo img {
	max-height: 45px;
	width: auto;
	max-width: 180px;
}

.ys-logo a {
	display: block;
}

.ys-logo .text-logo {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

.ys-header-nav-col {
	flex: 1;
}

.ys-header-search-col {
	width: 260px;
	flex-shrink: 0;
}

.ys-header-icons-col {
	width: 160px;
	flex-shrink: 0;
	
}

/* Header Search Form */
.ys-header-search-form {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 999px;
	height: 32px;
	width: 260px;
	padding: 0 16px;
	gap: 8px;
}

.ys-header-search-form:focus-within {
	border-color: var(--primary-color);
}

.ys-header-search-input-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	position: relative;
}

.ys-header-search-icon {
	color: #999;
	flex-shrink: 0;
}

.ys-header-search-label-wrapper {
	position: absolute;
	left: 26px;
	display: flex;
	align-items: center;
	gap: 4px;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.ys-header-search-input:focus ~ .ys-header-search-label-wrapper,
.ys-header-search-input:not(:placeholder-shown) ~ .ys-header-search-label-wrapper {
	opacity: 0;
}

.search-prefix {
	color: #999;
	font-size: 14px;
}

.search-keyword {
	color: var(--primary-color);
	font-size: 14px;
	font-weight: 600;
}

.ys-header-search-input {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 12px;
	color: #333;
	outline: none;
	padding: 0;
}

/* Desktop Navigation Menu */
.nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 40px;
}

.nav-menu li {
	margin: 0;
}

.nav-menu a {
	font-size: 12px;
	font-weight: 400;
	color: #1C1C1C;
	text-decoration: none;
	padding: 8px 0;
	transition: var(--transition);
	position: relative;
}

.nav-menu a:hover {
	color: var(--primary-color);
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

.nav-menu a:hover::after {
	width: 100%;
}

.ys-right {
	display: flex;
	align-items: center;
	gap: 22px;
	min-width: 0;
	flex: 0 0 auto;
}

.ys-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: transparent;
	color: #1C1C1C;
	transition: var(--transition);
	text-decoration: none;
	margin-right:20px;
}

.ys-icon-btn svg {
	width: 18px;
	height: 18px;
}

.ys-icon-btn:hover {
	background: #1B4332;
	color: #fff;
	border-radius: 50%;
}

.ys-cart-btn {
	position: relative;
}

/* Mobile Menu */
.ys-mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.35);
	z-index: 9997;
	display: none;
}

.ys-mobile-overlay.active {
	display: block;
}

.ys-mobile-menu {
	position: fixed;
	top: 0;
	left: -100%;
	width: 300px;
	background: #fff;
	z-index: 9999;
	transition: left 0.3s ease;
	box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.ys-mobile-menu.active {
	left: 0;
}

.ys-mobile-menu-inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 20px;
	padding-top: 70px;
	overflow-y: auto;
	max-height: 100vh;
}

.ys-mobile-menu-search {
	margin-bottom: 20px;
}

.ys-mobile-nav-menu {
	display: flex;
	flex-direction: column;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ys-mobile-nav-menu a {
	font-size: 16px;
	font-weight: 500;
	color: #1C1C1C;
	text-decoration: none;
	padding: 12px 0;
	display: block;
}

.ys-mobile-menu-separator {
	border-top: 1px solid #f0f0f0;
	margin: 15px 0;
}

.ys-mobile-menu-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ys-mobile-link {
	font-size: 16px;
	font-weight: 500;
	color: #1C1C1C;
	text-decoration: none;
	padding: 12px 0;
	display: block;
}

.ys-mobile-menu-footer {
	font-size: 13px;
	color: #666;
	font-weight: 500;
	text-align: center;
	margin-top: 20px;
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.ys-mobile-footer-dot {
	width: 8px;
	height: 8px;
	background: #4CAF50;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.2);
	}
}

/* Mobile Bottom Navigation */
.ys-mobile-bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
	background: #fff;
	border-top: 1px solid #EAEAEA;
	height: 65px;
	z-index: 9998;
	display: none;
}

.ys-mobile-bottom-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #1C1C1C;
	font-size: 12px;
	gap: 4px;
}

.ys-mobile-bottom-nav-item svg {
	width: 24px;
	height: 24px;
}

.ys-mobile-bottom-nav-item.active {
	color: #4CAF50;
}

@media (max-width: 991px) {
	.ys-mobile-bottom-nav {
		display: flex;
	}
}

.ys-cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--accent-gold);
	color: var(--white);
	font-size: 12px;
	font-weight: 600;
	line-height: 18px;
	text-align: center;
	display: none;
	box-sizing: border-box;
}

.ys-cart-count.has-items {
	display: block;
}

.ys-mobile-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

/* Desktop Navigation - 992px and above */
@media (min-width: 992px) {
	.ys-header-hamburger-col {
		display: none;
	}

	.ys-header-nav-col {
		display: flex;
	}

	.ys-header-search-col {
		display: flex;
	}

	.ys-header-icons-col {
		display: flex;
	}

	.ys-mobile-menu {
		display: none;
	}
}

/* Tablet Navigation - 768px to 991px */
@media (max-width: 991px) and (min-width: 768px) {
	.ys-header-nav-col {
		display: none;
	}

	.ys-header-search-col {
		display: none;
	}

	.ys-header-icons-col {
		display: flex;
	}

	.ys-mobile-menu {
		display: block;
	}

	.ys-header-logo-col {
		width: 140px;
	}

	.ys-logo img {
		max-height: 50px;
		max-width: 140px;
	}
}

/* Mobile Navigation - 767px and below */
@media (max-width: 767px) {
	.ys-header-nav-col {
		display: none;
	}

	.ys-header-search-col {
		display: none;
	}

	.ys-header-icons-col {
		display: none;
	}

	.ys-mobile-menu {
		display: block;
	}

	.ys-header-logo-col {
		width: 120px;
	}

	.ys-logo img {
		max-height: 45px;
		max-width: 120px;
	}
}

.mobile-nav-menu {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}

.mobile-nav-menu a {
	font-size: 18px;
	font-weight: 500;
	padding: var(--spacing-sm) 0;
	border-bottom: 1px solid var(--border-color);
	text-decoration: none;
	color: var(--text);
}

.ys-mobile-actions {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
	margin-top: var(--spacing-lg);
}

.ys-mobile-link {
	padding: var(--spacing-sm) 0;
	text-decoration: none;
	color: var(--text);
	font-weight: 500;
}

.mobile-menu-link {
	padding: var(--spacing-sm);
	background-color: var(--background);
	text-align: center;
	border-radius: 4px;
	font-weight: 500;
}

/* ============================================
   FOOTER - Pure & Sure Clone
   ============================================ */
.site-footer {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 60px 0 0 0;
}

.footer-layout {
	padding: 40px 0;
}

.footer-layout .row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.footer_html {
	padding: 0 15px;
	margin-bottom: 40px;
}

.block {
	height: 100%;
}

.block-title h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 20px;
	text-transform: uppercase;
}

.bl_html {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.bl_html a {
	color: var(--accent-gold);
	text-decoration: none;
}

.bl_html a:hover {
	text-decoration: underline;
}

.title-social {
	font-size: 14px;
	color: var(--white);
	margin-bottom: 15px;
}

.block_social ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 15px;
}

.block_social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--white);
	transition: var(--transition);
}

.block_social a:hover {
	background-color: var(--accent-gold);
}

.site-footer__linklist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__linklist-item {
	margin-bottom: 12px;
}

.site-footer__linklist-item a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
	transition: var(--transition);
}

.site-footer__linklist-item a:hover {
	color: var(--accent-gold);
	padding-left: 5px;
}

.footer-bottom {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 20px 0;
	margin-top: 40px;
}

.footer-bottom p {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

/* Footer Responsive */
@media (max-width: 991px) {
	.footer_html {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 767px) {
	.footer_html {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/* ============================================
   SECTION 3: HERO SLIDER
   ============================================ */
.hero-section {
	position: relative;
}

.hero-swiper {
	width: 100%;
	height: 520px;
}

.hero-slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	position: relative;
}

.hero-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(27, 67, 50, 0.75) 0%, rgba(27, 67, 50, 0.3) 100%);
}

.hero-content {
	position: relative;
	z-index: 1;
	color: var(--white);
	max-width: 600px;
}

.hero-content h1 {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	line-height: 1.2;
	letter-spacing: -0.5px;
}

.hero-content p {
	font-size: 18px;
	margin-bottom: var(--spacing-lg);
	opacity: 0.9;
	line-height: 1.7;
}

.hero-swiper .swiper-pagination {
	bottom: 30px;
}

.hero-swiper .swiper-pagination-bullet {
	background-color: var(--white);
	opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
	opacity: 1;
	background-color: var(--accent-gold);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
	color: var(--white);
}

/* ============================================
   SECTION 4: INTRODUCTION
   ============================================ */
.intro-section {
	padding: var(--spacing-3xl) 0;
	background-color: var(--cream-bg);
	text-align: center;
}

.intro-content {
	max-width: 800px;
	margin: 0 auto;
}

.intro-content h2 {
	font-size: 36px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: var(--spacing-lg);
	letter-spacing: -0.3px;
}

.intro-content p {
	font-size: 18px;
	color: var(--gray-medium);
	line-height: 1.8;
}

/* ============================================
   SECTION 5: CATEGORIES
   ============================================ */
.categories-section {
	padding: var(--spacing-3xl) 0;
	background-color: var(--white);
}

.section-title {
	font-size: 36px;
	font-weight: 600;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: var(--spacing-xl);
	letter-spacing: -0.3px;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: var(--spacing-md);
}

.category-card {
	display: block;
	text-align: center;
	transition: var(--transition);
}

.category-card:hover {
	transform: translateY(-5px);
}

.category-image {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: var(--spacing-sm);
	background-color: var(--white);
}

.category-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.category-card:hover .category-image img {
	transform: scale(1.1);
}

.category-card h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
}

/* ============================================
   SECTION 6: FEATURED PRODUCTS
   ============================================ */
.featured-products-section {
	padding: var(--spacing-3xl) 0;
	background-color: var(--soft-beige);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-lg);
}

.product-card {
	background-color: var(--white);
	border-radius: 12px;
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid var(--border-color);
	position: relative;
}

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

.product-image {
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	background-color: var(--background);
	position: relative;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.product-card:hover .product-image img {
	transform: scale(1.1);
}

.sale-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background-color: var(--accent-gold);
	color: var(--white);
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
	z-index: 2;
}

.new-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
	z-index: 2;
}

/* ============================================
   NEW HOMEPAGE SECTIONS STYLES
   ============================================ */

/* Hero Slider Section - Swiper */
.hero-slider-section {
	margin: 0;
	padding: 0;
	width: 100%;
	max-width: none;
}

.hero-swiper {
	width: 100%;
	max-width: none;
	height: 560px;
}

@media (max-width: 991px) {
	.hero-swiper {
		height: 480px;
	}
}

@media (max-width: 576px) {
	.hero-swiper {
		height: 380px;
	}
}

.hero-slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	position: relative;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
}

.hero-content {
	position: relative;
	z-index: 1;
	color: var(--white);
	max-width: 650px;
	padding: 0 var(--spacing-md);
}

.hero-title {
	font-size: 72px;
	font-weight: 700;
	margin-bottom: var(--spacing-md);
	line-height: 1.2;
	letter-spacing: -0.5px;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 32px;
	}
}

.hero-subtitle {
	font-size: 28px;
	margin-bottom: var(--spacing-lg);
	opacity: 0.9;
	line-height: 1.7;
}

.hero-btn {
	display: inline-block;
	padding: 18px 40px;
	background-color: var(--accent-gold);
	color: var(--white);
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.hero-btn:hover {
	background-color: var(--primary-color);
}

/* Intro Section */
.intro-section {
	padding: 80px 20px;
	text-align: center;
	background-color: var(--white);
}

.intro-title {
	font-size: 40px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 24px;
	line-height: 1.2;
}

@media (max-width: 768px) {
	.intro-title {
		font-size: 30px;
	}
}

.intro-description {
	max-width: 800px;
	margin: 0 auto;
}

.intro-description p {
	font-size: 20px;
	line-height: 1.6;
	color: var(--gray-medium);
	max-width: 80ch;
}

@media (max-width: 768px) {
	.intro-description p {
		font-size: 18px;
	}
}

/* Explore Range Section */
.explore-range-section {
	padding: 60px 20px;
	background-color: var(--white);
}

.explore-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 40px;
}

.explore-titlewrap {
	display: flex;
	flex-direction: column;
}

.explore-title {
	margin: 0;
	font-weight: 700;
	color: var(--accent-gold);
	font-size: clamp(20px, 2.2vw, 28px);
	line-height: 1.2;
}

.explore-subtitle {
	margin: 6px 0 0;
	color: #b8b8b8;
	font-size: 14px;
}

.explore-viewall {
	white-space: nowrap;
	min-width: 93px;
	height: 32px;
	border-radius: 6px;
	padding: 0 12px;
	background: var(--accent-gold);
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--accent-gold);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: var(--transition);
}

.explore-viewall:hover {
	filter: brightness(0.95);
}

.explore-cards {
	display: grid;
	gap: 24px;
	justify-content: center;
	justify-items: center;
	align-items: stretch;
	padding-bottom: 6px;
	grid-template-columns: repeat(5, 1fr);
}

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

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

.explore-card {
	scroll-snap-align: start;
	width: 180px;
	border: 1px solid #e6e6e6;
	border-radius: 5px;
	background: var(--white);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	transition: var(--transition);
	position: relative;
	height: 100%;
}

.explore-card:hover {
	border-color: var(--primary-color);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.explore-card-media {
	width: 140px;
	height: 140px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.explore-card-media img {
	width: 140px;
	height: 140px;
	object-fit: contain;
}

.explore-card-title {
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	text-align: center;
	padding: 0 8px;
	flex: 0 0 auto;
}

.explore-card:hover .explore-card-title {
	color: var(--primary-color);
}

/* Healthy Lifestyle Section */
.healthy-lifestyle-section {
	padding: 60px 20px;
	background-color: var(--white);
}

.lifestyle-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 40px;
}

.lifestyle-titlewrap {
	display: flex;
	flex-direction: column;
}

.lifestyle-title {
	margin: 0;
	font-weight: 700;
	color: var(--primary-color);
	font-size: clamp(20px, 2.2vw, 28px);
	line-height: 1.2;
}

.lifestyle-subtitle {
	margin: 6px 0 0;
	color: #b8b8b8;
	font-size: 14px;
}

.lifestyle-viewall {
	white-space: nowrap;
	min-width: 93px;
	height: 32px;
	border-radius: 6px;
	padding: 0 12px;
	background: var(--primary-color);
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--primary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: var(--transition);
}

.lifestyle-viewall:hover {
	background-color: var(--secondary-color);
}

/* Mind & Body Section */
.mind-body-section {
	padding: 60px 20px;
	background-color: var(--cream-bg);
}

.mind-body-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 40px;
}

.mind-body-titlewrap {
	display: flex;
	flex-direction: column;
}

.mind-body-title {
	margin: 0;
	font-weight: 700;
	color: var(--primary-color);
	font-size: clamp(20px, 2.2vw, 28px);
	line-height: 1.2;
}

.mind-body-subtitle {
	margin: 6px 0 0;
	color: #b8b8b8;
	font-size: 14px;
}

.mind-body-viewall {
	white-space: nowrap;
	min-width: 93px;
	height: 32px;
	border-radius: 6px;
	padding: 0 12px;
	background: var(--primary-color);
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	border: 1px solid var(--primary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: var(--transition);
}

.mind-body-viewall:hover {
	background-color: var(--secondary-color);
}

/* Promo Banner Section */
.promo-banner-section {
	margin: 40px 0;
}

.promo-banner {
	position: relative;
	width: 100%;
	height: 400px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

@media (max-width: 768px) {
	.promo-banner {
		height: 250px;
	}
}

.promo-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(27, 67, 50, 0.8) 0%, rgba(27, 67, 50, 0.5) 100%);
}

.promo-content {
	position: relative;
	z-index: 1;
	color: var(--white);
	text-align: center;
	max-width: 600px;
	padding: 20px;
}

.promo-title {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	.promo-title {
		font-size: 28px;
	}
}

.promo-description {
	font-size: 18px;
	margin-bottom: 25px;
	line-height: 1.5;
}

.promo-btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--accent-gold);
	color: var(--white);
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.promo-btn:hover {
	background-color: var(--primary-color);
}

/* Certifications Section */
.certifications-section {
	padding: 60px 20px;
	background-color: var(--cream-bg);
}

.certifications-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 40px;
}

.certifications-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.certification-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 20px;
	background: var(--white);
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.certification-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.cert-icon {
	font-size: 40px;
	margin-bottom: 15px;
}

.cert-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: 10px;
}

.cert-description {
	font-size: 14px;
	color: var(--gray-medium);
	line-height: 1.5;
}

/* Top Picks Section */
.top-picks-section {
	padding: 60px 20px;
	background-color: var(--white);
}

.top-picks-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 40px;
}

.top-picks-swiper {
	position: relative;
	padding: 0 40px;
}

.top-pick-card {
	border: 1px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
	transition: var(--transition);
	background: var(--white);
}

.top-pick-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

/* Hover Image Swap */
.hover-swap {
	position: relative;
}

.product-img-main {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
}

.product-img-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hover-swap:hover .product-img-main {
	opacity: 0;
}

.hover-swap:hover .product-img-hover {
	opacity: 1;
}

/* Video Gallery Section */
.video-gallery-section {
	padding: 60px 20px;
	background-color: var(--white);
}

.gallery-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 40px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.gallery-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 8px;
	aspect-ratio: 1;
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.gallery-card:hover img {
	transform: scale(1.05);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay .gallery-title {
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
	position: relative;
	z-index: 1;
	margin: 0;
}

/* Water Conservation Section */
.water-conservation-section {
	padding: 80px 20px;
	background-color: #2D6A4F;
}

.water-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.water-icon {
	color: var(--white);
	margin-bottom: 20px;
}

.water-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 20px;
}

.water-description {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
	line-height: 1.6;
}

.water-btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--accent-gold);
	color: var(--white);
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	transition: var(--transition);
}

.water-btn:hover {
	background-color: var(--white);
	color: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose-us-section {
	padding: 80px 20px;
	background-color: var(--white);
}

.why-header {
	text-align: center;
	margin-bottom: 50px;
}

.why-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.why-subtitle {
	font-size: 18px;
	color: var(--gray-medium);
	max-width: 600px;
	margin: 0 auto;
}

.why-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.why-content {
		grid-template-columns: 1fr;
	}

	.why-right {
		order: -1;
	}
}

.why-left {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.why-item {
	padding: 20px;
	background: var(--cream-bg);
	border-radius: 8px;
}

.why-item-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.why-item-description {
	font-size: 16px;
	line-height: 1.6;
	color: var(--gray-medium);
}

.why-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Feature Icons Section */
.feature-icons-section {
	padding: 60px 20px;
	background-color: var(--cream-bg);
}

.features-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 20px;
	background: var(--white);
	border-radius: 8px;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.feature-item:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.feature-icon-wrapper {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.feature-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.feature-description {
	font-size: 14px;
	color: var(--gray-medium);
	line-height: 1.5;
}

/* Product Grid - Shared */
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
}

@media (max-width: 768px) {
	.product-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 20px;
	}
}

.product-card {
	background: var(--white);
	border-radius: 12px;
	overflow: hidden;
	transition: var(--transition);
	border: 2px solid #eee;
}

.product-card:hover {
	border-color: var(--primary-color);
	box-shadow: 0 6px 20px rgba(16, 18, 24, 0.06);
}

.card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-image {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	background: #f7eef8;
	padding-top: 100%;
}

.product-image a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.product-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

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

.product-title {
	font-weight: 700;
	color: #1e1e1e;
	font-size: 15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-title a {
	text-decoration: none;
	color: inherit;
}

.product-title a:hover {
	color: var(--primary-color);
}

.product-price {
	font-weight: 700;
	color: #1e1e1e;
	font-size: 15px;
}

.pack-sizes {
	font-size: 13px;
	color: var(--gray-medium);
	margin-bottom: 8px;
}

.product-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #999;
	font-size: 13px;
}

.add-to-cart-btn {
	display: block;
	width: 100%;
	text-align: center;
	border-radius: 28px;
	background: var(--primary-color);
	color: var(--white);
	font-weight: 700;
	padding: 8px 10px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	transition: var(--transition);
}

.add-to-cart-btn:hover {
	background: var(--secondary-color);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	z-index: 10;
}

.swiper-button-next {
	right: 0;
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background-color: var(--secondary-color);
}

.swiper-pagination {
	text-align: center;
	margin-top: 20px;
}

.swiper-pagination-bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: var(--gray-light);
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
}

.swiper-pagination-bullet-active {
	background-color: var(--primary-color);
}

.product-price {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: var(--spacing-sm);
}

.product-price del {
	color: var(--gray-medium);
	font-size: 14px;
	margin-right: 8px;
	font-weight: 400;
}

.product-rating {
	display: flex;
	align-items: center;
	margin-bottom: var(--spacing-sm);
	font-size: 14px;
	color: var(--accent-gold);
}

.product-rating .rating-count {
	color: var(--gray-medium);
	margin-left: 6px;
	font-size: 12px;
}

.stock-status {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	padding: 4px 8px;
	border-radius: 4px;
	margin-bottom: var(--spacing-sm);
}

.stock-status.in-stock {
	background-color: #E8F5E9;
	color: #2E7D32;
}

.stock-status.out-of-stock {
	background-color: #FFEBEE;
	color: #C62828;
}

.add-to-cart {
	display: block;
	width: 100%;
	padding: 12px;
	background-color: var(--primary-color);
	color: var(--white);
	text-align: center;
	border-radius: 6px;
	font-weight: 600;
	font-size: 14px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
}

.add-to-cart:hover {
	background-color: var(--secondary-color);
	transform: translateY(-2px);
}

/* ============================================
   SECTION 7: PROMO BANNER
   ============================================ */
.promo-section {
	padding: var(--spacing-3xl) 0;
}

.promo-banner {
	background-color: var(--primary-color);
	border-radius: 12px;
	padding: var(--spacing-2xl);
	text-align: center;
	color: var(--white);
}

.promo-content h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: var(--spacing-lg);
	letter-spacing: -0.3px;
}

.promo-content p {
	font-size: 18px;
	margin-bottom: var(--spacing-lg);
	opacity: 0.9;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 16px 40px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	text-decoration: none;
}

.btn-primary {
	background-color: var(--accent-gold);
	color: var(--white);
}

.btn-primary:hover {
	background-color: #c49260;
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-secondary {
	background-color: var(--white);
	color: var(--primary-color);
}

.btn-secondary:hover {
	background-color: var(--cream-bg);
}

.btn-gold {
	background-color: var(--accent-gold);
	color: var(--white);
}

.btn-gold:hover {
	background-color: #c49260;
}

/* ============================================
   SECTION 8: HEALTH SOLUTIONS
   ============================================ */
.health-solutions-section {
	padding: var(--spacing-3xl) 0;
	background-color: var(--white);
}

.tabs-container {
	background-color: var(--white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.tabs-nav {
	display: flex;
	border-bottom: 1px solid var(--border-color);
}

.tab-btn {
	flex: 1;
	padding: var(--spacing-md);
	font-size: 16px;
	font-weight: 600;
	color: var(--gray-medium);
	transition: var(--transition);
	border-bottom: 3px solid transparent;
}

.tab-btn:hover {
	color: var(--primary-color);
	background-color: var(--background);
}

.tab-btn.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
}

.tabs-content {
	padding: var(--spacing-xl);
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

/* ============================================
   SECTION 9: CERTIFICATIONS
   ============================================ */
.certifications-section {
	padding: var(--spacing-2xl) 0;
	background-color: var(--white);
}

.certifications-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-lg);
}

.certification-card {
	text-align: center;
	padding: var(--spacing-lg);
	background-color: var(--background);
	border-radius: 8px;
	transition: var(--transition);
}

.certification-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.certification-card img {
	max-height: 80px;
	margin: 0 auto var(--spacing-sm);
}

.cert-icon {
	font-size: 48px;
	display: block;
	margin-bottom: var(--spacing-sm);
}

.certification-card h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
}

/* ============================================
   SECTION 9.5: OUR JOURNEY (TRUST SECTION)
   ============================================ */
.journey-section {
	padding: var(--spacing-3xl) 0;
	background-color: var(--white);
}

.journey-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-2xl);
	align-items: center;
}

.journey-image {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.journey-image img {
	width: 100%;
	height: auto;
	display: block;
}

.journey-content h2 {
	font-size: 36px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: var(--spacing-lg);
	letter-spacing: -0.3px;
}

.journey-content p {
	font-size: 16px;
	line-height: 1.8;
	color: var(--gray-medium);
	margin-bottom: var(--spacing-md);
}

.journey-features {
	list-style: none;
	padding: 0;
	margin: var(--spacing-lg) 0 0 0;
}

.journey-features li {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-sm);
	font-size: 16px;
	color: var(--text);
	font-weight: 500;
}

.journey-icon {
	width: 24px;
	height: 24px;
	background-color: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
}

/* ============================================
   SECTION 10: TOP PICKS
   ============================================ */
.top-picks-section {
	padding: var(--spacing-3xl) 0;
	background-color: var(--cream-bg);
}

.top-picks-swiper {
	padding: 0 var(--spacing-xl);
}

.top-picks-swiper .swiper-slide {
	width: 280px;
}

.top-picks-swiper .swiper-pagination {
	bottom: 0;
}

.top-picks-swiper .swiper-pagination-bullet {
	background-color: var(--primary-color);
}

.top-picks-swiper .swiper-button-next,
.top-picks-swiper .swiper-button-prev {
	color: var(--primary-color);
}

/* ============================================
   SECTION 11: SOCIAL CONTENT
   ============================================ */
.social-section {
	padding: var(--spacing-3xl) 0;
	background-color: var(--white);
}

.social-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-md);
}

.social-card {
	position: relative;
	aspect-ratio: 1;
	border-radius: 8px;
	overflow: hidden;
	display: block;
}

.social-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.social-card:hover img {
	transform: scale(1.1);
}

.social-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(27, 67, 50, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

.social-card:hover .social-overlay {
	opacity: 1;
}

.social-overlay span {
	color: var(--white);
	font-size: 18px;
	font-weight: 600;
}

/* ============================================
   SECTION 12: IMPACT CTA
   ============================================ */
.impact-section {
	padding: var(--spacing-3xl) 0;
	background-color: var(--primary-color);
	color: var(--white);
}

.impact-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.impact-content h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: var(--spacing-lg);
	letter-spacing: -0.3px;
}

.impact-content p {
	font-size: 18px;
	margin-bottom: var(--spacing-lg);
	opacity: 0.9;
	line-height: 1.8;
}

/* ============================================
   SECTION 13: WHY CHOOSE US
   ============================================ */
.why-choose-section {
	padding: var(--spacing-3xl) 0;
	background-color: var(--soft-beige);
}

.why-choose-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-2xl);
	align-items: center;
}

.why-choose-content h2 {
	font-size: 40px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: var(--spacing-xl);
	letter-spacing: -0.3px;
	line-height: 1.2;
}

.features-list {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xl);
}

.features-list li {
	display: flex;
	gap: var(--spacing-md);
	align-items: flex-start;
}

.feature-icon {
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-weight: 700;
	font-size: 18px;
}

.features-list h4 {
	font-size: 18px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: var(--spacing-xs);
	line-height: 1.4;
}

.features-list p {
	font-size: 15px;
	color: var(--gray-medium);
	line-height: 1.7;
}

.why-choose-image {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.why-choose-image img {
	width: 100%;
	height: auto;
}

/* ============================================
   SECTION 14: FEATURE ICON ROW
   ============================================ */
.features-row-section {
	padding: var(--spacing-3xl) 0;
	background-color: var(--white);
}

.features-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-lg);
}

.feature-item {
	text-align: center;
	padding: var(--spacing-lg);
}

.feature-icon-wrapper {
	width: 64px;
	height: 64px;
	background-color: var(--background);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--spacing-sm);
	color: var(--primary-color);
}

.feature-item h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--text);
	margin-bottom: var(--spacing-xs);
}

.feature-item p {
	font-size: 14px;
	color: var(--gray-medium);
}

/* ============================================
   SECTION 15: FOOTER
   ============================================ */
.site-footer {
	background-color: var(--primary-color);
	color: var(--white);
	padding: var(--spacing-3xl) 0 0;
}

.footer-top {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--spacing-xl);
	margin-bottom: var(--spacing-xl);
}

.footer-column h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: var(--spacing-lg);
	letter-spacing: -0.2px;
}

.footer-about p {
	font-size: 15px;
	line-height: 1.8;
	opacity: 0.9;
	margin-bottom: var(--spacing-md);
}

.footer-social {
	display: flex;
	gap: var(--spacing-sm);
}

.footer-social a {
	width: 36px;
	height: 36px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.footer-social a:hover {
	background-color: var(--accent-gold);
}

.footer-menu,
.footer-links-list {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
}

.footer-menu a,
.footer-links-list a {
	font-size: 15px;
	opacity: 0.9;
	transition: var(--transition);
	line-height: 1.8;
}

.footer-menu a:hover,
.footer-links-list a:hover {
	opacity: 1;
	color: var(--accent-gold);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
}

.contact-info li {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	font-size: 15px;
	opacity: 0.9;
	line-height: 1.8;
}

.contact-info svg {
	flex-shrink: 0;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: var(--spacing-lg) 0;
	text-align: center;
}

.footer-bottom p {
	font-size: 15px;
	opacity: 0.8;
}

/* ============================================
   RESPONSIVE STYLES - TABLET (768px)
   ============================================ */
@media (max-width: 1024px) {
	:root {
		--container-width: 960px;
	}

	.journey-layout {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}

	.journey-image {
		order: -1;
	}

	.categories-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.products-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.certifications-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.social-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-top {
		grid-template-columns: repeat(2, 1fr);
	}

	.features-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	:root {
		--container-width: 100%;
		--spacing-xl: 32px;
		--spacing-2xl: 48px;
	}

	.hero-swiper {
		height: 350px;
	}

	.hero-content h1 {
		font-size: 32px;
	}

	.hero-content p {
		font-size: 16px;
	}

	.section-title {
		font-size: 28px;
	}

	.intro-content h2 {
		font-size: 32px;
	}

	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-choose-grid {
		grid-template-columns: 1fr;
	}

	.why-choose-image {
		order: -1;
	}

	.journey-layout {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}

	.journey-image {
		order: -1;
	}

	.promo-banner {
		padding: var(--spacing-xl);
	}

	.promo-content h2 {
		font-size: 32px;
	}

	.impact-content h2 {
		font-size: 32px;
	}

	.tabs-nav {
		flex-wrap: wrap;
	}

	.tab-btn {
		flex: 1 1 50%;
	}

	/* Header Mobile */
	.main-navigation {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.footer-top {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   RESPONSIVE STYLES - MOBILE (375px)
   ============================================ */
@media (max-width: 480px) {
	:root {
		--spacing-md: 16px;
		--spacing-lg: 24px;
	}

	.hero-swiper {
		height: 400px;
	}

	.hero-content h1 {
		font-size: 28px;
	}

	.hero-content p {
		font-size: 14px;
	}

	.section-title {
		font-size: 24px;
	}

	.intro-content h2 {
		font-size: 24px;
	}

	.intro-content p {
		font-size: 16px;
	}

	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-sm);
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-sm);
	}

	.certifications-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-sm);
	}

	.social-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-sm);
	}

	.features-row {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-sm);
	}

	.promo-banner {
		padding: var(--spacing-lg);
	}

	.promo-content h2 {
		font-size: 24px;
	}

	.promo-content p {
		font-size: 14px;
	}

	.impact-content h2 {
		font-size: 24px;
	}

	.impact-content p {
		font-size: 14px;
	}

	.why-choose-content h2 {
		font-size: 24px;
	}

	.tabs-nav {
		flex-direction: column;
	}

	.tab-btn {
		flex: 1;
		border-bottom: 1px solid var(--border-color);
	}

	.tab-btn.active {
		border-bottom-color: var(--primary-color);
	}

	.top-picks-swiper .swiper-slide {
		width: 220px;
	}

	.header-inner {
		padding: var(--spacing-sm) var(--spacing-md);
	}

	.container {
		padding: 0 var(--spacing-md);
	}
}

/* ==========================================================================
   ABHYASA PREMIUM CUSTOM STYLES (Shop, Single Product, Wishlist, live search modal)
   ========================================================================== */

/* 1. Live Search Overlay Modal */
.ys-search-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s;
	padding-top: 80px;
}

.ys-search-modal.active {
	visibility: visible;
	opacity: 1;
}

.ys-search-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(27, 67, 50, 0.4);
	backdrop-filter: blur(4px);
}

.ys-search-modal-container {
	position: relative;
	z-index: 10002;
	background: #ffffff;
	width: 100%;
	max-width: 650px;
	border-radius: 8px;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transform: translateY(-20px);
	transition: transform 0.3s ease;
}

.ys-search-modal.active .ys-search-modal-container {
	transform: translateY(0);
}

.ys-search-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 25px;
	border-bottom: 1px solid var(--border-color);
	background: var(--background);
}

.ys-search-modal-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0;
}

.ys-search-close-btn {
	color: var(--text);
	font-size: 20px;
	cursor: pointer;
	transition: var(--transition);
}

.ys-search-close-btn:hover {
	color: var(--accent-gold);
}

.ys-search-modal-body {
	padding: 25px;
}

.ys-search-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.ys-search-field {
	width: 100%;
	padding: 12px 50px 12px 15px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	font-size: 15px;
	outline: none;
	background: var(--background);
}

.ys-search-field:focus {
	border-color: var(--primary-color);
	background: #fff;
}

.ys-search-submit {
	position: absolute;
	right: 15px;
	background: none;
	border: none;
	color: var(--primary-color);
	cursor: pointer;
}

.ys-search-results-container {
	max-height: 300px;
	overflow-y: auto;
}

.ys-search-loading {
	text-align: center;
	color: var(--gray-medium);
	padding: 10px 0;
	font-size: 14px;
}

/* 2. Wishlist Heart Buttons */
.ys-add-wishlist {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 10;
	background: #ffffff;
	color: #888888;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-sm);
	border: none;
	cursor: pointer;
	transition: var(--transition);
}

.ys-add-wishlist:hover {
	transform: scale(1.1);
	color: #e21b1b;
}

.ys-add-wishlist.active {
	color: #e21b1b;
}

.ys-add-wishlist.active svg {
	fill: #e21b1b;
	stroke: #e21b1b;
}

/* DEBUG: Shop styles loaded */
/* 3. Shop Archive Grid & sidebar widget */
.ys-shop-archive-wrapper {
	padding: 30px 0 60px;
	background: #ffffff;
}

/* Horizontal Category Filter Section */
.ys-category-filter {
	margin-bottom: 30px;
	padding: 20px;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid #e9e9e9;
}

.ys-category-filter .filter-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 15px 0;
}

.ys-category-filter .category-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ys-category-filter .cat-link {
	padding: 8px 16px;
	background: #f5f5f5;
	color: var(--text);
	text-decoration: none;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	transition: var(--transition);
}

.ys-category-filter .cat-link:hover,
.ys-category-filter .cat-link.active {
	background: var(--primary-color);
	color: #ffffff;
}

.ys-shop-archive-wrapper .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px;
}

.ys-shop-layout {
	display: flex;
	gap: 28px;
	align-items: flex-start;
}

.ys-shop-sidebar {
	width: 205px;
	flex-shrink: 0;
	align-self: flex-start;
	position: sticky;
	top: 20px;
}

.ys-shop-main {
	flex: 1;
	min-width: 0;
}

.ys-shop-control-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border-color);
}

.ys-shop-control-bar p {
	margin: 0;
	font-size: 14px;
	color: var(--gray-medium);
}

.ys-sidebar-widget {
	background: #ffffff;
	padding: 16px;
	border-radius: 8px;
	border: 1px solid #e9e9e9;
	margin-bottom: 16px;
}

.ys-sidebar-widget .widget-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e9e9e9;
}

.ys-sidebar-widget .collapsible-toggle {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
}

.ys-sidebar-widget .toggle-icon {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.ys-sidebar-widget .collapsible-toggle.active .toggle-icon {
	transform: rotate(180deg);
}

.ys-sidebar-widget .collapsible-content {
	overflow: hidden;
	max-height: 500px;
	transition: max-height 0.3s ease;
}

.ys-sidebar-widget .collapsible-content.collapsed {
	max-height: 0;
}

.ys-sidebar-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ys-sidebar-widget ul li a {
	font-size: 15px;
	color: var(--text);
	font-weight: 500;
	display: block;
	transition: var(--transition);
}

.ys-sidebar-widget ul li a:hover,
.ys-sidebar-widget ul li.current-cat>a {
	color: var(--primary-color);
	padding-left: 5px;
	font-weight: 600;
}

/* Price Filter */
.price-filter-content {
	padding: 10px 0;
}

.price-range-slider {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 12px;
}

.price-slider {
	width: 100%;
	height: 6px;
	-webkit-appearance: none;
	appearance: none;
	background: #ddd;
	border-radius: 3px;
	outline: none;
}

.price-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	background: var(--primary-color);
	border-radius: 50%;
	cursor: pointer;
}

.price-slider::-moz-range-thumb {
	width: 18px;
	height: 18px;
	background: var(--primary-color);
	border-radius: 50%;
	cursor: pointer;
	border: none;
}

.price-range-inputs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.price-range-inputs input {
	flex: 1;
	padding: 6px 10px;
	border: 1px solid var(--border-color);
	border-radius: 3px;
	font-size: 13px;
	width: 100%;
}

.price-range-inputs span {
	color: #666;
	font-weight: 500;
}

.price-filter-btn {
	width: 100%;
	padding: 8px 12px;
	background: var(--primary-color);
	color: #ffffff;
	border: none;
	border-radius: 3px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.price-filter-btn:hover {
	background: var(--secondary-color);
}

/* Availability Filter */
.availability-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.availability-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	color: var(--text);
	font-weight: 500;
}

.availability-checkbox input[type="checkbox"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
}

/* Featured Products & Best Sellers */
.featured-products-list,
.best-sellers-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.featured-product-item,
.bestseller-product-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.featured-product-link,
.bestseller-product-link {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--text);
	transition: var(--transition);
}

.featured-product-link:hover,
.bestseller-product-link:hover {
	color: var(--primary-color);
}

.featured-product-thumb,
.bestseller-product-thumb {
	width: 50px;
	height: 50px;
	object-fit: cover;
	border-radius: 4px;
	border: 1px solid var(--border-color);
}

.featured-product-info,
.bestseller-product-info {
	flex: 1;
}

.featured-product-title,
.bestseller-product-title {
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 4px;
	line-height: 1.2;
	color: var(--text);
}

.featured-product-price,
.bestseller-product-price {
	font-size: 12px;
	font-weight: 700;
	color: var(--primary-color);
}

.no-products {
	font-size: 13px;
	color: #999;
	text-align: center;
	padding: 15px 0;
}

/* Shop Products Grid & Product card flip hover */
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 30px;
	max-width: 1600px;
	margin: 0 auto;
}

.product-card {
	background: #ffffff;
	border-radius: 10px;
	border: 1px solid #e9e9e9;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	height: 100%;
	max-width: 255px;
}

.product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0,0,0,.10);
	border-color: #e9e9e9;
}

.product-image {
	position: relative;
	width: 100%;
	padding-top: 32%;
	/* restored height ratio for balanced spacing */
	overflow: hidden;
	background: #fdfdfd;
}

.product-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Flip swap image hover effect */
.product-image.hover-swap .product-img-hover {
	opacity: 0;
}

.product-image.hover-swap:hover .product-img-main {
	opacity: 0;
}

.product-image.hover-swap:hover .product-img-hover {
	opacity: 1;
	transform: scale(1.03);
}

.sale-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 10;
	background: #2e7d32;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 6px;
	text-transform: uppercase;
}

.product-info {
	padding: 10px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-title {
	font-size: 13px;
	font-weight: 600;
	margin: 0 0 4px;
	line-height: 1.2;
	height: 31px;
	/* reduced title height */
	overflow: hidden;
}

.product-title a:hover {
	color: var(--primary-color);
}

.product-rating {
	margin: 0 0 6px;
	font-size: 13px;
	color: #f5c518;
	letter-spacing: 1px;
}

.product-price {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 0 0 4px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.product-price del {
	color: #888;
	font-size: 12px;
	font-weight: 500;
	text-decoration: line-through;
}

.main-price-strike {
	text-decoration: line-through;
	color: #888;
	font-size: 14px;
	margin-right: 8px;
}

.member-price {
	color: #2e7d32;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
}

.regular-price-strike {
	text-decoration: line-through;
	color: #888;
	font-size: 12px;
	font-weight: 500;
}

.member-price-inline {
	font-size: 14px;
	font-weight: 700;
	color: #2e7d32;
	display: none;
}

.pack-sizes {
	font-size: 10px;
	color: #666;
	margin-bottom: 4px;
	font-weight: 500;
}

.member-price {
	font-size: 11px;
	color: var(--primary-color);
	margin-bottom: 8px;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: #fafafa;
	padding: 6px;
	border-radius: 4px;
}

.member-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 4px;
}

.member-savings-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 4px;
}

.member-label,
.join-now-btn,
.member-applied {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.member-price-amount {
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-color);
}

.member-savings {
	font-size: 10px;
	font-weight: 600;
	color: #27ae60;
}

.member-label {
	color: #666;
	font-weight: 500;
	font-size: 9px;
}

.member-applied {
	font-size: 9px;
	font-weight: 600;
	color: #2e7d32;
	background: #dff5e6;
	padding: 0 6px;
	border-radius: 10px;
	text-align: center;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.join-now-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	color: #fff;
	padding: 3px 10px;
	font-size: 9px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 3px;
	text-align: center;
	height: 18px;
}

.join-now-btn:hover {
	background: var(--secondary-color);
}

.add-to-cart-btn {
	display: block;
	width: 100%;
	padding: 4px 10px;
	height: 34px;
	background: var(--primary-color);
	color: #ffffff;
	border-radius: 20px;
	text-align: center;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.3px;
	transition: var(--transition);
	box-shadow: 0 3px 8px rgba(0,0,0,.08);
}

.add-to-cart-btn:hover {
	background: var(--secondary-color);
	color: #ffffff;
	transform: translateY(-1px);
}

.add-to-cart-btn {
	margin-top: auto;
}

/* Variant Buttons */
.variant-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 10px;
	flex: 1;
}

.variant-btn {
	padding: 0 8px;
	height: 22px;
	background: #ffffff;
	border: 1px solid #2e7d32;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 500;
	color: var(--text);
	cursor: pointer;
	transition: var(--transition);
}

.variant-btn:hover {
	border-color: var(--primary-color);
	background: #f5f5f5;
}

.variant-btn.selected {
	background: #dff5e6;
	border: #2e7d32;
	color: #2e7d32;
	font-weight: 600;
}

.variant-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.variant-btn:hover:not(:disabled) {
	background: var(--primary-color);
	color: #ffffff;
	border-color: var(--primary-color);
}

.variant-btn.out-of-stock {
	opacity: 0.5;
	cursor: not-allowed;
	text-decoration: line-through;
}

/* Tablet Layout */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.ys-shop-layout {
		flex-direction: column;
	}

	.ys-shop-sidebar {
		width: 100%;
		margin-bottom: 30px;
	}

	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile Layout */
@media screen and (max-width: 767px) {
	.ys-shop-layout {
		flex-direction: column;
	}

	.ys-shop-sidebar {
		width: 100%;
		margin-bottom: 30px;
	}

	.product-grid {
		grid-template-columns: 1fr;
	}

	.ys-shop-control-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
}

/* 4. Single Product Layout & Details custom Tabs */
.ys-single-product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
	.ys-single-product-grid {
		grid-template-columns: 1fr;
	}
}

.ys-product-tabs-section {
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	padding: 40px;
	box-shadow: var(--shadow-sm);
}

.ys-tabs-nav-wrapper {
	margin-bottom: 30px;
}

.ys-tab-nav-item {
	font-size: 16px;
	font-weight: 600;
	color: #888888;
	padding-bottom: 12px;
	cursor: pointer;
	transition: var(--transition);
	border-bottom: 3px solid transparent;
}

.ys-tab-nav-item:hover,
.ys-tab-nav-item.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
}

.ys-tab-panel {
	display: none;
	font-size: 15px;
	line-height: 1.7;
	color: #535353;
}

.ys-tab-panel.active {
	display: block;
	animation: fadeIn 0.4s ease;
}

/* ============================================
   ABHYASA Single Product Page Styles
   ============================================ */

/* Abhyasa Branding Colors */
:root {
	--abhyasa-primary-green: #0F5B4A;
	--abhyasa-dark-green: #0B473A;
	--abhyasa-light-green: #EAF7F2;
	--abhyasa-gold: #D4A373;
	--abhyasa-text-dark: #333333;
	--abhyasa-text-light: #666666;
	--abhyasa-border: #E0E0E0;
}

/* Hide WooCommerce notices on single product page */
.single-product .woocommerce-message,
.single-product .woocommerce-error,
.single-product .woocommerce-info {
	display: none !important;
}

/* Product Wrapper */
.abhyasa-single-product-wrapper {
	background: #ffffff;
	padding: 60px 0 0 0;
	min-height: 100vh;
}

.abhyasa-single-product-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Product Grid */
.abhyasa-single-product-grid {
	display: grid;
	grid-template-columns: minmax(0, 52%) minmax(0, 48%);
	gap: 16px;
	margin-bottom: 60px;
	align-items: start;
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
}

@media screen and (max-width: 768px) {
	.abhyasa-single-product-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* Product Gallery */
.abhyasa-product-gallery-col {
	position: relative;
	margin-left: 0;
}

/* Custom Gallery - Pure & Sure Layout */
.abhyasa-gallery {
	display: flex;
	gap: 12px;
	align-items: center;
}

/* Thumbnails - Left Side */
.abhyasa-gallery-thumbs {
	width: 85px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-shrink: 0;
}

.abhyasa-gallery-thumb {
	width: 85px;
	height: 85px;
	display: block;
	border: none;
	border-radius: 0;
	overflow: hidden;
	transition: opacity 0.3s ease;
	background: #ffffff;
}

.abhyasa-gallery-thumb:hover {
	opacity: 0.8;
}

.abhyasa-gallery-thumb.active {
	opacity: 0.6;
}

.abhyasa-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.abhyasa-gallery-more {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: #f5f5f5;
}

.abhyasa-gallery-more-count {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

/* Main Image - Right Side */
.abhyasa-gallery-main {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 650px;
	background: #ffffff;
	position: relative;
	border: none;
	outline: none;
}

.abhyasa-gallery-main-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	border: none;
	outline: none;
	padding: 20px;
	background: #ffffff;
	border: 1px solid #E3E8E1;
	border-radius: 6px;
	transition: border-color 0.25s ease;
	cursor: zoom-in;
	overflow: hidden;
}

.abhyasa-gallery-main-link:focus,
.abhyasa-gallery-main-link:focus-visible {
	outline: none;
	box-shadow: none;
}

.abhyasa-gallery-main-link:hover {
	border-color: #0C7A5A;
}

.abhyasa-gallery-main-image {
	max-width: 100%;
	max-height: 90%;
	height: auto;
	object-fit: contain;
	display: block;
	border: none;
	border-radius: 0;
	box-shadow: none;
	outline: none;
}

/* Remove WooCommerce gallery borders */
.woocommerce-product-gallery,
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery .woocommerce-product-gallery__image {
	border: none;
	outline: none;
	box-shadow: none;
}

/* Remove focus outlines from gallery and product summary */
.abhyasa-gallery-main,
.abhyasa-gallery-main-link,
.abhyasa-gallery-main-image,
.woocommerce-product-gallery,
.woocommerce-product-gallery *,
.product-summary,
.summary,
.single-product-right,
.single-product-right * {
	outline: none !important;
	box-shadow: none !important;
}

.abhyasa-gallery-main:focus,
.abhyasa-gallery-main-link:focus,
.abhyasa-gallery-main-image:focus {
	outline: none !important;
	box-shadow: none !important;
}

/* Hide page elements when gallery is open */
body.gallery-open header,
body.gallery-open .site-header,
body.gallery-open .elementor-location-header,
body.gallery-open .whatsapp-widget,
body.gallery-open #wpadminbar,
body.gallery-open .query-monitor,
body.gallery-open .elementor-element,
body.gallery-open .elementor-section,
body.gallery-open .elementor-container,
body.gallery-open .abhyasa-single-product-wrapper,
body.gallery-open .abhyasa-single-product-container,
body.gallery-open .abhyasa-single-product-grid,
body.gallery-open footer,
body.gallery-open .site-footer,
body.gallery-open .elementor-location-footer {
	display: none !important;
}

html.gallery-open,
body.gallery-open {
	overflow: hidden !important;
	position: fixed;
	width: 100%;
	height: 100%;
}

/* Custom Lightbox */
.abhyasa-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	background: #ffffff;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .28s ease;
}

.abhyasa-lightbox.open {
	opacity: 1;
}

.abhyasa-lightbox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.95);
}

.abhyasa-lightbox-image {
	max-width: 90vw;
	max-height: 80vh;
	object-fit: contain;
	position: relative;
	z-index: 2;
	opacity: 0;
	transform: scale(.88);
	transition:
		transform .32s cubic-bezier(.22,.61,.36,1),
		opacity .28s ease;
	transform-origin: center center;
}

.abhyasa-lightbox.open .abhyasa-lightbox-image {
	opacity: 1;
	transform: scale(1);
}

.abhyasa-lightbox-image.transitioning {
	opacity: 0;
	transform: scale(.92);
}

/* Custom Lightbox Controls */
.abhyasa-lightbox-controls {
	position: fixed;
	left: 50%;
	bottom: 42px;
	transform: translateX(-50%);
	display: flex;
	gap: 14px;
	z-index: 999999;
}

.abhyasa-lightbox-controls button {
	border-radius: 50%;
	background: #fff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow:
		0 10px 30px rgba(0,0,0,.12),
		0 3px 8px rgba(0,0,0,.08);
	transition:
		transform .25s ease,
		box-shadow .25s ease,
		background .25s ease;
	position: relative;
}

.abhyasa-lightbox-controls .abhyasa-prev,
.abhyasa-lightbox-controls .abhyasa-next {
	width: 54px;
	height: 54px;
}

.abhyasa-lightbox-controls .abhyasa-close {
	width: 74px;
	height: 74px;
	font-size: 34px;
	font-weight: 300;
	line-height: 1;
	box-shadow:
		0 10px 30px rgba(0,0,0,.12),
		0 3px 8px rgba(0,0,0,.08);
}

.abhyasa-lightbox-controls button:hover {
	transform: translateY(-3px) scale(1.06);
	box-shadow:
		0 18px 42px rgba(0,0,0,.18),
		0 8px 18px rgba(0,0,0,.12);
}

.abhyasa-lightbox-controls button svg {
	width: 24px;
	height: 24px;
	stroke: #222;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	transition: transform .25s ease;
}

.abhyasa-lightbox-controls .abhyasa-prev:hover svg {
	transform: translateX(-6px);
}

.abhyasa-lightbox-controls .abhyasa-next:hover svg {
	transform: translateX(6px);
}

.abhyasa-lightbox-controls .abhyasa-close:hover svg {
	transform: scale(1.1);
}

.abhyasa-lightbox-controls button::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(-8px);
	background: #111;
	color: #fff;
	padding: 8px 14px;
	border-radius: 20px;
	font-size: 13px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	margin-bottom: 8px;
}

.abhyasa-lightbox-controls button:hover::after {
	opacity: 1;
}

.pswp__counter {
	bottom: 30px;
	right: auto;
	left: 50%;
	transform: translateX(50%);
	color: #333;
	font-size: 14px;
	display: none;
}

/* Hidden lightbox items */
.abhyasa-gallery-hidden {
	display: none;
}

/* Drift Zoom Lens */
.drift-zoom-pane {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1000;
	overflow: visible;
}

.drift-zoom-lens {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100px;
	border: 2px solid rgba(13, 79, 60, 0.5);
	background: rgba(255, 255, 255, 0.2);
	cursor: crosshair;
	z-index: 1001;
	display: block;
}

.drift-zoom-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #333;
	font-size: 14px;
}

/* Mobile Gallery */
@media screen and (max-width: 768px) {
	.abhyasa-gallery {
		flex-direction: column;
		gap: 15px;
	}

	.abhyasa-gallery-thumbs {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
		order: 2;
	}

	.abhyasa-gallery-thumb {
		width: 60px;
		height: 60px;
	}

	.abhyasa-gallery-main {
		order: 1;
		min-height: 400px;
	}
}

/* Product Info */
.abhyasa-product-info-col {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.abhyasa-product-summary {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 90px;
}

/* Product Title - Match Shop V2 (scaled up) */
.abhyasa-product-title {
	font-size: 28px;
	font-weight: 600;
	color: #333;
	margin: 0 0 4px 0;
	line-height: 1.4;
}

@media screen and (max-width: 768px) {
	.abhyasa-product-title {
		font-size: 24px;
	}
}

/* Price Section - Match Shop V2 (scaled up) */
.abhyasa-price-section {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin: 0 0 4px 0;
}

.abhyasa-main-price {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.abhyasa-main-price-strike {
	font-size: 18px;
	font-weight: 600;
	color: #999;
	text-decoration: line-through;
}

.abhyasa-member-price {
	font-size: 28px;
	font-weight: 700;
	color: #0D4F3C;
}

/* Rating - Match Shop V2 */
.abhyasa-product-rating {
	font-size: 20px;
	color: #f39c12;
	letter-spacing: 2px;
	margin-bottom: 16px;
	min-width: 120px;
	width: fit-content;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	overflow: visible;
	height: auto;
}

.abhyasa-product-rating .star-rating {
	display: inline-flex;
	min-width: 120px;
	width: fit-content;
	line-height: 1;
	align-items: center;
	overflow: visible;
	height: auto;
	font-size: 20px;
}

.abhyasa-product-rating .star-rating span {
	display: inline-flex;
	min-width: 120px;
	width: fit-content;
	line-height: 1;
	align-items: center;
	overflow: visible;
	height: auto;
}

.abhyasa-product-rating .star-rating::before {
	content: '★★★★★';
	letter-spacing: 2px;
}

.abhyasa-product-rating .star-rating span::before {
	content: '★★★★★';
	letter-spacing: 2px;
}

/* Hide WooCommerce screen-reader text from rating */
.abhyasa-product-rating .star-rating .screen-reader-text,
.abhyasa-product-rating .star-rating span strong,
.abhyasa-product-rating .star-rating span.rating {
	display: none;
}

/* Member Pricing Box - Match Shop V2 */
.abhyasa-member-pricing-box {
	background: #f3faf5;
	border-radius: 8px;
	padding: 6px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0 0 4px 0;
}

.abhyasa-member-display {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 6px;
}

.abhyasa-member-label {
	font-size: 11px;
	font-weight: 500;
	color: #666;
	text-transform: uppercase;
}

.abhyasa-member-price-large {
	font-size: 16px;
	font-weight: 700;
	color: #0D4F3C;
}

.abhyasa-member-applied {
	font-size: 10px;
	font-weight: 600;
	color: #27ae60;
	background: #e8f5e9;
	padding: 2px 6px;
	border-radius: 3px;
}

.abhyasa-join-btn {
	font-size: 10px;
	font-weight: 600;
	color: #ffffff;
	background: #0D4F3C;
	padding: 4px 10px;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.3s ease;
}

.abhyasa-join-btn:hover {
	background: #0a3d2e;
}

.abhyasa-savings {
	font-size: 11px;
	font-weight: 500;
	color: #27ae60;
}

/* Variation Buttons - Match Shop V2 */
.shop-v2-variant-buttons {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 0 0 4px 0;
}

.shop-v2-variant-btn {
	padding: 8px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	background: #ffffff;
	font-size: 13px;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	transition: all 0.3s ease;
}

.shop-v2-variant-btn:hover:not(:disabled) {
	border-color: #0D4F3C;
	color: #0D4F3C;
}

.shop-v2-variant-btn.selected {
	background: #f3faf5;
	border-color: #0D4F3C;
	color: #0D4F3C;
}

.shop-v2-variant-btn.out-of-stock {
	opacity: 0.5;
	cursor: not-allowed;
}

.shop-v2-variant-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Add To Cart Button - Match Shop V2 */
.single_add_to_cart_button.shop-v2-add-to-cart-submit {
	background: #0F5B4A !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	height: 44px;
	padding: 10px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.single_add_to_cart_button.shop-v2-add-to-cart-submit:hover {
	background: #0a3d2e !important;
}

/* Buy Now Button - Match Add to Cart style exactly, only color differs */
.abhyasa-buy-now-btn {
	background: #f39c12;
	color: #ffffff;
	border: none;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	height: 44px;
	padding: 10px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.abhyasa-buy-now-btn:hover {
	background: #e67e22;
}

/* Hide WooCommerce sale badge and breadcrumb */
.woocommerce-product-gallery .onsale,
.sale-badge,
.shop-v2-sale-badge,
.woocommerce-breadcrumb,
.breadcrumb,
.elementor-breadcrumb {
	display: none !important;
}

/* Purchase Section - Restructured Layout */
.abhyasa-purchase-section {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 4px 0;
}

.abhyasa-quantity-row {
	display: flex;
	align-items: center;
}

.abhyasa-purchase-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: stretch;
}

.abhyasa-purchase-buttons > * {
	flex: 1;
	height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	border-radius: 12px;
}

.abhyasa-purchase-buttons .shop-v2-variation-form {
	display: flex;
	align-items: center;
	gap: 8px;
}

.abhyasa-purchase-buttons .shop-v2-variation-form .single_add_to_cart_button {
	height: 52px;
	padding: 10px 24px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	white-space: nowrap;
}

.abhyasa-purchase-buttons .abhyasa-buy-now-btn {
	height: 52px;
	padding: 10px 24px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	white-space: nowrap;
}

/* Add to Cart Section - Single Row Layout (legacy, kept for compatibility) */
.abhyasa-add-to-cart-section {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 4px 0;
	flex-wrap: nowrap;
	height: 44px;
}

/* Bottom Action Bar */
.abhyasa-action-bar {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 16px;
}

.abhyasa-action-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.abhyasa-action-btn:hover {
	border-color: #0C7A5A;
	color: #0C7A5A;
}

.abhyasa-action-btn svg {
	flex-shrink: 0;
}

.abhyasa-share {
	position: relative;
	display: inline-flex;
}

.abhyasa-share-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	width: 220px;
	z-index: 9999;
	animation: fadeIn 0.2s ease;
}

.abhyasa-share-dropdown.active {
	display: block;
}

/* Ask A Question Modal */
.abhyasa-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.abhyasa-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease;
}

.abhyasa-modal.active body,
.abhyasa-modal.active html {
	overflow: hidden;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.abhyasa-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.abhyasa-modal-content {
	position: relative;
	background: #ffffff;
	border-radius: 18px;
	padding: 35px;
	max-width: 560px;
	width: 100%;
	max-height: 70vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	animation: scaleIn 0.3s ease;
	margin-top: 50px;
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.abhyasa-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	transition: background 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.abhyasa-modal-close:hover {
	background: #f5f5f5;
}

.abhyasa-modal-title {
	font-size: 24px;
	font-weight: 700;
	color: #0D4F3C;
	margin: 0 0 24px 0;
}

.abhyasa-form-group {
	margin-bottom: 20px;
}

.abhyasa-form-group label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	margin-bottom: 8px;
}

.abhyasa-form-group input,
.abhyasa-form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	transition: border-color 0.2s ease;
}

.abhyasa-form-group input:focus,
.abhyasa-form-group textarea:focus {
	outline: none;
	border-color: #0C7A5A;
}

.abhyasa-form-group textarea {
	resize: vertical;
}

.abhyasa-submit-btn {
	width: 100%;
	padding: 14px 24px;
	background: #0D4F3C;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.abhyasa-submit-btn:hover {
	background: #0a3d2e;
}

/* Contact Form 7 Premium Styling */
.abhyasa-contact-form-wrapper .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.abhyasa-contact-form-wrapper .wpcf7-form-control {
	width: 100%;
	height: 54px;
	border-radius: 12px;
	border: 1px solid #dfe5df;
	padding: 0 18px;
	font-size: 16px;
	font-family: inherit;
	transition: all 0.2s ease;
}

.abhyasa-contact-form-wrapper .wpcf7-form-control:focus {
	outline: none;
	border-color: #0B7A5A;
	box-shadow: 0 0 0 4px rgba(11, 122, 90, 0.12);
}

.abhyasa-contact-form-wrapper textarea.wpcf7-form-control {
	min-height: 160px;
	padding: 18px;
	resize: vertical;
}

.abhyasa-contact-form-wrapper .wpcf7-submit {
	width: 100%;
	height: 54px;
	background: #0B7A5A;
	color: #ffffff;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.abhyasa-contact-form-wrapper .wpcf7-submit:hover {
	background: #096248;
}

.abhyasa-contact-form-wrapper label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	margin-bottom: 8px;
}

.abhyasa-contact-form-wrapper .wpcf7-response-output {
	margin-top: 16px;
	padding: 12px;
	border-radius: 8px;
	font-size: 14px;
}

.abhyasa-contact-form-wrapper .wpcf7-mail-sent-ok {
	background: #f3faf5;
	color: #0B7A5A;
	border: 1px solid #0B7A5A;
}

.abhyasa-contact-form-wrapper .wpcf7-validation-errors,
.abhyasa-contact-form-wrapper .wpcf7-mail-sent-ng {
	background: #fef5f5;
	color: #dc2626;
	border: 1px solid #dc2626;
}

/* Share Dropdown */
.abhyasa-share-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	width: 220px;
	z-index: 999;
	animation: fadeIn 0.2s ease;
}

.abhyasa-share-dropdown.active {
	display: block;
}

.abhyasa-share-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	color: #333;
	text-decoration: none;
	transition: background 0.2s ease;
	margin-left: 30px;
}

.abhyasa-share-option:hover {
	background: #f5f5f5;
}

.abhyasa-share-option svg {
	flex-shrink: 0;
}

.abhyasa-quantity-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.abhyasa-quantity-wrapper label {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	margin-right: 4px;
}

.abhyasa-quantity-input-wrapper {
	display: flex;
	align-items: center;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	overflow: hidden;
	height: 44px;
}

.abhyasa-quantity-minus,
.abhyasa-quantity-plus {
	width: 36px;
	height: 44px;
	background: #f5f5f5;
	border: none;
	font-size: 20px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	transition: background 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.abhyasa-quantity-minus:hover,
.abhyasa-quantity-plus:hover {
	background: #e0e0e0;
}

.abhyasa-quantity-input {
	width: 50px;
	height: 44px;
	padding: 8px 4px;
	border: none;
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
	font-size: 16px;
	font-weight: 500;
	color: #333;
	text-align: center;
	appearance: textfield;
	-moz-appearance: textfield;
}

.abhyasa-quantity-input::-webkit-outer-spin-button,
.abhyasa-quantity-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.abhyasa-quantity-input::-moz-outer-spin-button,
.abhyasa-quantity-input::-moz-inner-spin-button {
	-moz-appearance: none;
	margin: 0;
}

.abhyasa-quantity-input:focus {
	outline: none;
}

/* Form in single row */
.shop-v2-variation-form {
	display: inline-flex;
	flex-shrink: 0;
}

.single_add_to_cart_button.shop-v2-add-to-cart-submit {
	height: 44px;
	padding: 10px 24px;
	flex-shrink: 0;
}

.abhyasa-buy-now-btn {
	height: 44px;
	padding: 10px 24px;
	flex-shrink: 0;
}

.abhyasa-out-of-stock-btn {
	height: 44px;
	padding: 12px 24px;
	flex-shrink: 0;
}


/* Product Meta Row */
.abhyasa-product-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--abhyasa-border);
}

/* Product Meta */
.abhyasa-product-meta {
	flex: 1;
}

/* Wishlist */
.abhyasa-wishlist-wrap {
	margin-left: 20px;
}

/* Share Links */
.abhyasa-product-share {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--abhyasa-border);
}

.abhyasa-share-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--abhyasa-text-dark);
}

.abhyasa-share-link {
	font-size: 14px;
	color: var(--abhyasa-primary-green);
	text-decoration: none;
	transition: color 0.3s ease;
}

.abhyasa-share-link:hover {
	color: var(--abhyasa-dark-green);
}



/* Description Section */
.abhyasa-product-description-section {
	margin-top: 40px;
	padding: 40px;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid var(--abhyasa-border);
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
}

.abhyasa-section-title {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	text-align: left;
	margin: 0 0 24px 0;
}

.abhyasa-description-content {
	font-size: 16px;
	line-height: 1.7;
	color: #333;
}

.abhyasa-description-content p {
	margin-bottom: 16px;
}

.abhyasa-description-content p:last-child {
	margin-bottom: 0;
}

.abhyasa-description-content h2,
.abhyasa-description-content h3 {
	color: #0D4F3C;
	margin: 32px 0 16px 0;
	font-weight: 700;
}

.abhyasa-description-content ul {
	list-style: disc;
	padding-left: 24px;
	margin-bottom: 16px;
}

/* Reviews Section - Compact */
.abhyasa-reviews-section {
	margin-top: 30px;
	padding: 30px;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid var(--abhyasa-border);
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}

/* WooCommerce Reviews Styling */
.woocommerce-Reviews-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--abhyasa-primary-green);
	margin-bottom: 20px;
}

.woocommerce-noreviews {
	font-size: 14px;
	color: var(--abhyasa-text-light);
	padding: 16px;
	background: var(--abhyasa-light-green);
	border-radius: 6px;
	text-align: center;
}

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

.commentlist .comment {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--abhyasa-border);
}

.commentlist .comment:last-child {
	border-bottom: none;
}

.commentlist .comment .comment-text {
	padding: 16px;
	background: #fafafa;
	border-radius: 6px;
}

.commentlist .comment .star-rating {
	color: #FFC107;
	margin-bottom: 8px;
}

.commentlist .comment .meta {
	font-size: 12px;
	color: var(--abhyasa-text-light);
	margin-bottom: 8px;
}

.commentlist .comment .description {
	font-size: 14px;
	line-height: 1.5;
	color: var(--abhyasa-text-dark);
}

.woocommerce-review-form {
	margin-top: 20px;
	padding: 20px;
	background: var(--abhyasa-light-green);
	border-radius: 6px;
}

.woocommerce-review-form label {
	font-weight: 600;
	color: var(--abhyasa-primary-green);
}

.woocommerce-review-form input[type="text"],
.woocommerce-review-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--abhyasa-border);
	border-radius: 6px;
	font-size: 14px;
}

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

.woocommerce-review-form .submit {
	background: var(--abhyasa-primary-green);
	color: #ffffff;
	border: none;
	padding: 10px 24px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.woocommerce-review-form .submit:hover {
	background: var(--abhyasa-dark-green);
}

/* Related Products Section */
.abhyasa-related-products-section {
	margin-top: 40px;
	padding: 30px 20px;
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}

.abhyasa-view-more-products-wrapper {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
}

.abhyasa-view-more-products-btn {
	display: inline-block;
	padding: 14px 32px;
	background-color: #1B4332;
	color: #FFFFFF;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	height: 52px;
	line-height: 24px;
}

.abhyasa-view-more-products-btn:hover {
	background-color: #2D6A4F;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(27, 67, 50, 0.3);
}

.abhyasa-section-title {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	text-align: left;
	margin: 0 0 24px 0;
}

.abhyasa-related-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

@media screen and (max-width: 992px) {
	.abhyasa-related-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 576px) {
	.abhyasa-related-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

/* Mobile Sticky Cart */
.abhyasa-mobile-sticky-cart {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ffffff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 999;
	padding: 16px 20px;
}

@media screen and (max-width: 768px) {
	.abhyasa-mobile-sticky-cart {
		display: block;
	}
}

.abhyasa-sticky-cart-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1280px;
	margin: 0 auto;
}

.abhyasa-sticky-product-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.abhyasa-sticky-product-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--abhyasa-text-dark);
}

.abhyasa-sticky-product-price {
	font-size: 16px;
	font-weight: 700;
	color: var(--abhyasa-primary-green);
}

.abhyasa-sticky-add-to-cart {
	background: var(--abhyasa-primary-green);
	color: #ffffff;
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.abhyasa-sticky-add-to-cart:hover {
	background: var(--abhyasa-dark-green);
}

/* 5. Timelines Milestones Alternating */
.ys-timeline-item {
	align-items: center;
}

.ys-timeline-item.left {
	justify-content: flex-start;
}

.ys-timeline-item.right {
	justify-content: flex-end;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================
   ABHYASA Premium Footer
   ============================================ */

.abhyasa-footer {
	background: #123D2F;
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
}

/* SECTION 1: Main Footer */
.abhyasa-footer-main {
	padding: 40px 0 25px;
	background: #123D2F;
}

.abhyasa-footer-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.abhyasa-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.abhyasa-footer-col {
	display: flex;
	flex-direction: column;
}

/* Column 1: About */
.abhyasa-footer-logo {
	margin-bottom: 25px;
}

.abhyasa-footer-logo img {
	max-width: 180px;
	height: auto;
}

.abhyasa-footer-logo-text {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 25px;
	letter-spacing: 0.5px;
}

.abhyasa-footer-about-text {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 30px;
	max-width: 280px;
}

.abhyasa-footer-social {
	display: flex;
	gap: 15px;
}

.abhyasa-social-link {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transition: transform 0.3s ease, background 0.3s ease;
}

.abhyasa-social-link:hover {
	transform: scale(1.1);
	background: rgba(255, 255, 255, 0.2);
}

.abhyasa-social-link svg {
	width: 20px;
	height: 20px;
}

/* Column 2 & 3: Links */
.abhyasa-footer-title {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 25px;
	letter-spacing: 0.3px;
}

/* Hide accordion icons on desktop */
.abhyasa-footer-accordion-icon {
	display: none;
}

.abhyasa-footer-accordion-trigger {
	cursor: default;
}

/* Contact Links in Column 1 */
.abhyasa-footer-contact {
	margin: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.abhyasa-contact-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	transition: opacity 0.3s ease;
}

.abhyasa-contact-link:hover {
	opacity: 0.8;
}

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

.abhyasa-footer-links li {
	margin-bottom: 12px;
}

.abhyasa-footer-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
	display: inline-block;
}

.abhyasa-footer-links a:hover {
	color: #ffffff;
	transform: translateX(4px);
}

/* Column 4: Newsletter */
.abhyasa-footer-subheading {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 20px;
	line-height: 1.6;
}

.abhyasa-newsletter-form {
	display: flex;
	gap: 10px;
	margin-bottom: 25px;
}

.abhyasa-newsletter-form input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	border-radius: 6px;
	color: #ffffff;
	font-size: 14px;
	outline: none;
	transition: border-color 0.3s ease, background 0.3s ease;
}

.abhyasa-newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.abhyasa-newsletter-form input:focus {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(255, 255, 255, 0.1);
}

.abhyasa-newsletter-form button {
	padding: 12px 24px;
	background: #ffffff;
	color: #123D2F;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
}

.abhyasa-newsletter-form button:hover {
	background: rgba(255, 255, 255, 0.9);
	transform: translateY(-1px);
}

.abhyasa-footer-contact {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
}

.abhyasa-contact-item {
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
}

.abhyasa-contact-item:last-child {
	margin-bottom: 0;
}

.abhyasa-contact-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 5px;
	font-weight: 500;
}

.abhyasa-contact-item a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.3s ease;
}

.abhyasa-contact-item a:hover {
	color: #ffffff;
}

/* SECTION 2: Trust Badges */
.abhyasa-footer-trust {
	background: #0e2f24;
	padding: 50px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.abhyasa-trust-card {
	text-align: center;
	padding: 25px 20px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	transition: transform 0.3s ease, background 0.3s ease;
}

.abhyasa-trust-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.05);
}

.abhyasa-trust-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.abhyasa-trust-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.abhyasa-trust-title {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 8px;
}

.abhyasa-trust-description {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

/* SECTION 3: Bottom Footer */
.abhyasa-footer-bottom {
	background: #0a241b;
	padding: 25px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.abhyasa-footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.abhyasa-footer-copyright p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 5px 0;
}

.abhyasa-footer-address {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

.abhyasa-footer-bottom-links {
	display: flex;
	gap: 20px;
	align-items: center;
}

.abhyasa-footer-bottom-links a {
	font-size: 14px;
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.abhyasa-footer-bottom-links a:hover {
	opacity: 0.8;
}

.abhyasa-footer-separator {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
}

/* ============================================
   Mobile Responsive Footer
   ============================================ */

@media (max-width: 1024px) {
	.abhyasa-footer-grid {
		gap: 12px;
		grid-template-columns: 1fr;
	}

	.abhyasa-footer-col {
		flex: 1 1 100%;
		margin-bottom: 0;
	}

	.abhyasa-footer-about {
		order: 1;
	}

	.abhyasa-footer-support {
		order: 2;
	}

	.abhyasa-footer-discover {
		order: 3;
	}

	.abhyasa-footer-account {
		order: 4;
	}

	.abhyasa-footer-bottom-inner {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.abhyasa-footer-copyright {
		text-align: center;
	}

	.abhyasa-footer-bottom-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}

	/* Footer Accordion Styles */
	.abhyasa-footer-accordion-trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		cursor: pointer;
		min-height: 44px;
		padding: 12px 0;
		margin-bottom: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.abhyasa-footer-accordion-icon {
		display: block;
		font-size: 24px;
		font-weight: 300;
		color: #ffffff;
	}

	.abhyasa-footer-accordion-content {
		display: none;
	}

	.abhyasa-footer-accordion-content.active {
		display: block;
	}

	.abhyasa-footer-support .abhyasa-footer-title,
	.abhyasa-footer-discover .abhyasa-footer-title,
	.abhyasa-footer-account .abhyasa-footer-title {
		margin-bottom: 0;
	}

	.abhyasa-footer-support .abhyasa-footer-links,
	.abhyasa-footer-discover .abhyasa-footer-links,
	.abhyasa-footer-account .abhyasa-footer-links {
		padding-top: 12px;
		padding-bottom: 12px;
	}
}

@media (max-width: 768px) {
	.abhyasa-footer-main {
		padding: 50px 0 40px;
	}

	.abhyasa-footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.abhyasa-footer-col {
		margin-bottom: 0;
	}

	.abhyasa-footer-about-text {
		max-width: 100%;
	}

	.abhyasa-newsletter-form {
		flex-direction: column;
	}

	.abhyasa-newsletter-form button {
		width: 100%;
	}

	.abhyasa-trust-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.abhyasa-trust-card {
		padding: 20px 15px;
	}

	.abhyasa-footer-bottom-inner {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.abhyasa-footer-bottom-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}
}

@media (max-width: 480px) {
	.abhyasa-footer-container {
		padding: 0 15px;
	}

	.abhyasa-footer-main {
		padding: 40px 0 30px;
	}

	.abhyasa-footer-title {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.abhyasa-footer-links li {
		margin-bottom: 10px;
	}

	.abhyasa-footer-links a {
		font-size: 13px;
	}

	.abhyasa-social-link {
		width: 40px;
		height: 40px;
	}

	.abhyasa-social-link svg {
		width: 18px;
		height: 18px;
	}
}
