/* ========================================
   Krishna Vagha Store - Main Stylesheet
   Elegant, Divine, Modern
   ======================================== */

/* CSS Variables already set via functions.php inline */

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-color, #333);
	background-color: #ffffff;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--header-font, 'Playfair Display', serif);
	line-height: 1.3;
	color: var(--dark-bg, #1a1a2e);
}

a {
	text-decoration: none;
	color: var(--primary-color, #b8860b);
	transition: color 0.3s ease;
}

a:hover {
	color: var(--primary-dark, #8b6508);
}

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

ul,
ol {
	list-style: none;
}

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

.highlight {
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ========================================
   LOGO SIZE CONTROL
   ======================================== */
.site-header .custom-logo,
.site-header img.custom-logo {
	max-width: 250px !important;
	max-height: 80px !important;
	height: auto !important;
	width: auto !important;
	object-fit: contain;
	display: block;
}

.site-branding a img,
.site-branding img {
	max-width: 250px !important;
	max-height: 80px !important;
	height: auto;
	width: auto;
}

.site-title-wrapper {
	max-width: 200px;
}

.site-title-wrapper a {
	display: flex;
	flex-direction: column;
	max-width: 200px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
	display: inline-block;
	padding: 14px 32px;
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 50px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	color: #fff !important;
	box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.btn-secondary {
	background: transparent;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-badge {
	display: inline-block;
	padding: 6px 18px;
	background: linear-gradient(135deg, #fff8dc, #fff3cd);
	color: var(--primary-color, #b8860b);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 20px;
	margin-bottom: 15px;
}

.section-title {
	font-size: 42px;
	margin-bottom: 15px;
	color: var(--dark-bg, #1a1a2e);
}

.section-description {
	font-size: 18px;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
	background: var(--dark-bg, #1a1a2e);
	padding: 8px 0;
	display: none;
}

.top-bar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #ccc;
	font-size: 13px;
}

.top-bar-left i,
.top-bar-right i {
	margin-right: 5px;
}

.top-bar-right a {
	color: #ccc;
	margin-left: 20px;
}

.top-bar-right a:hover {
	color: var(--secondary-color, #ffd700);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #eee;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

/* Logo / Site Title */
.site-title-wrapper a {
	display: flex;
	flex-direction: column;
}

.site-title {
	font-family: var(--header-font, 'Playfair Display', serif);
	font-size: 28px;
	font-weight: 700;
	color: var(--dark-bg, #1a1a2e);
	line-height: 1.2;
}

.site-subtitle {
	font-size: 11px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 300;
}

/* Navigation */
.main-navigation {
	display: flex;
	align-items: center;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.hamburger {
	display: block;
	width: 25px;
	height: 2px;
	background: var(--dark-bg, #1a1a2e);
	position: relative;
	transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: var(--dark-bg, #1a1a2e);
	transition: all 0.3s ease;
}

.hamburger::before {
	top: -8px;
}

.hamburger::after {
	top: 8px;
}

#primary-menu {
	display: flex;
	gap: 5px;
}

#primary-menu li {
	position: relative;
}

#primary-menu a {
	display: block;
	padding: 10px 18px;
	color: var(--text-color, #333);
	font-size: 14px;
	font-weight: 500;
	border-radius: 8px;
	transition: all 0.3s ease;
}

#primary-menu a:hover {
	color: var(--primary-color, #b8860b);
	background: linear-gradient(135deg, #fff8dc, #fff3cd);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

.header-actions a {
	position: relative;
	font-size: 20px;
	color: var(--dark-bg, #1a1a2e);
	padding: 8px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.header-actions a:hover {
	color: var(--primary-color, #b8860b);
	background: #fff8dc;
}

.cart-count {
	position: absolute;
	top: -2px;
	right: -2px;
	background: var(--accent-color, #dc143c);
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
	position: relative;
	min-height: 90vh;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,215,0,0.05)" stroke-width="0.5"/></svg>') repeat;
	background-size: 200px 200px;
	opacity: 0.5;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 80px 0;
}

.hero-badge {
	display: inline-block;
	padding: 8px 24px;
	background: rgba(255, 215, 0, 0.1);
	border: 1px solid rgba(255, 215, 0, 0.3);
	color: var(--secondary-color, #ffd700);
	font-size: 14px;
	font-weight: 500;
	border-radius: 30px;
	margin-bottom: 30px;
	animation: fadeInDown 1s ease;
}

.hero-title {
	font-size: 64px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 25px;
	animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 40px;
	animation: fadeInUp 1s ease 0.4s both;
}

.hero-actions {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-bottom: 60px;
	animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats {
	display: flex;
	gap: 40px;
	justify-content: center;
	animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stat-number {
	font-family: var(--header-font, 'Playfair Display', serif);
	font-size: 36px;
	font-weight: 700;
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 5px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
	padding: 100px 0;
	background: #fff;
}

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

.about-image-frame {
	position: relative;
	background: linear-gradient(135deg, #fff8dc, #fff3cd);
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.krishna-symbol {
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 40px;
	opacity: 0.3;
	animation: float 6s ease-in-out infinite;
}

.about-image-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.about-icon {
	font-size: 80px;
}

.about-icon-text {
	font-family: var(--header-font, 'Playfair Display', serif);
	font-size: 24px;
	color: var(--primary-color, #b8860b);
	font-weight: 600;
}

.about-content {
	padding: 20px;
}

.about-text {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 20px;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 30px;
}

.about-feature {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.feature-icon {
	font-size: 28px;
	flex-shrink: 0;
}

.feature-text h4 {
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--dark-bg, #1a1a2e);
}

.feature-text p {
	font-size: 13px;
	color: #888;
	line-height: 1.5;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #fff8dc 100%);
}

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

.category-card {
	background: #fff;
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
	border: 1px solid #eee;
	cursor: pointer;
}

.category-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color, #b8860b);
}

.category-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.category-name {
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 18px;
	font-weight: 600;
	color: var(--dark-bg, #1a1a2e);
	margin-bottom: 10px;
}

.category-count {
	font-size: 14px;
	color: #888;
}

/* ========================================
   FEATURED PRODUCTS
   ======================================== */
.featured-products-section {
	padding: 100px 0;
	background: #fff;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: stretch;
}

.product-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #eee;
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: var(--primary-color, #b8860b);
}

.product-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	min-height: 200px;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

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

.product-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #999;
	text-align: center;
	padding: 20px;
}

.placeholder-icon {
	font-size: 40px;
}

.product-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	padding: 5px 14px;
	background: var(--accent-color, #dc143c);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	border-radius: 20px;
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.product-actions {
	position: absolute;
	bottom: -60px;
	left: 0;
	right: 0;
	display: flex;
	gap: 8px;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	z-index: 2;
}

.product-card:hover .product-actions {
	bottom: 0;
}

.add-to-cart-btn {
	flex: 1;
	padding: 10px 15px;
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.add-to-cart-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.quick-view-btn,
.wishlist-btn {
	padding: 10px;
	background: #f8f9fa;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	color: #666;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.quick-view-btn:hover,
.wishlist-btn:hover {
	background: #fff3cd;
	color: var(--primary-color, #b8860b);
}

.product-details {
	padding: 20px 20px 25px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-category {
	font-size: 11px;
	color: var(--primary-color, #b8860b);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
	margin-bottom: 8px;
	display: block;
}

.product-title {
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.product-title a {
	color: var(--dark-bg, #1a1a2e);
	transition: color 0.3s ease;
}

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

.product-rating {
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.product-rating .star-rating {
	display: inline-block;
	font-size: 13px;
}

.rating-count {
	font-size: 12px;
	color: #999;
}

.product-price {
	font-family: var(--header-font, 'Playfair Display', serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color, #b8860b);
	margin-top: auto;
}

.product-price del {
	font-size: 14px;
	color: #999;
	margin-left: 8px;
	text-decoration: line-through;
}

.product-price ins {
	text-decoration: none;
	color: var(--primary-color, #b8860b);
}

.section-footer {
	text-align: center;
	margin-top: 50px;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	color: #fff;
}

.why-choose-section .section-badge {
	background: rgba(255, 215, 0, 0.15);
	color: var(--secondary-color, #ffd700);
}

.why-choose-section .section-title {
	color: #fff;
}

.why-choose-section .section-header {
	margin-bottom: 60px;
}

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

.feature-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
}

.feature-card:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-5px);
}

.feature-card-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 28px;
	color: #fff;
}

.feature-card h3 {
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 15px;
}

.feature-card p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
	padding: 100px 0;
	background: #fff;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.testimonial-card {
	background: linear-gradient(135deg, #fff8dc, #fff);
	border: 1px solid #eee;
	border-radius: 20px;
	padding: 35px;
	transition: all 0.4s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(184, 134, 11, 0.1);
}

.testimonial-stars {
	font-size: 18px;
	margin-bottom: 15px;
}

.testimonial-text {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	font-style: italic;
	margin-bottom: 25px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.testimonial-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
}

.testimonial-info h4 {
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}

.testimonial-info span {
	font-size: 13px;
	color: #888;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #fff8dc, #fff3cd);
}

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

.cta-badge {
	display: inline-block;
	padding: 6px 18px;
	background: var(--accent-color, #dc143c);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.cta-title {
	font-size: 38px;
	margin-bottom: 20px;
}

.cta-text {
	font-size: 16px;
	color: #555;
	margin-bottom: 30px;
	line-height: 1.7;
}

.cta-text strong {
	color: var(--primary-color, #b8860b);
}

.cta-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.cta-code {
	font-family: 'Courier New', monospace;
	font-size: 14px;
	color: var(--primary-color, #b8860b);
	font-weight: 600;
	letter-spacing: 2px;
}

/* ========================================
   BLOG POSTS
   ======================================== */
.blog-section {
	padding: 100px 0;
	background: #f8f9fa;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.blog-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s ease;
	border: 1px solid #eee;
}

.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-image {
	aspect-ratio: 16/9;
	overflow: hidden;
}

.blog-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #fff8dc, #f8f9fa);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	transition: transform 0.6s ease;
}

.blog-card:hover .blog-image-placeholder {
	transform: scale(1.1);
}

.blog-content {
	padding: 25px;
}

.blog-date {
	font-size: 13px;
	color: var(--primary-color, #b8860b);
	font-weight: 500;
}

.blog-title {
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 18px;
	font-weight: 600;
	margin: 10px 0;
	line-height: 1.4;
}

.blog-excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 15px;
}

.blog-read-more {
	font-weight: 600;
	font-size: 14px;
	color: var(--primary-color, #b8860b);
}

.blog-read-more:hover {
	color: var(--primary-dark, #8b6508);
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter-section {
	padding: 80px 0;
	background: var(--dark-bg, #1a1a2e);
}

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

.newsletter-title {
	font-size: 36px;
	color: #fff;
	margin-bottom: 15px;
}

.newsletter-text {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 30px;
}

.newsletter-input-group {
	display: flex;
	gap: 10px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 5px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input-group input {
	flex: 1;
	padding: 15px 20px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 15px;
	outline: none;
}

.newsletter-input-group input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group .btn {
	padding: 12px 30px;
}

.newsletter-disclaimer {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 15px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
	background: #0a0a1a;
	color: #ccc;
}

.footer-top {
	padding: 80px 0 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1.3fr;
	gap: 40px;
}

.footer-site-title {
	font-family: var(--header-font, 'Playfair Display', serif);
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}

.footer-description {
	font-size: 14px;
	line-height: 1.7;
	color: #888;
	margin: 20px 0;
}

.footer-social {
	display: flex;
	gap: 10px;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #888;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	color: #fff;
	border-color: transparent;
}

.footer-widget-title {
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
}

.footer-widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
}

.footer-menu li {
	margin-bottom: 12px;
}

.footer-menu a {
	color: #888;
	font-size: 14px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-menu a:hover {
	color: var(--secondary-color, #ffd700);
	padding-left: 5px;
}

.footer-contact .contact-item {
	display: flex;
	gap: 12px;
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.6;
}

.footer-contact .contact-item i {
	color: var(--secondary-color, #ffd700);
	margin-top: 4px;
	flex-shrink: 0;
}

.footer-contact .contact-item a {
	color: #888;
}

.footer-contact .contact-item a:hover {
	color: var(--secondary-color, #ffd700);
}

.footer-bottom {
	padding: 25px 0;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copyright {
	font-size: 14px;
	color: #666;
}

.footer-copyright a {
	color: #888;
}

.footer-copyright a:hover {
	color: var(--secondary-color, #ffd700);
}

.footer-payment {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-payment span {
	font-size: 13px;
	color: #666;
}

.footer-payment i {
	font-size: 24px;
	color: #888;
	transition: color 0.3s ease;
}

.footer-payment i:hover {
	color: #fff;
}

/* ========================================
   WOOCOMMERCE PAGES
   ======================================== */

.woocommerce-page .page-title {
	font-size: 36px;
	color: var(--dark-bg, #1a1a2e);
	margin-bottom: 40px;
	text-align: center;
}

.krishna-breadcrumb {
	margin-bottom: 30px;
	font-size: 14px;
	color: #888;
}

.krishna-breadcrumb a {
	color: var(--primary-color, #b8860b);
}

/* Shop Page */
.woocommerce-products-header {
	text-align: center;
	margin-bottom: 40px;
}

.woocommerce-result-count {
	font-size: 14px;
	color: #888;
	margin-bottom: 20px;
}

.woocommerce-ordering {
	margin-bottom: 30px;
}

.woocommerce-ordering select {
	padding: 10px 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 14px;
	cursor: pointer;
	outline: none;
}

/* Pagination */
.woocommerce-pagination {
	text-align: center;
	margin-top: 50px;
}

.woocommerce-pagination .page-numbers {
	display: inline-flex;
	gap: 5px;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
	display: block;
	padding: 10px 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text-color, #333);
	transition: all 0.3s ease;
}

.woocommerce-pagination .page-numbers li span.current,
.woocommerce-pagination .page-numbers li a:hover {
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	color: #fff;
	border-color: transparent;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	color: #fff;
	border: none;
	font-size: 20px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
	transition: all 0.3s ease;
}

.back-to-top:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

body.menu-open {
	overflow: hidden;
}

/* Header Scroll Effects */
.header-scrolled {
	box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.header-hidden {
	transform: translateY(-100%);
}

/* Error 404 Page */
.error-404-content {
	text-align: center;
	padding: 100px 20px;
	max-width: 500px;
	margin: 0 auto;
}

.error-404-icon {
	font-size: 80px;
	margin-bottom: 20px;
}

.error-title {
	font-size: 120px;
	font-family: var(--header-font, 'Playfair Display', serif);
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 10px;
}

.error-subtitle {
	font-size: 28px;
	color: var(--dark-bg, #1a1a2e);
	margin-bottom: 20px;
}

.error-404-content p {
	color: #666;
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.7;
}

.error-actions {
	display: flex;
	gap: 15px;
	justify-content: center;
}

.error-actions .btn-secondary {
	background: var(--dark-bg, #1a1a2e);
	color: #fff !important;
	border: none;
}

.error-actions .btn-secondary:hover {
	background: var(--primary-color, #b8860b);
}

/* Search Results */
.search-header {
	text-align: center;
	margin-bottom: 40px;
	padding: 40px 0;
}

.search-title {
	font-size: 32px;
	color: var(--dark-bg, #1a1a2e);
}

.search-title span {
	color: var(--primary-color, #b8860b);
}

.no-results {
	text-align: center;
	padding: 60px 20px;
	max-width: 500px;
	margin: 0 auto;
}

.no-results-icon {
	font-size: 60px;
	margin-bottom: 20px;
}

.no-results h2 {
	font-size: 24px;
	margin-bottom: 15px;
}

.no-results p {
	color: #666;
	margin-bottom: 30px;
}

.no-results .search-form {
	margin-bottom: 20px;
}

.no-results .search-form input[type="search"] {
	padding: 12px 20px;
	border: 2px solid #ddd;
	border-radius: 50px;
	width: 100%;
	max-width: 400px;
	font-family: var(--body-font, 'Poppins', sans-serif);
	outline: none;
}

.no-results .search-form input[type="search"]:focus {
	border-color: var(--primary-color, #b8860b);
}

/* Archive Page */
.archive-header {
	text-align: center;
	margin-bottom: 50px;
	padding: 40px 0;
}

.archive-title {
	font-size: 36px;
	color: var(--dark-bg, #1a1a2e);
}

.archive-description {
	color: #666;
	margin-top: 15px;
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.archive-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid #eee;
	transition: all 0.3s ease;
}

.archive-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.archive-card-image {
	aspect-ratio: 16/9;
	overflow: hidden;
}

.archive-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

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

.archive-card-content {
	padding: 25px;
}

.archive-card-date {
	font-size: 13px;
	color: var(--primary-color, #b8860b);
	font-weight: 500;
}

.archive-card-title {
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 20px;
	font-weight: 600;
	margin: 10px 0;
}

.archive-card-title a {
	color: var(--dark-bg, #1a1a2e);
}

.archive-card-title a:hover {
	color: var(--primary-color, #b8860b);
}

.archive-card-excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 15px;
}

.archive-read-more {
	font-weight: 600;
	font-size: 14px;
	color: var(--primary-color, #b8860b);
}

/* WooCommerce Notice */
.woocommerce-notice {
	text-align: center;
	padding: 40px;
	background: linear-gradient(135deg, #fff8dc, #fff3cd);
	border-radius: 15px;
	color: var(--primary-color, #b8860b);
}

/* ========================================
   SINGLE PRODUCT PAGE
   ======================================== */
.single-product {
	padding: 0px 0 100px;
	background: #ffffff;
}

/* Premium Breadcrumb Trail */
.single-product .krishna-breadcrumb {
	margin-bottom: 40px;
	padding: 12px 24px;
	background: #fdfbf7;
	border-radius: 30px;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #f3ebd9;
}



.single-product .krishna-breadcrumb a {
	color: var(--primary-color, #b8860b);
	font-weight: 500;
}

.single-product .krishna-breadcrumb a:hover {
	color: var(--primary-dark, #8b6508);
	text-decoration: underline;
}

/* Dynamic Master Split Layout */
.single-product .single-product-wrapper {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 80px;
	margin-bottom: 80px;
	align-items: flex-start;
}

/* Sticky High-End Product Gallery */
.single-product .product-gallery-column {
	position: sticky;
	top: 120px;
}

.single-product .woocommerce-product-gallery {
	background: #ffffff;
	border-radius: 24px;
	padding: 20px;
	border: 1px solid #f2f2f2;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
	position: relative;
}

.single-product .woocommerce-product-gallery__image {
	margin-bottom: 20px;
	border-radius: 16px;
	overflow: hidden;
	background: #fafafa;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s ease;
}

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

/* Elegant Thumbnail Alignment Gallery */
.single-product .woocommerce-product-gallery .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li {
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	aspect-ratio: 1 / 1;
	background: #f8f9fa;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li:hover,
.single-product .woocommerce-product-gallery .flex-control-thumbs li.flex-active {
	border-color: var(--primary-color, #b8860b);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(184, 134, 11, 0.15);
}

/* Luxury Ribbons & Sale Badges */
.single-product .onsale {
	position: absolute;
	top: 35px;
	left: 35px;
	background: var(--accent-color, #dc143c);
	color: #ffffff;
	padding: 6px 18px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	border-radius: 30px;
	z-index: 5;
	box-shadow: 0 6px 15px rgba(220, 20, 60, 0.25);
}

/* Product Content Metrics */
.single-product .product-summary-column {
	padding: 0;
}

.single-product .product_title {
	font-family: var(--header-font, 'Playfair Display', serif);
	font-size: 44px;
	font-weight: 700;
	color: var(--dark-bg, #1a1a2e);
	margin: 0 0 15px 0;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

/* Rating Interface */
.single-product .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f5f5f5;
}

.single-product .woocommerce-product-rating .star-rating {
	color: var(--secondary-color, #ffd700);
	font-size: 16px;
	letter-spacing: 2px;
}

.single-product .woocommerce-review-link {
	color: #777777;
	font-size: 14px;
	font-weight: 500;
}

.single-product .woocommerce-review-link:hover {
	color: var(--primary-color, #b8860b);
}

/* Price Engine styling */
.single-product .price {
	font-family: var(--header-font, 'Playfair Display', serif);
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color, #b8860b);
	margin: 20px 0 25px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.single-product .price del {
	color: #b0b0b0;
	font-size: 22px;
	font-weight: 400;
	text-decoration: line-through;
}

.single-product .price ins {
	text-decoration: none;
	color: var(--primary-color, #b8860b);
}

/* Blurb Area */
.single-product .woocommerce-product-details__short-description {
	font-size: 16px;
	line-height: 1.8;
	color: #5a5a5a;
	margin: 25px 0;
}

/* Form Actions, Quantities & Purchase Controls */
.single-product .cart {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 35px 0;
	flex-wrap: wrap;
}

.single-product .quantity {
	display: inline-flex;
	align-items: center;
	border: 1px solid #dddddd;
	border-radius: 30px;
	overflow: hidden;
	background: #fdfdfd;
	height: 56px;
	padding: 0 5px;
	transition: border-color 0.3s ease;
}

.single-product .quantity:focus-within {
	border-color: var(--primary-color, #b8860b);
}

.single-product .quantity .qty {
	width: 65px;
	height: 100%;
	text-align: center;
	border: none;
	background: transparent;
	outline: none;
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 16px;
	font-weight: 600;
	color: var(--dark-bg, #1a1a2e);
}

/* Master Primary Button Layout override */
.single-product .single_add_to_cart_button {
	flex: 1;
	min-width: 240px;
	height: 56px;
	padding: 0 40px;
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	color: #ffffff !important;
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.single-product .single_add_to_cart_button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(184, 134, 11, 0.4);
}

.single-product .single_add_to_cart_button::before {
	content: '\f07a';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 16px;
}

/* Variable Attributes Table Matrix */
.single-product .variations {
	width: 100%;
	margin: 25px 0;
	border-collapse: separate;
	border-spacing: 0 12px;
}

.single-product .variations td {
	padding: 8px 0;
	vertical-align: middle;
	border: none;
}

.single-product .variations .label {
	font-weight: 600;
	color: var(--dark-bg, #1a1a2e);
	font-size: 15px;
	width: 110px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.single-product .variations select {
	width: 100%;
	max-width: 320px;
	height: 48px;
	padding: 0 20px;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 14px;
	color: #444444;
	outline: none;
	background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3Csvg%3E") no-repeat right 20px center;
	appearance: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.single-product .variations select:focus {
	border-color: var(--primary-color, #b8860b);
	box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.single-product .reset_variations {
	margin-left: 15px;
	font-size: 12px;
	color: #999999;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.single-product .reset_variations:hover {
	color: var(--accent-color, #dc143c);
}

/* Grouped Product Table Redesign */
.single-product .woocommerce-grouped-product-list {
	width: 100%;
	margin: 25px 0;
	border: 1px solid #eeeeee;
	border-radius: 16px;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

.single-product .woocommerce-grouped-product-list td {
	padding: 16px 20px;
	border-bottom: 1px solid #eeeeee;
	background: #ffffff;
}

.single-product .woocommerce-grouped-product-list tr:last-child td {
	border-bottom: none;
}

.single-product .woocommerce-grouped-product-list-item__quantity {
	width: 90px;
}

.single-product .woocommerce-grouped-product-list-item__label label {
	font-weight: 600;
	color: var(--dark-bg, #1a1a2e);
	font-size: 15px;
}

.single-product .woocommerce-grouped-product-list-item__price {
	color: var(--primary-color, #b8860b);
	font-weight: 600;
	text-align: right;
}

/* Taxonomy Meta Elements */
.single-product .product_meta {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #f0f0f0;
	display: grid;
	gap: 12px;
	font-size: 14px;
}

.single-product .product_meta > span {
	color: #666666;
	display: flex;
	align-items: center;
	gap: 6px;
}

.single-product .product_meta font {
	font-weight: 600;
	color: #1a1a2e;
}

.single-product .product_meta a {
	color: var(--primary-color, #b8860b);
}

.single-product .product_meta a:hover {
	color: var(--primary-dark, #8b6508);
	text-decoration: underline;
}

.single-product .stock.in-stock { color: #2e7d32; font-weight: 600; }
.single-product .stock.out-of-stock { color: var(--accent-color, #dc143c); font-weight: 600; }

/* Deluxe Global Multi-Tab Framework */
.single-product .woocommerce-tabs {
	margin-top: 100px;
	background: #ffffff;
}

.single-product .wc-tabs {
	display: flex;
	gap: 40px;
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
	border-bottom: 1px solid #eeeeee;
}

.single-product .wc-tabs li {
	margin: 0;
}

.single-product .wc-tabs li a {
	display: block;
	padding: 0 0 20px 0;
	color: #888888;
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	letter-spacing: 0.5px;
	position: relative;
	transition: color 0.3s ease;
}

.single-product .wc-tabs li a:hover {
	color: var(--primary-color, #b8860b);
}

.single-product .wc-tabs li.active a {
	color: var(--dark-bg, #1a1a2e);
}

.single-product .wc-tabs li.active a::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b));
	border-radius: 4px 4px 0 0;
}

.single-product .woocommerce-Tabs-panel {
	background: #ffffff;
	padding: 0;
	box-shadow: none;
}

.single-product .woocommerce-Tabs-panel h2 {
	display: none; /* Redundant title inside tab panels stripped for visual elegance */
}

.single-product .woocommerce-Tabs-panel p {
	font-size: 16px;
	line-height: 1.9;
	color: #555555;
	margin-bottom: 20px;
}

/* User Review Cards Layout */
.single-product #reviews .commentlist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 30px;
}

.single-product #reviews .comment {
	padding: 30px;
	background: #fafafa;
	border-radius: 20px;
	border: 1px solid #f0f0f0;
}

.single-product #reviews .comment_container {
	display: flex;
	gap: 25px;
}

.single-product #reviews .avatar {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.single-product #reviews .comment-text {
	flex: 1;
}

.single-product #reviews .star-rating {
	color: var(--secondary-color, #ffd700);
	font-size: 14px;
	margin-bottom: 8px;
}

.single-product #reviews .meta {
	font-size: 14px;
	color: #222222;
	font-weight: 600;
	margin-bottom: 12px;
}

.single-product #reviews .meta time {
	color: #999999;
	font-weight: 400;
	font-size: 13px;
	margin-left: 8px;
}

.single-product #reviews .description {
	font-size: 15px;
	line-height: 1.8;
	color: #444444;
}

/* System Notices Messaging */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
.single-product .woocommerce-error {
	padding: 18px 28px;
	margin-bottom: 35px;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 500;
	background: #fdfbf5;
	border: 1px solid #f4ecd8;
	border-left: 4px solid var(--primary-color, #b8860b);
	color: var(--primary-dark, #8b6508);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.single-product .woocommerce-error {
	background: #fdf5f5;
	border-color: #f4d8d8;
	border-left-color: var(--accent-color, #dc143c);
	color: #b80b2c;
	list-style: none;
}

/* Cross-Sells & Core Product Matrix Sections */
.single-product .related.products,
.single-product .upsells.products {
	margin-top: 100px;
	padding-top: 80px;
	border-top: 1px solid #eeeeee;
}

.single-product .related.products > h2,
.single-product .upsells.products > h2 {
	font-family: var(--header-font, 'Playfair Display', serif);
	font-size: 36px;
	color: var(--dark-bg, #1a1a2e);
	text-align: center;
	margin: 0 0 50px;
}

.single-product .related .products,
.single-product .upsells .products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	list-style: none;
	padding: 0;
}

.single-product div.product {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: flex-start;
	margin-bottom: 80px;
}

/* Left Column: Core Gallery Hook */
.single-product div.product .woocommerce-product-gallery {
	position: sticky;
	top: 120px;
	background: #ffffff;
	border-radius: 24px;
	padding: 20px;
	border: 1px solid #f2f2f2;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
	width: 100% !important; /* Overrides native WC inline widths */
	float: none !important;
	margin: 0 !important;
}

/* Right Column: Core Summary Hook */
.single-product div.product .summary.entry-summary {
	width: 100% !important; /* Overrides native WC inline widths */
	float: none !important;
	margin: 0 !important;
	padding: 10px 0 0 0;
}

/* Adjust layout rules inside the image element */
.single-product .woocommerce-product-gallery__image {
	margin-bottom: 20px;
	border-radius: 16px;
	overflow: hidden;
	background: #fafafa;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.single-product .woocommerce-product-gallery__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

/* Title Font Optimization */
.single-product .product_title {
	font-family: var(--header-font, 'Playfair Display', serif);
	font-size: 42px;
	font-weight: 700;
	color: var(--dark-bg, #1a1a2e);
	margin: 0 0 15px 0;
	line-height: 1.2;
	letter-spacing: -0.5px;
}

/* ========================================
   TABS & FOOTER SEPARATORS (Full Width)
   ======================================== */
/* Ensures that tabs break out of the 2-column layout and drop below cleanly */
.single-product .woocommerce-tabs,
.single-product .related.products,
.single-product .upsells.products {
	grid-column: 1 / -1; /* Forces elements to span across both grid tracks */
	clear: both;
}

/* ========================================
   GLOBAL MOBILE RESPONSIVE ENGINE
   ======================================== */
@media (max-width: 1024px) {
	.single-product .single-product-wrapper {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	.single-product .product-gallery-column {
		position: static;
	}
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.top-bar { display: none; }
	.hero-title { font-size: 36px; }
	.hero-description { font-size: 16px; }
	.hero-stats { gap: 20px; flex-wrap: wrap; }
	.stat-number { font-size: 28px; }
	.section-title { font-size: 28px; }
	.about-wrapper { grid-template-columns: 1fr; gap: 40px; }
	.about-features { grid-template-columns: 1fr; }
	.products-grid, .features-grid, .categories-grid, .testimonials-grid, .blog-grid, .single-product .related .products, .single-product .upsells .products { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 30px; }
	.footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }

	/* Mobile Menu Navigation Mechanics */
	.menu-toggle { display: block; }
	#primary-menu {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 80%;
		max-width: 300px;
		height: 100vh;
		background: #ffffff;
		flex-direction: column;
		padding: 80px 30px 30px;
		box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
		z-index: 1001;
		overflow-y: auto;
	}
	#primary-menu.toggled { display: flex; }
	#primary-menu a { padding: 15px 0; border-bottom: 1px solid #eeeeee; }
	
	.single-product .wc-tabs { gap: 20px; }
	.single-product .wc-tabs li a { padding: 10px 0; font-size: 15px; }
	.single-product .product_title { font-size: 32px; }
}

@media (max-width: 480px) {
	.hero-title { font-size: 28px; }
	.hero-actions { flex-direction: column; align-items: center; }
	.newsletter-input-group { flex-direction: column; border-radius: 20px; }
	.newsletter-input-group input { text-align: center; }
	.product-actions { position: static; background: none; padding: 15px; display: flex; }
	.single-product .cart { flex-direction: column; align-items: stretch; }
	.single-product .quantity { justify-content: center; }
	.single-product .single_add_to_cart_button { width: 100%; }
	.single-product #reviews .comment_container { flex-direction: column; }
}

@media (max-width: 1024px) {
	/* Reverts native product container back into a single column stack */
	.single-product div.product {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.single-product div.product .woocommerce-product-gallery {
		position: static;
	}
}
/* ========================================
   SHOP ARCHIVE & CATEGORY GRID SYSTEM
   ======================================== */
.woocommerce-products-header {
	text-align: center;
	margin-bottom: 50px;
	padding: 20px 0;
}

/* Sorting & Results Filter Bar */
.woocommerce-page .woocommerce-ordering {
	margin-bottom: 40px;
	float: none;
	display: flex;
	justify-content: flex-start;
}

.woocommerce-page .woocommerce-ordering select {
	padding: 12px 24px;
	border: 1px solid #e0e0e0;
	border-radius: 30px;
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 14px;
	color: #444444;
	outline: none;
	background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3Csvg%3E") no-repeat right 20px center;
	appearance: none;
	cursor: pointer;
	min-width: 220px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	transition: border-color 0.3s ease;
}

.woocommerce-page .woocommerce-ordering select:focus {
	border-color: var(--primary-color, #b8860b);
}

/* Force Native WooCommerce Loops into 3 columns */
.woocommerce-page ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 40px 30px !important;
	padding: 0 !important;
	margin: 0 0 60px 0 !important;
	list-style: none !important;
}

/* Clear legacy WooCommerce floats that break loops */
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
	display: none !important;
}

/* Individual Product Cards styling */
.woocommerce-page ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #eeeeee;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	padding: 20px 20px 25px 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.woocommerce-page ul.products li.product:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(184, 134, 11, 0.08);
	border-color: var(--primary-color, #b8860b);
}

/* Product Images positioning */
.woocommerce-page ul.products li.product a img {
	width: 100% !important;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 14px;
	background: #fafafa;
	margin-bottom: 20px !important;
	transition: transform 0.5s ease;
}

.woocommerce-page ul.products li.product:hover a img {
	transform: scale(1.03);
}

/* Title Font Configurations */
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--body-font, 'Poppins', sans-serif) !important;
	font-size: 18px !important;
	font-weight: 600 !important;
	color: var(--dark-bg, #1a1a2e) !important;
	line-height: 1.4 !important;
	margin: 0 0 12px 0 !important;
	padding: 0 !important;
}

/* Price block separation styling */
.woocommerce-page ul.products li.product .price {
	font-family: var(--header-font, 'Playfair Display', serif) !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	color: var(--primary-color, #b8860b) !important;
	margin-bottom: 20px !important;
	display: block !important;
}

.woocommerce-page ul.products li.product .price del {
	font-size: 14px;
	color: #999999;
	margin-right: 6px;
}

.woocommerce-page ul.products li.product .price ins {
	text-decoration: none;
}

/* Add to Cart Button Core Redesign */
.woocommerce-page ul.products li.product .button.add_to_cart_button {
	margin-top: auto !important;
	width: 100%;
	height: 48px;
	background: var(--gold-gradient, linear-gradient(135deg, #b8860b, #ffd700, #b8860b)) !important;
	color: #ffffff !important;
	font-family: var(--body-font, 'Poppins', sans-serif);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	transition: all 0.3s ease !important;
	box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.woocommerce-page ul.products li.product .button.add_to_cart_button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(184, 134, 11, 0.35);
}

/* Added to Cart Feedback Badge Overlay */
.woocommerce-page ul.products li.product .added_to_cart.wc-forward {
	display: block;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	color: #2e7d32;
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
	/* Drop to 2 Columns on Tablets */
	.woocommerce-page ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 25px !important;
	}
	/* Navigation */
	.main-navigation {
		display: none;
	}
}

@media (max-width: 600px) {
	/* Drop to 1 Column on Mobile Smartphones */
	.woocommerce-page ul.products {
		grid-template-columns: 1fr !important;
		gap: 30px !important;
	}
	
	.woocommerce-page .woocommerce-ordering {
		justify-content: center;
	}
	
	.woocommerce-page .woocommerce-ordering select {
		width: 100%;
	}
}