/**
 * LovFah Custom Styles
 * 
 * Main stylesheet for LovFah theme
 * This file contains all the custom styles for the theme
 */

/* Base Reset & Normalize */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-neutral);
	letter-spacing: var(--letter-spacing);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Google Fonts Integration */
:root {
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-heading: 'Playfair Display', serif;
	--font-accent: 'Inter', sans-serif;
	
	/* Brand Color Palette */
	--color-primary: #D5C7A1;      /* Sand Beige */
	--color-secondary: #4C6044;    /* Olive Green */
	--color-accent: #A67B5B;       /* Natural Wood */
	--color-neutral: #FAF8F5;      /* Off-white */
	--color-text: #2C2C2C;        /* Charcoal */
	--color-white: #FFFFFF;
	
	/* Typography */
	--letter-spacing: 0.5px;
	--letter-spacing-heading: 0.5px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 600;
	line-height: 1.2;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	color: var(--color-text);
	letter-spacing: var(--letter-spacing-heading);
}

h1 {
	font-size: 2.5rem;
	font-weight: 700;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.75rem;
}

/* Links */
a {
	color: #0066cc;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #004499;
	text-decoration: none;
}

/* Buttons */
button,
.button,
.wp-block-button__link {
	font-family: var(--font-accent);
	font-weight: 500;
	padding: 12px 24px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

/* Responsive Typography */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}
	
	h2 {
		font-size: 1.75rem;
	}
	
	h3 {
		font-size: 1.5rem;
	}
}

/* Custom Block Styles */
ul.is-style-checkmark-list {
	list-style-type: "\2713";
}

ul.is-style-checkmark-list li {
	padding-inline-start: 1ch;
}

/* Navigation Menu Styles */
.main-navigation {
	margin: 0;
	flex: 1;
	display: flex;
	justify-content: center;
}

.main-navigation ul,
.main-navigation .primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
}

.main-navigation li {
	margin: 0;
	padding: 0;
	position: relative;
}

.main-navigation a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
	font-weight: 500;
	padding: 0.5rem 0;
	display: block;
}

.main-navigation a:hover {
	color: #0066cc;
}

/* Submenu Support */
.main-navigation ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	border-radius: 4px;
	padding: 0.5rem 0;
	min-width: 200px;
	display: none;
	flex-direction: column;
	gap: 0;
	z-index: 999;
}

.main-navigation li:hover > ul {
	display: flex;
}

.main-navigation ul ul li {
	width: 100%;
}

.main-navigation ul ul a {
	padding: 0.75rem 1.5rem;
	white-space: nowrap;
}

/* Site Header */
.site-header {
	height: 80px;
	min-height: 80px;
	border-bottom: 1px solid rgba(44, 44, 44, 0.1);
	background: rgba(250, 248, 245, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease, transform 0.3s ease;
	display: flex;
	align-items: center;
	transform: translateY(0);
	width: 100%;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

/* Mobile Wrapper for Logo and Hamburger */
.header-mobile-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 1rem;
}

@media (min-width: 1025px) {
	.header-mobile-wrapper {
		display: contents;
	}
}

@media (max-width: 1024px) {
	.header-mobile-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: center;
		width: 100%;
		gap: 1rem;
	}
}

.site-header.scrolled {
	background: rgba(250, 248, 245, 0.98);
	box-shadow: 0 2px 20px rgba(44, 44, 44, 0.08);
	height: 70px;
	min-height: 70px;
}

.site-branding {
	margin: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

/* Custom Logo Styles */
.site-logo {
	margin: 0;
	line-height: 1;
}

.custom-logo-link {
	display: inline-block;
	line-height: 0;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.custom-logo-link:hover {
	opacity: 0.8;
}

.custom-logo {
	height: auto;
	max-height: 60px;
	width: auto;
	max-width: 200px;
	display: block;
}

.site-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.site-title a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-title a:hover {
	color: var(--color-secondary);
}

.site-description {
	margin: 0.5rem 0 0 0;
	color: #666;
	font-size: 0.9rem;
}

/* Skip Link */
.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999999;
}

.skip-link:focus {
	left: 6px;
	top: 7px;
	width: auto;
	height: auto;
	padding: 8px 16px;
	background: #000;
	color: #fff;
	text-decoration: none;
}

/* Site Footer */
.site-footer {
	background: var(--color-secondary);
	color: var(--color-white);
	padding: 4rem 0 2rem;
	position: relative;
	margin-top: 0;
	width: 100%;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, transparent, rgba(245, 224, 179, 0.6), transparent);
	box-shadow: 0 0 20px rgba(245, 224, 179, 0.4);
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	width: 100%;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-widget {
	text-align: left;
}

.footer-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 1.5rem;
}

.footer-text {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.75rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.3s ease, padding-left 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: var(--color-primary);
	padding-left: 5px;
}

.footer-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1rem;
}

.footer-newsletter-input {
	padding: 0.75rem 1rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--color-white);
	font-size: 0.95rem;
	backdrop-filter: blur(10px);
}

.footer-newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter-input:focus {
	outline: none;
	border-color: var(--color-primary);
	background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter-button {
	padding: 0.75rem 1.5rem;
	background: var(--color-primary);
	color: var(--color-text);
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.footer-newsletter-button:hover {
	background: var(--color-accent);
	color: var(--color-white);
	transform: translateY(-2px);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	margin: 0;
}

.site-info {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
	.footer-widgets {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.footer-widget {
		text-align: center;
	}
}

/* Entry Content */
.entry-header {
	margin-bottom: 1.5rem;
}

.entry-title {
	display: none !important;
}

.entry-meta {
	font-size: 0.9rem;
	color: #666;
	margin-top: 0.5rem;
}

.entry-meta span {
	margin-right: 1rem;
}

.post-thumbnail {
	margin-bottom: 1.5rem;
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.entry-content {
	line-height: 1.8;
}

.entry-content p {
	margin-bottom: 1.5em;
}

.entry-footer {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid #e0e0e0;
}

.read-more {
	font-weight: 500;
}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: 1px solid #ddd;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1.5rem;
	margin-right: 1rem;
}

.menu-toggle-icon {
	display: block;
}

.menu-toggle.menu-open .menu-toggle-icon::before {
	content: '✕';
}

/* Responsive Layout */
@media (max-width: 767px) {
	.menu-toggle {
		display: block;
	}
	
	.main-navigation {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
	}
	
	.main-navigation .primary-menu {
		display: none;
		flex-direction: column;
		width: 100%;
		gap: 0;
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid #e0e0e0;
	}
	
	.main-navigation .primary-menu.menu-open {
		display: flex;
	}
	
	.main-navigation .primary-menu li {
		width: 100%;
		border-bottom: 1px solid #f0f0f0;
	}
	
	.main-navigation .primary-menu a {
		padding: 1rem;
		display: block;
	}
	
	.main-navigation ul ul {
		position: static;
		box-shadow: none;
		background: #f5f5f5;
		margin-left: 1rem;
	}
	
	.site-header {
		height: 60px !important;
		min-height: 60px !important;
		padding: 0;
		position: -webkit-sticky !important;
		position: sticky !important;
		top: 0 !important;
		z-index: 1000 !important;
		width: 100% !important;
	}
	
	.header-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
		padding: 0 1rem;
	}
	
	.site-branding {
		width: 100%;
	}
	
	.main-navigation {
		width: 100%;
		justify-content: flex-start;
	}
	
	.main-navigation ul,
	.main-navigation .primary-menu {
		flex-wrap: wrap;
		gap: 1rem;
	}
	
	.header-actions {
		width: 100%;
		display: flex;
		gap: 0.75rem;
		justify-content: flex-end;
	}
}

@media (min-width: 768px) {
	.site-header {
		height: 80px;
		min-height: 80px;
	}
	
	.header-container {
		flex-direction: row;
		align-items: center;
		gap: 2rem;
	}
	
	.site-branding {
		margin-bottom: 0;
	}
	
	.main-navigation {
		justify-content: center;
	}
	
	.header-actions {
		margin-left: 0;
	}
}

/* ============================================
   HOMEPAGE SECTIONS - All 13 Sections
   ============================================ */

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--color-text);
	opacity: 0.8;
	line-height: 1.6;
}

.section-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--color-text);
	margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary {
	display: inline-block;
	padding: 1.25rem 3rem;
	background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 6px 25px rgba(76, 96, 68, 0.4);
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(76, 96, 68, 0.5);
	filter: brightness(1.1);
}

.btn-outline {
	display: inline-block;
	padding: 1.25rem 3rem;
	background: transparent;
	color: var(--color-white);
	text-decoration: none;
	border: 2px solid var(--color-white);
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-outline:hover {
	background: var(--color-white);
	color: var(--color-secondary);
}

/* 1️⃣ Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.sunlight-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 30% 50%, rgba(245, 224, 179, 0.3) 0%, transparent 50%);
	animation: sunlightSweep 15s ease-in-out infinite;
	pointer-events: none;
}

@keyframes sunlightSweep {
	0%, 100% {
		transform: translateX(-20%) translateY(-10%);
		opacity: 0.3;
	}
	50% {
		transform: translateX(20%) translateY(10%);
		opacity: 0.5;
	}
}

.leaf-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(2px 2px at 20% 30%, rgba(245, 224, 179, 0.3), transparent),
		radial-gradient(2px 2px at 60% 70%, rgba(255, 245, 225, 0.2), transparent),
		radial-gradient(1px 1px at 50% 50%, rgba(245, 224, 179, 0.4), transparent);
	background-size: 200% 200%;
	animation: leafDrift 20s linear infinite;
	pointer-events: none;
}

@keyframes leafDrift {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 100% 100%;
	}
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: var(--color-white);
	max-width: 900px;
	padding: 3rem 2rem;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: 4.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
	line-height: 1.1;
	letter-spacing: 0.5px;
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
	font-weight: 400;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* 2️⃣ Featured Products Section */
.featured-products-section {
	padding: 4rem 0;
	background: var(--color-neutral);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-top: 3rem;
}

/* Shop page products grid - same as homepage */
.shop-products-section .products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	margin-top: 3rem;
}

@media (max-width: 1024px) {
	.products-grid,
	.shop-products-section .products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 640px) {
	.products-grid,
	.shop-products-section .products-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.product-card {
	background: var(--color-white);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(245, 224, 179, 0.4);
}

.product-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.product-image-wrapper {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image {
	transform: scale(1.1);
}

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(76, 96, 68, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 3;
}

.product-card:hover .product-overlay {
	opacity: 1;
	pointer-events: auto;
}

.product-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	pointer-events: auto;
}

.product-actions * {
	pointer-events: auto;
	position: relative;
	z-index: 3;
}

.btn-view-details-icon,
.btn-add-to-cart-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: var(--color-white);
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-view-details-icon:hover,
.btn-add-to-cart-icon:hover {
	background: var(--color-primary);
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.view-icon,
.cart-icon {
	font-size: 1.5rem;
	line-height: 1;
}

.sunshine-border {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 3px solid transparent;
	border-radius: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
	box-shadow: 0 0 20px rgba(245, 224, 179, 0.6);
	pointer-events: none;
	z-index: 1;
}

.product-card:hover .sunshine-border {
	opacity: 1;
	animation: sunshinePulse 2s ease-in-out infinite;
}

@keyframes sunshinePulse {
	0%, 100% {
		box-shadow: 0 0 20px rgba(245, 224, 179, 0.6);
	}
	50% {
		box-shadow: 0 0 30px rgba(245, 224, 179, 0.9);
	}
}

.product-info {
	padding: 1rem 1.5rem 1.5rem;
	pointer-events: auto;
	cursor: pointer;
}

.product-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	margin-top: 0;
	color: var(--color-text);
	pointer-events: auto;
	cursor: pointer;
}

.product-price {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-secondary);
	margin-bottom: 0;
	pointer-events: auto;
	cursor: pointer;
}

.btn-add-to-cart-product {
	display: block;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	text-align: center;
	width: calc(100% - 3rem);
	margin: 0 1.5rem 1.5rem;
	box-sizing: border-box;
	position: relative;
	z-index: 10;
}

.btn-add-to-cart-product:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(76, 96, 68, 0.4);
	filter: brightness(1.1);
	color: var(--color-white);
	text-decoration: none;
}

/* 3️⃣ Shop by Category */
.shop-categories-section {
	padding: 4rem 0;
	background: var(--color-white);
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.category-card {
	position: relative;
	height: 300px;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.category-card:hover {
	transform: translateY(-10px) scale(1.02);
}

.category-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.category-card:hover .category-image {
	transform: scale(1.1);
}

.category-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent 0%, rgba(76, 96, 68, 0.7) 100%);
	transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
	background: linear-gradient(to bottom, transparent 0%, rgba(213, 199, 161, 0.8) 100%);
	box-shadow: 0 0 30px rgba(245, 224, 179, 0.5);
}

.category-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 2rem;
	z-index: 2;
}

.category-title {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	color: var(--color-white);
	font-weight: 700;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
	margin-bottom: 0.5rem;
}

.category-description {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
	margin: 0;
	line-height: 1.4;
}

/* 4️⃣ Gift Sets Section */
.gift-sets-section {
	padding: 4rem 0;
	background: var(--color-neutral);
}

.gift-sets-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.gift-sets-image {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.gift-sets-image > div {
	width: 100%;
	height: 500px;
	background-size: cover;
	background-position: center;
}

.gift-sets-text {
	padding: 2rem;
}

/* 5️⃣ Ritual Guide */
.ritual-guide-section {
	padding: 4rem 0;
	background: var(--color-white);
	position: relative;
	overflow: hidden;
}

.ritual-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.ritual-step {
	text-align: center;
	padding: 2rem;
	background: var(--color-neutral);
	border-radius: 12px;
	transition: transform 0.3s ease;
	position: relative;
}

.ritual-step:hover {
	transform: translateY(-5px);
}

.step-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.step-number {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 0.5rem;
}

.step-text {
	font-size: 1rem;
	color: var(--color-text);
	line-height: 1.6;
}

.water-ripple {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(to bottom, transparent, rgba(76, 96, 68, 0.05));
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(76, 96, 68, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(76, 96, 68, 0.1) 0%, transparent 50%);
	animation: ripple 3s ease-in-out infinite;
	pointer-events: none;
}

@keyframes ripple {
	0%, 100% {
		opacity: 0.3;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.05);
	}
}

/* 6️⃣ Sunshine Section */
.sunshine-section {
	padding: 4rem 0;
	background: var(--color-primary);
	position: relative;
	overflow: hidden;
}

.sunshine-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.sunlight-leaves {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(ellipse at 30% 40%, rgba(255, 245, 225, 0.4) 0%, transparent 50%),
		radial-gradient(ellipse at 70% 60%, rgba(245, 224, 179, 0.3) 0%, transparent 50%);
	animation: sunlightLeaves 10s ease-in-out infinite;
}

@keyframes sunlightLeaves {
	0%, 100% {
		transform: translateX(-5%) rotate(-2deg);
	}
	50% {
		transform: translateX(5%) rotate(2deg);
	}
}

.leaf-particles-drift {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(1px 1px at 25% 25%, rgba(245, 224, 179, 0.4), transparent),
		radial-gradient(1px 1px at 75% 75%, rgba(255, 245, 225, 0.3), transparent);
	background-size: 300% 300%;
	animation: leafDrift 25s linear infinite;
}

.sunshine-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.sunshine-text {
	font-size: 1.5rem;
	font-family: var(--font-heading);
	color: var(--color-text);
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
}

/* 7️⃣ Material Story */
.material-story-section {
	padding: 4rem 0;
	background: var(--color-neutral);
}

.material-story-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.material-story-image {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.material-story-image > div {
	width: 100%;
	height: 500px;
	background-size: cover;
	background-position: center;
}

.radial-light-sweep {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(245, 224, 179, 0.3) 0%, transparent 70%);
	animation: radialSweep 8s ease-in-out infinite;
	pointer-events: none;
}

@keyframes radialSweep {
	0%, 100% {
		transform: scale(0.8) translate(-10%, -10%);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.2) translate(10%, 10%);
		opacity: 0.5;
	}
}

/* 8️⃣ Customer Favorites Carousel */
.customer-favorites-section {
	padding: 4rem 0;
	background: var(--color-white);
	overflow: hidden;
}

.favorites-carousel {
	position: relative;
	margin-top: 3rem;
}

.carousel-track {
	display: flex;
	gap: 2rem;
	animation: carouselScroll 30s linear infinite;
	width: max-content;
}

@keyframes carouselScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.favorite-card {
	min-width: 280px;
	background: var(--color-neutral);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.favorite-card:hover {
	transform: scale(1.05);
}

.favorite-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.favorite-image-wrapper {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.favorite-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.favorite-card:hover .favorite-image {
	transform: scale(1.1);
}

.favorite-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(76, 96, 68, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.favorite-card:hover .favorite-overlay {
	opacity: 1;
}

.add-to-cart-mini {
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.favorite-card:hover .add-to-cart-mini {
	transform: scale(1);
}

.sunlight-shimmer {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.favorite-card:hover .sunlight-shimmer {
	left: 100%;
	transition: left 0.8s ease;
}

.favorite-info {
	padding: 1.5rem;
}

.favorite-title {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	color: var(--color-text);
}

.favorite-price {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-secondary);
}

/* 9️⃣ Sustainability */
.sustainability-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.sustainability-content {
	text-align: center;
}

.sustainability-icons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.sustainability-icon {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease;
}

.sustainability-icon:hover {
	transform: scale(1.1);
}

.icon-emoji {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.icon-text {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-white);
}

.sustainability-text {
	font-size: 1.3rem;
	font-family: var(--font-heading);
	color: var(--color-white);
}

/* 🔟 Testimonials */
.testimonials-section {
	padding: 4rem 0;
	background: var(--color-neutral);
}

.testimonials-carousel-wrapper {
	overflow: hidden;
	margin-top: 3rem;
	position: relative;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	padding: 0;
}

.testimonials-carousel {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 0;
	transition: transform 0.6s ease-in-out;
	will-change: transform;
	width: 100%;
}

.testimonials-carousel .testimonial-card {
	flex: 0 0 100%;
	flex-shrink: 0;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	margin: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.testimonial-card {
	background: var(--color-white);
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 1rem;
	background-size: cover;
	background-position: center;
	border: 3px solid var(--color-primary);
}

.testimonial-stars {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.testimonial-text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text);
	margin-bottom: 1rem;
	font-style: italic;
}

.testimonial-name {
	font-weight: 600;
	color: var(--color-secondary);
}

/* 1️⃣1️⃣ Instagram Gallery */
.instagram-section {
	padding: 4rem 0;
	background: var(--color-white);
}

.instagram-handle {
	font-size: 1.2rem;
	color: var(--color-secondary);
	font-weight: 600;
	margin-top: 0.5rem;
}

.instagram-scroll-wrapper {
	overflow: hidden;
	margin-top: 3rem;
	position: relative;
	width: 100%;
}

.instagram-grid {
	display: flex;
	gap: 1rem;
	width: max-content;
	animation: instagramScroll 30s linear infinite;
}

.instagram-grid:hover {
	animation-play-state: paused;
}

.instagram-grid .instagram-item {
	flex: 0 0 250px;
	width: 250px;
}

.instagram-item {
	position: relative;
	aspect-ratio: 1;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
}

.instagram-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.instagram-item:hover .instagram-image {
	transform: scale(1.1);
}

.instagram-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(76, 96, 68, 0.85);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
	opacity: 1;
}

.instagram-product {
	color: var(--color-white);
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.instagram-watermark {
	color: var(--color-white);
	font-size: 0.9rem;
	opacity: 0.9;
}

/* 1️⃣2️⃣ Newsletter */
.newsletter-section {
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
	background: var(--color-primary);
}

.newsletter-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.newsletter-sunlight {
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(255, 245, 225, 0.4) 0%, transparent 70%);
	animation: newsletterSunlight 10s ease-in-out infinite;
}

@keyframes newsletterSunlight {
	0%, 100% {
		transform: scale(0.9) translate(-5%, -5%);
		opacity: 0.4;
	}
	50% {
		transform: scale(1.1) translate(5%, 5%);
		opacity: 0.6;
	}
}

@keyframes instagramScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-50% - 0.5rem)); /* Move by exactly half (since content is duplicated) */
	}
}

.newsletter-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.newsletter-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	color: var(--color-text);
	margin-bottom: 1rem;
}

.newsletter-text {
	font-size: 1.1rem;
	color: var(--color-text);
	margin-bottom: 2rem;
	opacity: 0.9;
}

.newsletter-form {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.newsletter-input {
	flex: 1;
	min-width: 250px;
	padding: 1rem 1.5rem;
	border: 2px solid var(--color-secondary);
	border-radius: 8px;
	font-size: 1rem;
	background: var(--color-white);
	color: var(--color-text);
}

.newsletter-input:focus {
	outline: none;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.2rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.gift-sets-content,
	.material-story-content {
		grid-template-columns: 1fr;
	}
	
	.products-grid,
	.categories-grid {
		grid-template-columns: 1fr;
	}
	
	.testimonials-carousel-wrapper {
		max-width: 100% !important;
		width: 100% !important;
		padding: 0 20px;
		margin-top: 2rem;
		box-sizing: border-box;
	}
	
	.testimonials-carousel {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 0;
		width: 100%;
	}
	
	.testimonials-carousel .testimonial-card {
		flex: 0 0 100% !important;
		flex-shrink: 0 !important;
		width: 100% !important;
		min-width: 100% !important;
		max-width: 100% !important;
		padding: 1.5rem;
		margin: 0;
		box-sizing: border-box;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
	}
	
	.instagram-grid .instagram-item {
		flex: 0 0 200px;
		width: 200px;
	}
	
	.newsletter-form {
		flex-direction: column;
	}
	
	.newsletter-input {
		width: 100%;
	}
}

/* ========================================
   🛍️ SHOP PAGE STYLES (shop.md)
   ======================================== */

/* Shop Color Variables */
:root {
	--shop-primary: #DCC7A1;
	--shop-secondary: #4C694F;
	--shop-bg: #F6F3EC;
	--shop-sunshine: #FFD27F;
	--shop-text: #2E2B26;
}

/* 1️⃣ Hero Section */
.shop-hero-section {
	position: relative;
	width: 100%;
	height: 70vh;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.shop-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.shop-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(220, 199, 161, 0.3) 0%, rgba(76, 105, 79, 0.2) 100%);
}

.sunlight-sweep-animation {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 127, 0.4) 50%, transparent 100%);
	animation: sunlightSweepShop 8s ease-in-out infinite;
}

@keyframes sunlightSweepShop {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}

.shop-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: var(--shop-text);
}

.shop-hero-title {
	font-family: var(--font-heading);
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--shop-text);
	text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}

.shop-hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: var(--shop-text);
	font-weight: 400;
	text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.5);
}

.shop-hero-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--shop-secondary);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.shop-hero-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 210, 127, 0.6), transparent);
	transition: left 0.5s ease;
}

.shop-hero-button:hover::before {
	left: 100%;
}

.shop-hero-button:hover {
	background: var(--shop-primary);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 210, 127, 0.4);
}

/* 2️⃣ Filter + Sorting Bar */
/* Mobile Filter Toggle Button */
.shop-filter-toggle {
	display: none;
	position: fixed;
	bottom: 2rem;
	right: 1.5rem;
	z-index: 99999;
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white) !important;
	border: none;
	border-radius: 50px;
	padding: 1rem 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(76, 96, 68, 0.4);
	transition: all 0.3s ease;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-direction: row;
	width: auto;
	height: auto;
	min-width: 120px;
	pointer-events: auto;
}

.shop-filter-toggle:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(76, 96, 68, 0.5);
}

.shop-filter-toggle .filter-icon {
	font-size: 1.2rem;
}

.shop-filters-bar {
	position: sticky;
	top: 80px;
	z-index: 100;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(220, 199, 161, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Filter Drawer */
.shop-filter-drawer-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 9998;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.shop-filter-drawer-overlay.active {
	display: block;
	opacity: 1;
}

.shop-filter-drawer {
	display: none;
	position: fixed;
	top: 0;
	right: -100%;
	width: 85%;
	max-width: 400px;
	height: 100%;
	background: var(--color-white);
	z-index: 9999;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
	transition: right 0.3s ease;
	overflow-y: auto;
}

.shop-filter-drawer.active {
	display: block;
	right: 0;
}

.filter-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	border-bottom: 1px solid rgba(220, 199, 161, 0.2);
	background: var(--color-neutral);
	position: sticky;
	top: 0;
	z-index: 1;
}

.filter-drawer-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--shop-text);
	margin: 0;
}

.filter-drawer-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--shop-text);
	cursor: pointer;
	padding: 0.5rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.filter-drawer-close:hover {
	transform: rotate(90deg);
}

.filter-drawer-body {
	padding: 1.5rem;
}

.filter-drawer-body .filter-group {
	margin-bottom: 1.5rem;
}

.filter-drawer-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(220, 199, 161, 0.2);
	position: sticky;
	bottom: 0;
	background: var(--color-white);
	padding-bottom: 1.5rem;
}

.filter-apply-btn,
.filter-clear-btn {
	width: 100%;
	padding: 1rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-body);
}

.filter-apply-btn {
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white);
	box-shadow: 0 4px 12px rgba(76, 96, 68, 0.3);
}

.filter-apply-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(76, 96, 68, 0.4);
}

.filter-clear-btn {
	background: var(--color-neutral);
	color: var(--shop-text);
	border: 2px solid rgba(220, 199, 161, 0.3);
}

.filter-clear-btn:hover {
	background: rgba(220, 199, 161, 0.1);
	border-color: rgba(220, 199, 161, 0.5);
}

.filters-content {
	display: flex;
	gap: 2rem;
	align-items: flex-end;
	flex-wrap: wrap;
}

.filter-group {
	flex: 1;
	min-width: 200px;
}

.filter-label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--shop-text);
	margin-bottom: 0.5rem;
}

.filter-select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid rgba(220, 199, 161, 0.3);
	border-radius: 8px;
	background: var(--color-white);
	color: var(--shop-text);
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-select:focus {
	outline: none;
	border-color: var(--shop-primary);
	box-shadow: 0 0 0 3px rgba(220, 199, 161, 0.2);
}

.filter-search {
	flex: 2;
}

.search-wrapper {
	position: relative;
}

.search-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.2rem;
	z-index: 1;
}

.filter-search-input {
	width: 100%;
	padding: 0.75rem 1rem 0.75rem 3rem;
	border: 2px solid rgba(220, 199, 161, 0.3);
	border-radius: 8px;
	background: var(--color-white);
	color: var(--shop-text);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.filter-search-input:focus {
	outline: none;
	border-color: var(--shop-primary);
	box-shadow: 0 0 0 3px rgba(220, 199, 161, 0.2);
}

/* 3️⃣ Product Grid */
.shop-products-section {
	padding: 4rem 0;
	background: var(--shop-bg);
}

/* Hide default WooCommerce shop header */
.shop-products-section .woocommerce-products-header,
.shop-products-section .woocommerce-result-count,
.shop-products-section .woocommerce-ordering,
.page-shop-2 .woocommerce-products-header,
.page-shop-2 .woocommerce-result-count,
.page-shop-2 .woocommerce-ordering,
body.page-shop-2 .woocommerce-products-header,
body.page-shop-2 .woocommerce-result-count,
body.page-shop-2 .woocommerce-ordering {
	display: none !important;
}

/* Override shop page to use homepage product card styles */
.shop-products-section .products-grid li.product {
	list-style: none;
	margin: 0;
	padding: 0;
}

.shop-products-section .products-grid li.product .product-card {
	width: 100%;
}

/* Ensure hero section shows on shop-2 page */
body.page-shop-2 .shop-hero-section,
.page-shop-2 .shop-hero-section {
	display: block !important;
}

.shop-products-grid,
.shop-products-section ul.products.shop-products-grid,
.shop-products-section .woocommerce ul.products.shop-products-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
	gap: 2rem !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.shop-product-card,
.shop-products-section li.product,
.shop-products-section .woocommerce ul.products li.product {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	background: transparent !important;
	list-style: none !important;
}

.shop-product-inner,
.shop-products-section li.product > * {
	background: var(--color-white) !important;
	border-radius: 24px !important;
	overflow: hidden !important;
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.1), 0 2px 8px rgba(46, 43, 38, 0.06) !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	height: 100% !important;
	display: flex !important;
	flex-direction: column !important;
	border: 1px solid rgba(220, 199, 161, 0.2) !important;
}

.shop-product-inner:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 16px 40px rgba(46, 43, 38, 0.15), 0 4px 12px rgba(46, 43, 38, 0.1);
	border-color: rgba(220, 199, 161, 0.4);
}

.shop-product-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.shop-product-image-wrapper {
	position: relative;
	width: 100%;
	height: 320px;
	overflow: hidden;
	background: var(--shop-bg);
}

.shop-product-image,
.shop-products-section .woocommerce ul.products li.product img,
.shop-products-section ul.products li.product img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
	background-size: cover !important;
	background-position: center !important;
	display: block !important;
}

.shop-product-inner:hover .shop-product-image {
	transform: scale(1.1);
}

.shop-product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(76, 105, 79, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.shop-product-inner:hover .shop-product-overlay {
	opacity: 1;
	pointer-events: auto;
}

.shop-product-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.shop-view-details-btn {
	padding: 0.75rem 1.5rem;
	background: var(--color-white);
	color: var(--shop-secondary);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.shop-view-details-btn:hover {
	background: var(--shop-sunshine);
	color: var(--shop-text);
	transform: scale(1.05);
}

.shop-add-to-cart-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--color-white);
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.shop-add-to-cart-btn:hover {
	background: var(--shop-sunshine);
	transform: scale(1.1) translateY(-2px);
	animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
	0%, 100% {
		transform: scale(1.1) translateY(-2px);
	}
	50% {
		transform: scale(1.2) translateY(-5px);
	}
}

.cart-icon-btn {
	font-size: 1.5rem;
}

.sunlight-shimmer-effect {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 127, 0.3) 50%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.shop-product-inner:hover .sunlight-shimmer-effect {
	opacity: 1;
	animation: shimmerPass 1.5s ease;
}

@keyframes shimmerPass {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.shop-product-info {
	padding: 1.75rem 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	background: var(--color-white);
}

.shop-product-title,
.shop-products-section .woocommerce-loop-product__title,
.shop-products-section h2.woocommerce-loop-product__title,
.shop-products-section h3.woocommerce-loop-product__title {
	font-family: var(--font-heading) !important;
	font-size: 1.25rem !important;
	font-weight: 600 !important;
	color: var(--shop-text) !important;
	margin-bottom: 0.5rem !important;
	margin-top: 0 !important;
	line-height: 1.3 !important;
}

.shop-product-title a,
.shop-products-section .woocommerce-loop-product__title a {
	color: var(--shop-text) !important;
	text-decoration: none !important;
}

.shop-product-price,
.shop-products-section .price,
.shop-products-section .woocommerce-Price-amount {
	font-size: 1.3rem !important;
	font-weight: 700 !important;
	color: var(--shop-secondary) !important;
	margin-bottom: 0.5rem !important;
	font-family: var(--font-accent) !important;
}

.shop-product-subtext {
	font-size: 0.875rem;
	color: var(--shop-primary);
	font-style: italic;
	margin-top: auto;
}

/* Override default WooCommerce product link styles */
.shop-products-section .woocommerce ul.products li.product a,
.shop-products-section ul.products li.product a {
	text-decoration: none !important;
}

.shop-products-section .woocommerce ul.products li.product .woocommerce-loop-product__link,
.shop-products-section ul.products li.product .woocommerce-loop-product__link {
	display: contents !important;
}

/* Ensure product cards use our custom structure */
.shop-products-section .woocommerce ul.products li.product,
.shop-products-section ul.products li.product {
	width: 100% !important;
}

.shop-products-section .woocommerce ul.products li.product .shop-product-inner,
.shop-products-section ul.products li.product .shop-product-inner {
	width: 100% !important;
}

/* Hide any default WooCommerce buttons that might appear */
.shop-products-section .woocommerce ul.products li.product .button,
.shop-products-section .woocommerce ul.products li.product .add_to_cart_button,
.shop-products-section ul.products li.product .button,
.shop-products-section ul.products li.product .add_to_cart_button {
	display: none !important;
}

/* Show our custom overlay buttons */
.shop-products-section .shop-product-overlay {
	display: flex !important;
}

/* Completely override WooCommerce default product card styles for shop-2 */
body.page-shop-2 .woocommerce ul.products li.product,
.page-shop-2 .woocommerce ul.products li.product,
.shop-products-section .woocommerce ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	position: relative !important;
}

body.page-shop-2 .woocommerce ul.products li.product::before,
body.page-shop-2 .woocommerce ul.products li.product::after,
.page-shop-2 .woocommerce ul.products li.product::before,
.page-shop-2 .woocommerce ul.products li.product::after {
	display: none !important;
}

/* Ensure our custom card structure is visible */
body.page-shop-2 .shop-product-inner,
.page-shop-2 .shop-product-inner,
.shop-products-section .shop-product-inner {
	opacity: 1 !important;
	visibility: visible !important;
	display: flex !important;
}

/* 4️⃣ Featured Banner */
.shop-featured-banner {
	position: relative;
	padding: 4rem 2rem;
	background: linear-gradient(135deg, var(--shop-bg) 0%, var(--shop-primary) 100%);
	text-align: center;
	overflow: hidden;
}

.banner-gradient-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, var(--shop-bg) 0%, var(--shop-sunshine) 50%, var(--shop-bg) 100%);
	background-size: 200% 100%;
	animation: gradientSweep 5s ease-in-out infinite;
	opacity: 0.3;
}

@keyframes gradientSweep {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.shop-banner-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.shop-banner-text {
	font-size: 1.5rem;
	font-family: var(--font-heading);
	color: var(--shop-text);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.shop-banner-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: var(--shop-secondary);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.shop-banner-button:hover {
	background: var(--shop-primary);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 210, 127, 0.4);
}

/* 5️⃣ Reviews Slider */
/* Shop reviews now use testimonials-section classes - see .testimonials-section above */

.review-customer-photo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 1rem;
	background-size: cover;
	background-position: center;
	border: 3px solid var(--shop-primary);
}

.review-rating {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.review-text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--shop-text);
	margin-bottom: 1rem;
	font-style: italic;
}

.review-name {
	font-weight: 600;
	color: var(--shop-secondary);
	margin-bottom: 0.5rem;
}

.review-product-image {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	margin: 1rem auto;
	background-size: cover;
	background-position: center;
	border: 2px solid var(--shop-primary);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-product {
	font-size: 0.875rem;
	color: var(--shop-primary);
	font-style: italic;
	font-weight: 600;
	margin-top: 0.5rem;
}

.sun-dust-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle at 20% 30%, rgba(255, 210, 127, 0.3) 0%, transparent 50%),
	                  radial-gradient(circle at 80% 70%, rgba(255, 210, 127, 0.2) 0%, transparent 50%);
	animation: sunDustFloat 10s ease-in-out infinite;
	pointer-events: none;
}

@keyframes sunDustFloat {
	0%, 100% {
		opacity: 0.3;
		transform: translateY(0);
	}
	50% {
		opacity: 0.6;
		transform: translateY(-20px);
	}
}

/* 6️⃣ Eco-Promise Section */
.shop-eco-promise-section {
	padding: 4rem 0;
	background: var(--color-white);
}

.eco-promise-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.eco-promise-card {
	position: relative;
	background: var(--color-white);
	padding: 3rem 2rem;
	border-radius: 24px;
	text-align: center;
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.1), 0 2px 8px rgba(46, 43, 38, 0.06);
	border: 1px solid rgba(220, 199, 161, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.eco-promise-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.eco-promise-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.eco-promise-text {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--shop-text);
}

.sunshine-glow-border {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid transparent;
	border-radius: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
	box-shadow: 0 0 20px rgba(255, 210, 127, 0.5);
}

.eco-promise-card:hover .sunshine-glow-border {
	opacity: 1;
	animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
	0%, 100% {
		box-shadow: 0 0 20px rgba(255, 210, 127, 0.5);
	}
	50% {
		box-shadow: 0 0 30px rgba(255, 210, 127, 0.8);
	}
}

/* 7️⃣ CTA Section */
.shop-cta-section {
	position: relative;
	padding: 6rem 2rem;
	background-size: cover;
	background-position: center;
	text-align: center;
	overflow: hidden;
}

.shop-cta-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(220, 199, 161, 0.4) 0%, rgba(76, 105, 79, 0.3) 100%);
}

.shop-cta-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.shop-cta-title {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	color: var(--shop-text);
	margin-bottom: 2rem;
	text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}

.shop-cta-button {
	display: inline-block;
	padding: 1.25rem 3rem;
	background: var(--shop-secondary);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-size: 1.2rem;
	font-weight: 700;
	transition: all 0.3s ease;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.shop-cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 210, 127, 0.6), transparent);
	transition: left 0.5s ease;
}

.shop-cta-button:hover::before {
	left: 100%;
}

.shop-cta-button:hover {
	background: var(--shop-sunshine);
	color: var(--shop-text);
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(255, 210, 127, 0.6);
}

/* Shop Responsive */
@media (max-width: 768px) {
	.shop-hero-title {
		font-size: 2.5rem;
	}
	
	.shop-hero-subtitle {
		font-size: 1.2rem;
	}
	
	.filters-content {
		flex-direction: column;
		gap: 1rem;
	}
	
	.shop-products-grid {
		grid-template-columns: 1fr;
	}
	
	.shop-reviews-carousel-wrapper {
		max-width: 100% !important;
		width: 100% !important;
		padding: 0 1rem;
		margin-top: 1.5rem;
		box-sizing: border-box;
	}
	
	.shop-reviews-carousel {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 0;
		width: 100%;
	}
	
	.shop-review-card {
		flex: 0 0 100% !important;
		flex-shrink: 0 !important;
		width: 100% !important;
		min-width: 100% !important;
		max-width: 100% !important;
		padding: 2rem 1.5rem;
		margin: 0;
		box-sizing: border-box;
	}
	
	.eco-promise-grid {
		grid-template-columns: 1fr;
	}
	
	.shop-cta-title {
		font-size: 2rem;
	}
}

/* Pagination Styles - matching homepage design */
.pagination-wrapper {
	margin-top: 3rem;
	text-align: center;
}

.pagination-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.pagination-item {
	margin: 0;
	padding: 0;
}

.pagination-link {
	display: inline-block;
	padding: 0.75rem 1.25rem;
	background: var(--color-white);
	color: var(--color-text);
	text-decoration: none;
	border: 1px solid rgba(76, 96, 68, 0.2);
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	min-width: 44px;
	text-align: center;
}

.pagination-link:hover,
.pagination-link.current {
	background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
	color: var(--color-white);
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(76, 96, 68, 0.3);
}

.pagination-link.dots {
	border: none;
	background: transparent;
	cursor: default;
}

.pagination-link.dots:hover {
	transform: none;
	box-shadow: none;
}

/* ============================================
   SINGLE PRODUCT PAGE STYLES
   ============================================ */

/* 1. Hero Product Display */
.single-product-hero {
	padding: 2rem 0;
	background: var(--color-neutral);
}

.single-product-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.single-product-image-wrapper {
	position: relative;
}

.single-product-image-container {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	background: var(--color-white);
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.1), 0 2px 8px rgba(46, 43, 38, 0.06);
}

.single-product-main-image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	object-fit: cover;
}

.single-product-image-wrapper:hover .single-product-main-image {
	transform: scale(1.05);
}

.sunshine-sweep-overlay {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 127, 0.3) 50%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 2;
}

.single-product-image-wrapper:hover .sunshine-sweep-overlay {
	opacity: 1;
	animation: sunshineSweep 2s ease-in-out infinite;
}

@keyframes sunshineSweep {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.single-product-gallery-thumbnails {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
}

.gallery-thumbnail {
	width: 80px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.gallery-thumbnail:hover {
	border-color: var(--single-sunshine);
	transform: scale(1.05);
}

.gallery-thumbnail .thumbnail-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-product-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.single-product-title {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	color: var(--single-text);
	margin: 0;
	line-height: 1.2;
	letter-spacing: 0.5px;
}

.single-product-subtitle {
	font-size: 1.1rem;
	color: var(--single-primary);
	font-style: italic;
	margin: 0;
}

.single-product-rating {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.star-rating {
	display: flex;
	gap: 0.25rem;
}

.star-rating .star {
	font-size: 1.2rem;
	line-height: 1;
}

.star-rating .star.filled {
	opacity: 1;
}

.star-rating .star.half {
	opacity: 0.5;
}

.star-rating .star.empty {
	opacity: 0.2;
}

.rating-count {
	font-size: 0.9rem;
	color: var(--single-text);
	opacity: 0.7;
}

.single-product-price {
	font-size: 2rem;
	font-weight: 700;
	color: var(--single-text);
	font-family: var(--font-accent);
}

.single-product-short-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--single-text);
	opacity: 0.9;
}

.single-product-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.single-product-actions form.cart {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.single-product-actions .quantity {
	margin-right: 0;
}

.single-product-actions .quantity input[type="number"] {
	width: 80px;
	padding: 0.75rem;
	border: 2px solid rgba(220, 199, 161, 0.3);
	border-radius: 8px;
	font-size: 1rem;
	text-align: center;
	background: var(--color-white);
	color: var(--single-text);
	transition: all 0.3s ease;
}

.single-product-actions .quantity input[type="number"]:focus {
	outline: none;
	border-color: var(--single-sunshine);
	box-shadow: 0 0 0 3px rgba(255, 210, 127, 0.2);
}

.single-product-actions .single_add_to_cart_button,
.single-product-actions button[type="submit"],
.single-product-actions .button {
	padding: 1.25rem 3rem;
	background: var(--single-sunshine);
	color: var(--single-text);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 6px 25px rgba(255, 210, 127, 0.4);
	flex: 1;
	min-width: 200px;
}

.single-product-actions .single_add_to_cart_button:hover,
.single-product-actions button[type="submit"]:hover,
.single-product-actions .button:hover {
	background: var(--single-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(255, 210, 127, 0.6);
}

.single-product-wishlist-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: transparent;
	border: 2px solid var(--single-secondary);
	border-radius: 8px;
	color: var(--single-secondary);
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.single-product-wishlist-btn:hover {
	background: var(--single-secondary);
	color: var(--color-white);
	transform: scale(1.05);
}

.single-product-wishlist-btn .wishlist-icon {
	font-size: 1.2rem;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

/* 2. Sunshine Divider */
.sunshine-divider {
	position: relative;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--single-sunshine) 50%, transparent 100%);
	overflow: hidden;
}

.sunshine-ray {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
	animation: rayMove 3s ease-in-out infinite;
}

@keyframes rayMove {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

/* 3. Product Story Section */
.single-product-story {
	padding: 2rem 0;
	background: var(--single-bg);
}

.story-section-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--single-text);
	text-align: center;
	margin-bottom: 3rem;
	letter-spacing: 0.5px;
}

.story-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.story-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--single-text);
}

.story-text p {
	margin-bottom: 1.5rem;
}

.story-image-wrapper {
	position: relative;
	width: 100%;
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.1);
}

.story-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(220, 199, 161, 0.1) 0%, rgba(76, 105, 79, 0.1) 100%);
}

/* 4. Product Benefits Section */
.single-product-benefits {
	padding: 2rem 0;
	background: var(--color-white);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.benefit-card {
	background: var(--single-bg);
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(46, 43, 38, 0.08);
	position: relative;
	overflow: hidden;
}

.benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 127, 0.2) 50%, transparent 100%);
	transition: left 0.5s ease;
}

.benefit-card:hover::before {
	left: 100%;
}

.benefit-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.15);
}

.benefit-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.benefit-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--single-text);
	margin-bottom: 0.75rem;
}

.benefit-text {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--single-text);
	opacity: 0.8;
}

/* 5. Accordion Section */
.single-product-accordion {
	padding: 2rem 0;
	background: var(--single-bg);
}

.accordion-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.accordion-item {
	background: var(--color-white);
	border-radius: 8px;
	margin-bottom: 1rem;
	box-shadow: 0 2px 8px rgba(46, 43, 38, 0.08);
	overflow: hidden;
}

.accordion-header {
	width: 100%;
	padding: 1.5rem;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	text-align: left;
	transition: all 0.3s ease;
}

.accordion-header:hover {
	background: var(--single-bg);
}

.accordion-icon {
	font-size: 1.5rem;
}

.accordion-title {
	flex: 1;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--single-text);
}

.accordion-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--single-secondary);
	transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
	transform: rotate(45deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
	max-height: 500px;
	padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--single-text);
	opacity: 0.9;
}

/* 6. Customer Reviews Section */
.single-product-reviews {
	padding: 2rem 0;
	background: var(--single-bg);
	position: relative;
}

.reviews-section-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--single-text);
	text-align: center;
	margin-bottom: 3rem;
	letter-spacing: 0.5px;
}

.reviews-wrapper {
	position: relative;
}

.sun-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(2px 2px at 20% 30%, rgba(255, 210, 127, 0.3), transparent),
		radial-gradient(2px 2px at 60% 70%, rgba(255, 210, 127, 0.2), transparent),
		radial-gradient(1px 1px at 50% 50%, rgba(255, 210, 127, 0.4), transparent);
	background-size: 200% 200%;
	animation: particleFloat 20s linear infinite;
	pointer-events: none;
	opacity: 0.5;
}

@keyframes particleFloat {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 100% 100%;
	}
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.review-card {
	background: var(--color-white);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(46, 43, 38, 0.08);
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.review-author {
	font-weight: 600;
	color: var(--single-text);
}

.review-rating {
	display: flex;
	gap: 0.25rem;
}

.review-rating .star {
	font-size: 1rem;
}

.review-rating .star.filled {
	opacity: 1;
}

.review-rating .star.empty {
	opacity: 0.2;
}

.review-content {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--single-text);
	opacity: 0.9;
	margin-bottom: 1rem;
}

.review-date {
	font-size: 0.875rem;
	color: var(--single-text);
	opacity: 0.6;
}

.no-reviews {
	text-align: center;
	padding: 3rem;
	color: var(--single-text);
	opacity: 0.7;
}

.write-review-btn-wrapper {
	text-align: center;
	margin-top: 2rem;
}

.write-review-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--single-secondary);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.write-review-btn:hover {
	background: var(--single-primary);
	color: var(--single-text);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(76, 105, 79, 0.3);
}

/* 7. Recommended Products */
.single-product-recommended {
	padding: 2rem 0;
	background: var(--color-white);
}

.single-product-recommended .woocommerce ul.products-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.single-product-recommended .woocommerce ul.products-grid li {
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (max-width: 1024px) {
	.single-product-recommended .woocommerce ul.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 640px) {
	.single-product-recommended .woocommerce ul.products-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

.recommended-section-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--single-text);
	text-align: center;
	margin-bottom: 3rem;
	letter-spacing: 0.5px;
}

/* 8. CTA Section */
.single-product-cta {
	position: relative;
	padding: 3rem 2rem;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	text-align: center;
	overflow: hidden;
}

.cta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(220, 199, 161, 0.4) 0%, rgba(76, 105, 79, 0.3) 100%);
}

.cta-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.cta-title {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	color: var(--single-text);
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}

.cta-text {
	font-size: 1.5rem;
	color: var(--single-text);
	margin-bottom: 2rem;
	text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.5);
}

.cta-button {
	display: inline-block;
	padding: 1.25rem 3rem;
	background: var(--single-sunshine);
	color: var(--single-text);
	text-decoration: none;
	border-radius: 8px;
	font-size: 1.2rem;
	font-weight: 700;
	transition: all 0.3s ease;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
	background: var(--single-primary);
	transform: scale(1.05);
	box-shadow: 0 8px 30px rgba(255, 210, 127, 0.6);
}

/* WooCommerce Variations & Form Elements */
.single-product-actions .variations {
	margin-bottom: 1rem;
	width: 100%;
}

.single-product-actions .variations td {
	padding: 0.5rem 0;
}

.single-product-actions .variations label {
	font-weight: 600;
	color: var(--single-text);
	margin-bottom: 0.5rem;
	display: block;
}

.single-product-actions .variations select {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid rgba(220, 199, 161, 0.3);
	border-radius: 8px;
	background: var(--color-white);
	color: var(--single-text);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.single-product-actions .variations select:focus {
	outline: none;
	border-color: var(--single-sunshine);
	box-shadow: 0 0 0 3px rgba(255, 210, 127, 0.2);
}

.single-product-actions .reset_variations {
	display: inline-block;
	margin-top: 0.5rem;
	color: var(--single-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.single-product-actions .reset_variations:hover {
	color: var(--single-primary);
	text-decoration: underline;
}

.single-product-actions .woocommerce-variation {
	margin-top: 1rem;
}

.single-product-actions .woocommerce-variation-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--single-text);
	margin-bottom: 1rem;
}

.single-product-actions .stock {
	font-weight: 600;
	color: var(--single-secondary);
	margin-bottom: 1rem;
}

.single-product-actions .stock.out-of-stock {
	color: #d32f2f;
}

/* Single Product Responsive */
@media (max-width: 1024px) {
	.single-product-hero-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.story-content-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.single-product-title {
		font-size: 2rem;
	}
	
	.benefits-grid {
		grid-template-columns: 1fr;
	}
	
	.reviews-grid {
		grid-template-columns: 1fr;
	}
	
	.cta-title {
		font-size: 2rem;
	}
	
	.cta-text {
		font-size: 1.2rem;
	}
	
	.single-product-actions form.cart {
		flex-direction: column;
	}
	
	.single-product-actions .quantity {
		width: 100%;
	}
	
	.single-product-actions .quantity input[type="number"] {
		width: 100%;
	}
	
	.single-product-actions .single_add_to_cart_button,
	.single-product-actions button[type="submit"],
	.single-product-actions .button {
		width: 100%;
		min-width: auto;
	}
}

/* ============================================
   CRAFTSMANSHIP PAGE STYLES
   ============================================ */

/* 1. Hero Section */
.craftsmanship-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.craftsmanship-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.sunshine-animation {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 127, 0.3) 50%, transparent 100%);
	animation: sunshineSweepSlow 8s ease-in-out infinite;
	z-index: 2;
}

@keyframes sunshineSweepSlow {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.craftsmanship-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(44, 44, 44, 0.4) 0%, rgba(76, 96, 68, 0.3) 100%);
	z-index: 2;
}

.craftsmanship-hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: var(--color-white);
	max-width: 800px;
	padding: 2rem;
}

.craftsmanship-hero-title {
	font-family: var(--font-heading);
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.5px;
}

.craftsmanship-hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.6;
}

.craftsmanship-hero-button {
	display: inline-block;
	padding: 1.25rem 3rem;
	background: linear-gradient(135deg, #4C6044 0%, #5C7054 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.craftsmanship-hero-button:hover {
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
	background: linear-gradient(135deg, #5C7054 0%, #6C8054 100%);
}

/* 2. Egyptian Fields Section */
.craftsmanship-egyptian-section {
	padding: 2rem 0;
	background: #FAF8F5;
}

.egyptian-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.egyptian-image-wrapper {
	position: relative;
	width: 100%;
	height: 500px;
	border-radius: 8px;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.1);
}

.parallax-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(220, 199, 161, 0.1) 0%, rgba(76, 105, 79, 0.1) 100%);
}

.egyptian-heading {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 1.5rem;
	letter-spacing: 0.5px;
}

.egyptian-text p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--color-text);
	margin-bottom: 1.5rem;
}

.egyptian-quote {
	font-family: 'Satisfy', 'Great Vibes', cursive;
	font-size: 1.75rem;
	color: #FFD27F;
	font-style: italic;
	text-align: center;
	margin: 2rem 0;
	padding: 1.5rem;
	border-left: 4px solid #FFD27F;
	background: rgba(255, 210, 127, 0.1);
	border-radius: 8px;
}

/* 3. Artisans Section */
.craftsmanship-artisans-section {
	padding: 2rem 0;
	background: linear-gradient(180deg, #FAF8F5 0%, #D5C7A1 100%);
	position: relative;
}

.artisans-content {
	text-align: center;
	margin-bottom: 3rem;
}

.artisans-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 1.5rem;
	letter-spacing: 0.5px;
}

.artisans-description {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--color-text);
	max-width: 800px;
	margin: 0 auto 1.5rem;
}

.artisans-images-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
	z-index: 2;
}

.artisan-image-card {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.15);
	transition: all 0.3s ease;
	cursor: pointer;
}

.artisan-image-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(46, 43, 38, 0.25);
}

.artisan-image {
	width: 100%;
	height: 400px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.sunshine-shimmer {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 127, 0.3) 50%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.artisan-image-card:hover .sunshine-shimmer {
	opacity: 1;
	animation: sunshineSweep 2s ease-in-out infinite;
}

.sunburst-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 210, 127, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	animation: sunburstPulse 4s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}

@keyframes sunburstPulse {
	0%, 100% {
		opacity: 0.3;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.5;
		transform: translate(-50%, -50%) scale(1.1);
	}
}

/* 4. Timeline Section */
.craftsmanship-timeline-section {
	padding: 2rem 0;
	background: var(--color-white);
}

.timeline-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-text);
	text-align: center;
	margin-bottom: 4rem;
	letter-spacing: 0.5px;
}

.timeline-wrapper {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #FFD27F 0%, #D5C7A1 100%);
	transform: translateX(-50%);
	z-index: 1;
}

.timeline-steps {
	position: relative;
	z-index: 2;
}

.timeline-step {
	display: flex;
	align-items: center;
	margin-bottom: 4rem;
	position: relative;
}

.timeline-step:nth-child(odd) {
	flex-direction: row;
}

.timeline-step:nth-child(even) {
	flex-direction: row-reverse;
}

.timeline-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--color-white);
	border: 4px solid #FFD27F;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	box-shadow: 0 4px 12px rgba(255, 210, 127, 0.3);
	position: relative;
	z-index: 3;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.timeline-step.active .timeline-icon,
.timeline-step:hover .timeline-icon {
	background: #FFD27F;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(255, 210, 127, 0.6);
}

.timeline-content {
	flex: 1;
	padding: 0 3rem;
	background: var(--color-white);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(46, 43, 38, 0.08);
	padding: 2rem;
	margin: 0 2rem;
}

.timeline-step-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}

.timeline-step-location {
	font-size: 0.9rem;
	color: #4C6044;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.timeline-step-description {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text);
	opacity: 0.9;
}

/* 5. Skin Section */
.craftsmanship-skin-section {
	position: relative;
	padding: 3rem 2rem;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	text-align: center;
	overflow: hidden;
}

.skin-section-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(220, 199, 161, 0.4) 0%, rgba(76, 105, 79, 0.3) 100%);
	animation: brightnessShift 6s ease-in-out infinite;
}

@keyframes brightnessShift {
	0%, 100% {
		opacity: 0.5;
	}
	50% {
		opacity: 0.7;
	}
}

.skin-section-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.skin-section-title {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
}

.skin-section-subtext {
	font-size: 1.3rem;
	color: var(--color-text);
	margin-bottom: 2.5rem;
	text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.5);
	line-height: 1.6;
}

.skin-section-button {
	display: inline-block;
	padding: 1.25rem 3rem;
	background: linear-gradient(135deg, #4C6044 0%, #5C7054 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.skin-section-button:hover {
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
}

/* 6. Video Section */
.craftsmanship-video-section {
	padding: 2rem 0;
	background: var(--color-white);
}

.video-wrapper {
	max-width: 1000px;
	margin: 0 auto;
}

.video-container {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(46, 43, 38, 0.15);
	margin-bottom: 2rem;
}

.video-placeholder {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	background-size: cover;
	background-position: center;
	position: relative;
	cursor: pointer;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease;
}

.video-placeholder:hover .video-play-button {
	transform: translate(-50%, -50%) scale(1.1);
}

.video-quote {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-style: italic;
	color: var(--color-text);
	text-align: center;
	padding: 2rem;
	background: rgba(255, 210, 127, 0.1);
	border-radius: 8px;
	border-left: 4px solid #FFD27F;
}

/* 7. Values Section */
.craftsmanship-values-section {
	padding: 2rem 0;
	background: #FAF8F5;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.value-card {
	background: var(--color-white);
	padding: 2.5rem;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(46, 43, 38, 0.08);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.15);
}

.value-icon {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
}

.value-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 1rem;
}

.value-description {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text);
	opacity: 0.9;
}

.sunshine-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	border: 3px solid rgba(255, 210, 127, 0);
	border-radius: 50%;
	opacity: 0;
	transition: all 0.3s ease;
}

.value-card:hover .sunshine-ring {
	opacity: 1;
	border-color: rgba(255, 210, 127, 0.5);
	animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
	0%, 100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.5;
	}
	50% {
		transform: translate(-50%, -50%) scale(1.2);
		opacity: 0.8;
	}
}

/* 8. Quote Divider */
.craftsmanship-quote-divider {
	padding: 2rem 0;
	background: var(--color-white);
}

.quote-divider-text {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-style: italic;
	color: var(--color-text);
	text-align: center;
	padding: 2rem 0;
	position: relative;
	border-bottom: 2px solid transparent;
	border-image: linear-gradient(90deg, transparent 0%, #FFD27F 50%, transparent 100%) 1;
}

.quote-divider-text::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #FFD27F 50%, transparent 100%);
}

/* 9. CTA Section */
.craftsmanship-cta-section {
	padding: 3rem 2rem;
	background: linear-gradient(135deg, #D5C7A1 0%, #FFD27F 100%);
	position: relative;
	overflow: hidden;
}

.cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.cta-headline {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 1.5rem;
	letter-spacing: 0.5px;
}

.cta-subtext {
	font-size: 1.3rem;
	color: var(--color-text);
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-button-primary {
	display: inline-block;
	padding: 1.25rem 3rem;
	background: linear-gradient(135deg, #4C6044 0%, #5C7054 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
}

.cta-button-secondary {
	display: inline-block;
	padding: 1.25rem 3rem;
	background: transparent;
	color: var(--color-text);
	border: 2px solid #FFD27F;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.cta-button-secondary:hover {
	background: #FFD27F;
	color: var(--color-text);
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
}

.sun-flare-animation {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
	animation: sunFlareTransition 6s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}

@keyframes sunFlareTransition {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

/* Craftsmanship Responsive */
@media (max-width: 1024px) {
	.craftsmanship-hero-title {
		font-size: 3rem;
	}
	
	.egyptian-content-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.artisans-images-grid {
		grid-template-columns: 1fr;
	}
	
	.timeline-line {
		left: 40px;
	}
	
	.timeline-step {
		flex-direction: row !important;
		padding-left: 80px;
	}
	
	.timeline-content {
		margin: 0;
	}
	
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.craftsmanship-hero-title {
		font-size: 2rem;
	}
	
	.craftsmanship-hero-subtitle {
		font-size: 1.2rem;
	}
	
	.values-grid {
		grid-template-columns: 1fr;
	}
	
	.cta-headline {
		font-size: 2rem;
	}
	
	.cta-buttons {
		flex-direction: column;
	}
	
	.cta-button-primary,
	.cta-button-secondary {
		width: 100%;
	}
}

/* ============================================
   BLOG & ARTICLE PAGE STYLES
   ============================================ */

/* BLOG ARCHIVE PAGE */

/* 1. Blog Hero Section */
.blog-hero {
	position: relative;
	width: 100%;
	height: 70vh;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.blog-hero .leaf-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(3px 3px at 20% 30%, rgba(255, 210, 127, 0.3), transparent),
		radial-gradient(2px 2px at 60% 70%, rgba(255, 210, 127, 0.2), transparent),
		radial-gradient(2px 2px at 80% 10%, rgba(255, 210, 127, 0.25), transparent),
		radial-gradient(1px 1px at 50% 50%, rgba(255, 210, 127, 0.4), transparent);
	background-size: 200% 200%;
	animation: leafParticleDrift 20s linear infinite;
	pointer-events: none;
	z-index: 2;
	opacity: 0.6;
}

@keyframes leafParticleDrift {
	0% {
		background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%;
		transform: translateY(0);
	}
	50% {
		background-position: 50% 50%, 0% 0%, 100% 0%, 50% 0%;
		transform: translateY(-20px);
	}
	100% {
		background-position: 100% 100%, 50% 50%, 0% 100%, 100% 0%;
		transform: translateY(0);
	}
}

.blog-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.sunshine-overlay-animation {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 127, 0.3) 50%, transparent 100%);
	animation: sunshineSweepSlow 8s ease-in-out infinite;
	z-index: 2;
}

.blog-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(44, 44, 44, 0.4) 0%, rgba(76, 96, 68, 0.3) 100%);
	z-index: 2;
}

.blog-hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: var(--color-white);
	max-width: 800px;
	padding: 2rem;
}

.blog-hero-title {
	font-family: var(--font-heading);
	font-size: 4rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.5px;
}

.blog-hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.6;
}

.blog-hero-button {
	display: inline-block;
	padding: 1.25rem 3rem;
	background: linear-gradient(135deg, #4C6044 0%, #5C7054 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.blog-hero-button:hover {
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
}

/* 2. Featured Article Section */
.blog-featured-section {
	padding: 2rem 0;
	background: #FAF8F5;
}

.featured-article-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	background: var(--color-white);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(46, 43, 38, 0.08);
}

.featured-image-wrapper {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.featured-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform 0.6s ease;
	display: block;
}

.featured-image-wrapper:hover .featured-image {
	transform: scale(1.05);
}

.featured-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.featured-category {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: #4C6044;
	color: var(--color-white);
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	width: fit-content;
}

.featured-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
	line-height: 1.2;
	position: relative;
}

.featured-title a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

.featured-title:hover a {
	background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 127, 0.3) 50%, transparent 100%);
	background-size: 200% 100%;
	animation: sunshineHighlight 2s ease-in-out infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@keyframes sunshineHighlight {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

.featured-excerpt {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--color-text);
	opacity: 0.9;
}

.featured-read-more {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: linear-gradient(135deg, #4C6044 0%, #5C7054 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	width: fit-content;
	transition: all 0.3s ease;
}

.featured-read-more:hover {
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
}

/* 3. Blog Grid Section */
.blog-grid-section {
	padding: 2rem 0;
	background: var(--color-white);
}

.blog-grid-wrapper {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 3rem;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.blog-card {
	background: #FAF8F5;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(46, 43, 38, 0.06);
}

.blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.15);
}

.blog-card:hover .blog-card-image {
	transform: scale(1.1);
}

.blog-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.blog-card-image-wrapper {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.blog-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	display: block;
}

.blog-card-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.blog-card-category {
	display: inline-block;
	padding: 0.375rem 0.875rem;
	background: #4C6044;
	color: var(--color-white);
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	width: fit-content;
}

.blog-card-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0;
	line-height: 1.3;
}

.blog-card-excerpt {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--color-text);
	opacity: 0.8;
}

.blog-card-read-more {
	font-size: 0.95rem;
	font-weight: 600;
	color: #4C6044;
	transition: all 0.3s ease;
	display: inline-block;
	width: fit-content;
}

.blog-card:hover .blog-card-read-more {
	transform: translateX(5px);
	color: #FFD27F;
}

/* 4. Sidebar */
.blog-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.sidebar-widget {
	background: #FAF8F5;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(46, 43, 38, 0.06);
}

.sidebar-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.sidebar-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, #FFD27F 0%, transparent 100%);
}

.sidebar-categories-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-categories-list li {
	margin-bottom: 0.75rem;
}

.sidebar-categories-list a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sidebar-categories-list a:hover {
	color: #4C6044;
}

.category-count {
	font-size: 0.875rem;
	color: #4C6044;
	opacity: 0.7;
}

.sidebar-search-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.sidebar-search-input {
	padding: 0.75rem;
	border: 2px solid rgba(220, 199, 161, 0.3);
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.sidebar-search-input:focus {
	outline: none;
	border-color: #FFD27F;
	box-shadow: 0 0 0 3px rgba(255, 210, 127, 0.2);
}

.sidebar-search-button {
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, #4C6044 0%, #5C7054 100%);
	color: var(--color-white);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.sidebar-search-button:hover {
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
}

.newsletter-text {
	font-size: 1rem;
	color: var(--color-text);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.newsletter-input {
	padding: 0.75rem;
	border: 2px solid rgba(220, 199, 161, 0.3);
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.newsletter-input:focus {
	outline: none;
	border-color: #FFD27F;
	box-shadow: 0 0 0 3px rgba(255, 210, 127, 0.2);
}

.newsletter-button {
	position: relative;
	padding: 0.75rem 1.5rem;
	background: linear-gradient(135deg, #4C6044 0%, #5C7054 100%);
	color: var(--color-white);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
}

.sunshine-shimmer-button {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
	animation: sunshineSweep 3s ease-in-out infinite;
}

.newsletter-button:hover {
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
}

/* 5. Quote Banner */
.blog-quote-banner {
	padding: 3rem 2rem;
	text-align: center;
	background: #FAF8F5;
	margin: 3rem 0;
	border-radius: 8px;
}

.blog-quote-text {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-style: italic;
	color: var(--color-text);
	margin: 0;
	position: relative;
	padding-bottom: 1rem;
}

.blog-quote-text::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, #FFD27F 50%, transparent 100%);
	animation: sunshineShimmer 3s ease-in-out infinite;
}

@keyframes sunshineShimmer {
	0%, 100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

/* 6. Pagination */
.blog-pagination {
	padding: 2rem 0;
	text-align: center;
}

.blog-pagination .page-numbers {
	display: inline-flex;
	gap: 0.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.blog-pagination .page-numbers li {
	display: inline-block;
}

.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
	display: inline-block;
	padding: 0.75rem 1.25rem;
	border-radius: 8px;
	text-decoration: none;
	color: var(--color-text);
	border: 2px solid transparent;
	transition: all 0.3s ease;
	font-weight: 500;
}

.blog-pagination .page-numbers .current {
	background: #FFD27F;
	color: var(--color-text);
	border-color: #FFD27F;
}

.blog-pagination .page-numbers a:hover {
	border-color: #4C6044;
	box-shadow: 0 0 12px rgba(76, 96, 68, 0.3);
}

/* SINGLE ARTICLE PAGE */

/* 1. Article Hero */
.article-hero {
	position: relative;
	width: 100%;
	height: 60vh;
	min-height: 400px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.article-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.article-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(44, 44, 44, 0.3) 0%, rgba(76, 96, 68, 0.2) 100%);
	z-index: 2;
}

.article-hero-gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60%;
	background: linear-gradient(180deg, transparent 0%, #FAF8F5 100%);
	z-index: 3;
}

.article-hero-content {
	position: relative;
	z-index: 4;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
	color: var(--color-white);
}

.article-category-tag {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: #4C6044;
	color: var(--color-white);
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.article-hero-title {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
	line-height: 1.2;
}

.article-meta-line {
	font-size: 1rem;
	opacity: 0.9;
	display: flex;
	gap: 1rem;
	align-items: center;
}

.article-author,
.article-date {
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Breadcrumbs */
.article-breadcrumbs {
	background: #FAF8F5;
	padding: 1rem 0;
}

.article-breadcrumbs a {
	color: #4C6044;
	text-decoration: none;
	transition: color 0.3s ease;
}

.article-breadcrumbs a:hover {
	color: #FFD27F;
}

.breadcrumb-separator {
	color: var(--color-text);
	opacity: 0.5;
}

.breadcrumb-current {
	color: var(--color-text);
	font-weight: 600;
}

/* 2. Article Content */
.article-content-section {
	padding: 2rem 0;
	background: #FAF8F5;
}

.article-content-wrapper {
	background: var(--color-white);
	padding: 3rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(46, 43, 38, 0.06);
}

.article-content-wrapper p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #2C2C2C;
	margin-bottom: 1.5rem;
	letter-spacing: 0.3px;
	max-width: 100%;
}

.article-content-wrapper p:first-of-type::first-letter {
	font-family: var(--font-heading);
	font-size: 4rem;
	font-weight: 700;
	color: #FFD27F;
	float: left;
	line-height: 1;
	margin: 0.1em 0.1em 0 0;
	padding-right: 0.1em;
}

.article-content-wrapper h2 {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-text);
	margin-top: 2.5rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.article-content-wrapper h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, #FFD27F 0%, transparent 100%);
}

.article-content-wrapper blockquote {
	border-left: 4px solid #FFD27F;
	padding-left: 1.5rem;
	margin: 2rem 0;
	font-style: italic;
	color: var(--color-text);
	font-size: 1.2rem;
	line-height: 1.6;
	background: rgba(255, 210, 127, 0.1);
	padding: 1.5rem;
	border-radius: 8px;
}

.article-content-wrapper img {
	border-radius: 8px;
	margin: 2rem 0;
	max-width: 100%;
	height: auto;
}

.article-content-wrapper .wp-caption-text {
	font-size: 0.875rem;
	font-style: italic;
	color: var(--color-text);
	opacity: 0.7;
	margin-top: 0.5rem;
	text-align: center;
}

/* 3. Sunshine Divider */
.article-sunshine-divider {
	padding: 1rem 0;
	background: #FAF8F5;
}

.sunshine-gradient-bar {
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #D5C7A1 0%, #FFD27F 50%, #D5C7A1 100%);
	background-size: 200% 100%;
	animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
	0%, 100% {
		background-position: 0% 0;
	}
	50% {
		background-position: 100% 0;
	}
}

/* 4. Pull Quote */
.article-pull-quote {
	padding: 3rem 0;
	background: #FAF8F5;
	text-align: center;
}

.pull-quote-text {
	font-family: 'Satisfy', 'Great Vibes', cursive;
	font-size: 2.5rem;
	color: #FFD27F;
	font-style: italic;
	margin: 0;
	line-height: 1.4;
}

/* 5. Related Articles */
.article-related-section {
	padding: 2rem 0;
	background: var(--color-white);
}

.related-section-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-text);
	text-align: center;
	margin-bottom: 3rem;
	letter-spacing: 0.5px;
}

.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.related-post-card {
	background: #FAF8F5;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(46, 43, 38, 0.06);
}

.related-post-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.15);
}

.related-post-card:hover .related-post-image {
	transform: scale(1.1);
}

.related-post-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.related-post-image-wrapper {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.related-post-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	display: block;
}

.related-post-content {
	padding: 1.5rem;
}

.related-post-title {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.related-post-excerpt {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--color-text);
	opacity: 0.8;
}

.back-to-stories {
	text-align: center;
}

.back-to-stories-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #4C6044 0%, #5C7054 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.back-to-stories-button:hover {
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
}

/* 6. Comments Section */
.article-comments-section {
	padding: 2rem 0;
	background: #FAF8F5;
}

.article-comments-section .comment-form input[type="text"],
.article-comments-section .comment-form input[type="email"],
.article-comments-section .comment-form input[type="url"],
.article-comments-section .comment-form textarea {
	border: 2px solid rgba(220, 199, 161, 0.3);
	border-radius: 8px;
	padding: 0.75rem;
	font-size: 1rem;
	transition: all 0.3s ease;
	width: 100%;
}

.article-comments-section .comment-form input:focus,
.article-comments-section .comment-form textarea:focus {
	outline: none;
	border-color: #FFD27F;
	box-shadow: 0 0 0 3px rgba(255, 210, 127, 0.2);
}

.article-comments-section .comment-form .form-submit input[type="submit"] {
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #4C6044 0%, #5C7054 100%);
	color: var(--color-white);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.article-comments-section .comment-form .form-submit input[type="submit"]:hover {
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
}

.article-comments-section .comment {
	background: var(--color-white);
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	box-shadow: 0 2px 8px rgba(46, 43, 38, 0.06);
}

/* 7. Author Bio */
.article-author-section {
	padding: 2rem 0;
	background: #FAF8F5;
}

.author-bio-box {
	background: #FAF8F5;
	padding: 2.5rem;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(46, 43, 38, 0.06);
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}

.author-avatar {
	flex-shrink: 0;
}

.author-avatar-img {
	border-radius: 50%;
	border: 3px solid #FFD27F;
}

.author-content {
	flex: 1;
}

.author-name {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 0.75rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.author-name::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 2px;
	background: linear-gradient(90deg, #FFD27F 0%, transparent 100%);
}

.author-description {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-text);
	opacity: 0.9;
	margin: 0;
}

/* Blog Responsive */
@media (max-width: 1024px) {
	.blog-grid-wrapper {
		grid-template-columns: 1fr;
	}
	
	.blog-sidebar {
		order: -1;
	}
	
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.featured-article-grid {
		grid-template-columns: 1fr;
	}
	
	.related-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.blog-hero-title {
		font-size: 2.5rem;
	}
	
	.blog-hero-subtitle {
		font-size: 1.2rem;
	}
	
	.blog-grid {
		grid-template-columns: 1fr;
	}
	
	.article-hero-title {
		font-size: 2rem;
	}
	
	.article-content-wrapper {
		padding: 2rem 1.5rem;
	}
	
	.related-posts-grid {
		grid-template-columns: 1fr;
	}
	
	.author-bio-box {
		flex-direction: column;
		text-align: center;
	}
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* 1. Hero Section */
.about-hero {
	position: relative;
	width: 100%;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #F5EFE6 0%, #A7C7A5 100%);
}

.about-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.sunshine-pulsating-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255, 210, 127, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	animation: sunshinePulsate 8s ease-in-out infinite;
	z-index: 1;
}

@keyframes sunshinePulsate {
	0%, 100% {
		opacity: 0.3;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.6;
		transform: translate(-50%, -50%) scale(1.2);
	}
}

.about-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 4rem 2rem;
	color: var(--color-text);
}

.about-hero-title {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	color: #705C53;
	letter-spacing: 0.5px;
}

.about-hero-subtext {
	font-size: 1.3rem;
	line-height: 1.7;
	margin-bottom: 2.5rem;
	color: #705C53;
	opacity: 0.9;
}

.about-hero-button {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 3rem;
	background: linear-gradient(135deg, #A7C7A5 0%, #8FB38D 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-hero-button:hover {
	background: linear-gradient(135deg, #8FB38D 0%, #A7C7A5 100%);
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
}

.loofah-icon {
	font-size: 1.2rem;
	display: inline-block;
	animation: gentleFloat 3s ease-in-out infinite;
}

@keyframes gentleFloat {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-5px);
	}
}

/* 2. Our Story Section */
.about-story-section {
	padding: 2rem 0;
	background: var(--color-white);
}

.story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.story-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.story-headline {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: #705C53;
	margin: 0;
	line-height: 1.2;
}

.story-text {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.story-paragraph {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--color-text);
	opacity: 0.9;
	margin: 0;
	letter-spacing: 0.3px;
}

.story-image-wrapper {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.12);
}

.story-image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s ease;
}

.story-image-wrapper:hover .story-image {
	transform: scale(1.05);
}

/* 3. Our Mission Section */
.about-mission-section {
	padding: 2rem 0;
	background: linear-gradient(135deg, #A7C7A5 0%, #8FB38D 100%);
	color: var(--color-white);
}

.mission-heading {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
	color: var(--color-white);
}

.mission-subheading {
	font-size: 1.3rem;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--color-white);
	opacity: 0.95;
}

.mission-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.mission-card {
	background: var(--color-white);
	color: var(--color-text);
	padding: 2.5rem 2rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.mission-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 210, 127, 0.2) 50%, transparent 70%);
	transform: rotate(45deg);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mission-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mission-card:hover::before {
	opacity: 1;
	animation: sunshineShimmer 2s ease-in-out infinite;
}

@keyframes sunshineShimmer {
	0% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
	100% {
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
}

.mission-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

.mission-card-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #705C53;
}

.mission-card-text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text);
	opacity: 0.9;
	margin: 0;
}

/* 4. The Artisans Section */
.about-artisans-section {
	padding: 2rem 0;
	background: #F5EFE6;
	background-image: 
		repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(167, 199, 165, 0.03) 2px, rgba(167, 199, 165, 0.03) 4px),
		repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(167, 199, 165, 0.03) 2px, rgba(167, 199, 165, 0.03) 4px);
	position: relative;
}

.artisans-heading {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 3rem;
	color: #705C53;
}

.artisans-carousel {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.artisan-item {
	text-align: center;
}

.artisan-image-wrapper {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 12px rgba(46, 43, 38, 0.1);
	transition: transform 0.3s ease;
}

.artisan-image-wrapper:hover {
	transform: translateY(-5px);
}

.artisan-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.artisan-image-wrapper:hover .artisan-image {
	transform: scale(1.1);
}

.artisan-info {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.artisan-name {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	color: #705C53;
	margin: 0;
}

.artisan-quote {
	font-size: 1rem;
	font-style: italic;
	color: var(--color-text);
	opacity: 0.8;
	margin: 0;
	line-height: 1.6;
}

/* 5. Sustainability Promise */
.about-sustainability-section {
	padding: 2rem 0;
	background: linear-gradient(135deg, #8FB38D 0%, #A7C7A5 100%);
	position: relative;
	overflow: hidden;
}

.floating-leaves {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.1), transparent),
		radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.1), transparent),
		radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.1), transparent);
	background-size: 200% 200%;
	animation: leafDrift 30s linear infinite;
	pointer-events: none;
	opacity: 0.1;
}

@keyframes leafDrift {
	0% {
		background-position: 0% 0%, 100% 100%, 50% 50%;
		transform: translateY(0);
	}
	50% {
		background-position: 50% 50%, 0% 0%, 100% 0%;
		transform: translateY(-30px);
	}
	100% {
		background-position: 100% 100%, 50% 50%, 0% 100%;
		transform: translateY(0);
	}
}

.sustainability-text {
	font-size: 1.5rem;
	line-height: 1.7;
	text-align: center;
	color: var(--color-white);
	margin-bottom: 3rem;
	font-weight: 500;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.eco-icons {
	display: flex;
	justify-content: center;
	gap: 4rem;
	flex-wrap: wrap;
}

.eco-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.eco-icon {
	font-size: 3rem;
	display: block;
}

.eco-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-white);
	text-align: center;
}

/* 6. CTA Section */
.about-cta-section {
	padding: 2rem 0;
	background: #F5EFE6;
	text-align: center;
}

.cta-headline {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #705C53;
}

.cta-subtext {
	font-size: 1.2rem;
	color: var(--color-text);
	opacity: 0.8;
	margin-bottom: 2.5rem;
}

.cta-button {
	display: inline-block;
	padding: 1.25rem 3rem;
	background: linear-gradient(135deg, #A7C7A5 0%, #8FB38D 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 210, 127, 0.3) 50%, transparent 100%);
	transition: left 0.5s ease;
}

.cta-button:hover {
	box-shadow: 0 0 12px rgba(255, 210, 127, 0.5);
	transform: scale(1.03);
}

.cta-button:hover::before {
	left: 100%;
}

/* About Page Responsive */
@media (max-width: 1024px) {
	.story-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.mission-cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.artisans-carousel {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.eco-icons {
		gap: 2rem;
	}
}

@media (max-width: 640px) {
	.about-hero-title {
		font-size: 2.5rem;
	}
	
	.about-hero-subtext {
		font-size: 1.1rem;
	}
	
	.story-headline {
		font-size: 2rem;
	}
	
	.mission-heading {
		font-size: 2.5rem;
	}
	
	.artisans-heading {
		font-size: 2rem;
	}
	
	.cta-headline {
		font-size: 2.5rem;
	}
	
	.eco-icons {
		flex-direction: column;
		gap: 2rem;
	}
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* 1. Hero Section */
.contact-hero {
	position: relative;
	width: 100%;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #F5EFE6 0%, #FFFFFF 50%, #E3C565 100%);
}

.contact-hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.sun-glow-animation {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(227, 197, 101, 0.4) 0%, transparent 70%);
	border-radius: 50%;
	animation: sunshineGlow 10s ease-in-out infinite;
	z-index: 1;
}

@keyframes sunshineGlow {
	0%, 100% {
		opacity: 0.3;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.6;
		transform: translate(-50%, -50%) scale(1.3);
	}
}

.floating-fibers {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(2px 2px at 20% 30%, rgba(112, 92, 83, 0.1), transparent),
		radial-gradient(1px 1px at 60% 70%, rgba(112, 92, 83, 0.08), transparent),
		radial-gradient(1px 1px at 80% 10%, rgba(112, 92, 83, 0.1), transparent);
	background-size: 200% 200%;
	animation: leafDrift 25s linear infinite;
	pointer-events: none;
	z-index: 1;
	opacity: 0.5;
}

@keyframes leafDrift {
	0% {
		background-position: 0% 0%, 100% 100%, 50% 50%;
		transform: translateY(0) rotate(0deg);
	}
	50% {
		background-position: 50% 50%, 0% 0%, 100% 0%;
		transform: translateY(-20px) rotate(5deg);
	}
	100% {
		background-position: 100% 100%, 50% 50%, 0% 100%;
		transform: translateY(0) rotate(0deg);
	}
}

.contact-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 4rem 2rem;
	color: #705C53;
}

.contact-hero-title {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	color: #705C53;
	letter-spacing: 0.5px;
}

.contact-hero-subtext {
	font-size: 1.3rem;
	line-height: 1.7;
	margin-bottom: 2.5rem;
	color: #705C53;
	opacity: 0.9;
}

.contact-hero-button {
	display: inline-block;
	padding: 1.25rem 3rem;
	background: linear-gradient(135deg, #A7C7A5 0%, #E3C565 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.contact-hero-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
	transition: left 0.5s ease;
}

.contact-hero-button:hover {
	box-shadow: 0 0 12px rgba(227, 197, 101, 0.5);
	transform: scale(1.03);
}

.contact-hero-button:hover::before {
	left: 100%;
}

/* 2. Contact Form Section */
.contact-form-section {
	padding: 2rem 0;
	background: var(--color-white);
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.contact-form-illustration {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.12);
}

.form-illustration-image {
	width: 100%;
	height: auto;
	display: block;
}

.contact-form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.form-section-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: #705C53;
	margin: 0;
	line-height: 1.2;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-label {
	font-size: 1rem;
	font-weight: 600;
	color: #705C53;
	letter-spacing: 0.3px;
}

.optional {
	font-weight: 400;
	font-size: 0.9rem;
	color: var(--color-text);
	opacity: 0.6;
}

.form-input,
.form-textarea {
	padding: 0.875rem 1.25rem;
	border: 2px solid rgba(167, 199, 165, 0.3);
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	color: var(--color-text);
	transition: all 0.3s ease;
	background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: #A7C7A5;
	box-shadow: 0 0 0 3px rgba(167, 199, 165, 0.2);
}

.form-textarea {
	resize: vertical;
	min-height: 150px;
	font-family: inherit;
	line-height: 1.6;
}

.form-submit-button {
	position: relative;
	padding: 1.25rem 3rem;
	background: linear-gradient(135deg, #A7C7A5 0%, #E3C565 100%);
	color: var(--color-white);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.form-submit-button:hover {
	box-shadow: 0 0 12px rgba(227, 197, 101, 0.5);
	transform: scale(1.03);
}

.button-ripple {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.form-submit-button:active .button-ripple {
	width: 300px;
	height: 300px;
}

.form-response-text {
	font-size: 0.95rem;
	color: var(--color-text);
	opacity: 0.8;
	text-align: center;
	margin-top: 1rem;
	font-style: italic;
}

/* 3. Contact Details Section */
.contact-details-section {
	padding: 2rem 0;
	background: #F5EFE6;
	position: relative;
	overflow: hidden;
}

.leaf-motion-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(2px 2px at 20% 30%, rgba(112, 92, 83, 0.05), transparent),
		radial-gradient(1px 1px at 60% 70%, rgba(112, 92, 83, 0.04), transparent),
		radial-gradient(1px 1px at 80% 10%, rgba(112, 92, 83, 0.05), transparent);
	background-size: 200% 200%;
	animation: leafDrift 30s linear infinite;
	pointer-events: none;
	opacity: 0.3;
}

.contact-info-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.contact-info-card {
	background: var(--color-white);
	padding: 2.5rem 2rem;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	opacity: 0;
	transition: opacity 0.3s ease;
	background: linear-gradient(135deg, rgba(227, 197, 101, 0.3) 0%, rgba(167, 199, 165, 0.3) 100%);
	background-clip: padding-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
}

.contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-info-card:hover::before {
	opacity: 1;
	animation: sunshineShimmerBorder 2s ease-in-out infinite;
}

@keyframes sunshineShimmerBorder {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 100% 100%;
	}
}

.contact-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	display: block;
}

.contact-card-title {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #705C53;
}

.contact-card-text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text);
	opacity: 0.9;
	margin: 0;
}

.contact-link {
	color: #A7C7A5;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-link:hover {
	color: #E3C565;
}

/* 4. Map & Visit Section */
.contact-map-section {
	padding: 2rem 0;
	background: var(--color-white);
	position: relative;
}

.map-wrapper {
	position: relative;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.12);
}

.contact-map {
	width: 100%;
	height: 500px;
	display: block;
}

.map-overlay {
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	z-index: 2;
	pointer-events: none;
}

.map-overlay-content {
	background: rgba(245, 239, 230, 0.95);
	padding: 1.5rem 2rem;
	border-radius: 8px;
	backdrop-filter: blur(10px);
	max-width: 500px;
}

.map-overlay-text {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #705C53;
	margin: 0;
	font-style: italic;
}

/* 5. CTA Section */
.contact-cta-section {
	padding: 2rem 0;
	background: linear-gradient(135deg, #A7C7A5 0%, #8FB38D 100%);
	color: var(--color-white);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.sunshine-beam-animation {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
	animation: sunshineBeam 20s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}

@keyframes sunshineBeam {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: -100%;
	}
}

.cta-heading {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-white);
	position: relative;
	z-index: 2;
}

.cta-subtext {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	color: var(--color-white);
	opacity: 0.95;
	position: relative;
	z-index: 2;
}

.newsletter-form {
	position: relative;
	z-index: 2;
	max-width: 600px;
	margin: 0 auto;
}

.newsletter-input-wrapper {
	display: flex;
	gap: 1rem;
	background: var(--color-white);
	padding: 0.5rem;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-email-input {
	flex: 1;
	padding: 1rem 1.25rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	color: var(--color-text);
	background: transparent;
}

.newsletter-email-input:focus {
	outline: none;
}

.newsletter-email-input::placeholder {
	color: var(--color-text);
	opacity: 0.5;
}

.newsletter-submit-button {
	position: relative;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #A7C7A5 0%, #E3C565 100%);
	color: var(--color-white);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	overflow: hidden;
}

.newsletter-submit-button:hover {
	box-shadow: 0 0 12px rgba(227, 197, 101, 0.5);
	transform: scale(1.03);
}

.button-glow {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
	transition: left 0.5s ease;
}

.newsletter-submit-button:hover .button-glow {
	left: 100%;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
	.contact-form-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	
	.contact-info-cards {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.map-overlay {
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		margin-top: 1rem;
	}
	
	.map-overlay-content {
		max-width: 100%;
	}
	
	.newsletter-input-wrapper {
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.contact-hero-title {
		font-size: 2.5rem;
	}
	
	.contact-hero-subtext {
		font-size: 1.1rem;
	}
	
	.form-section-title {
		font-size: 2rem;
	}
	
	.cta-heading {
		font-size: 2.5rem;
	}
	
	.contact-map {
		height: 400px;
	}
}

/* ============================================
   CART PAGE STYLES
   ============================================ */

/* Hide default page titles on cart and checkout */
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title,
.woocommerce-cart .page-title,
.woocommerce-checkout .page-title,
.woocommerce-cart h1.entry-title,
.woocommerce-checkout h1.entry-title,
.woocommerce-cart .woocommerce-breadcrumb,
.woocommerce-checkout .woocommerce-breadcrumb {
	display: none !important;
}

/* Cart Header */
.cart-header {
	position: relative;
	width: 100%;
	padding: 2rem 2rem;
	text-align: center;
	background: #FAF8F5;
	overflow: hidden;
}

.cart-header-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.sunlight-pulse-animation {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(227, 197, 101, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	animation: sunlightPulse 6s ease-in-out infinite;
	z-index: 1;
}

@keyframes sunlightPulse {
	0%, 100% {
		opacity: 0.3;
		transform: translate(-50%, -50%) scale(1);
	}
	50% {
		opacity: 0.6;
		transform: translate(-50%, -50%) scale(1.2);
	}
}

.cart-header-content {
	position: relative;
	z-index: 2;
}

.cart-title {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #A67B5B;
	letter-spacing: 0.5px;
}

.cart-subtext {
	font-size: 1.2rem;
	color: var(--color-text);
	opacity: 0.8;
}

/* Cart Layout */
.cart-content-wrapper {
	padding: 1rem 0 2rem;
	background: #FAF8F5;
}

.cart-main-layout {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

/* Cart Items */
.cart-items-section {
	margin-bottom: 2rem;
	width: 100%;
}

.cart-table-header {
	display: grid;
	grid-template-columns: 1fr 200px 120px;
	gap: 1.5rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(166, 123, 91, 0.2);
	margin-bottom: 1rem;
}

.cart-header-product,
.cart-header-quantity,
.cart-header-total {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text);
	opacity: 0.6;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cart-header-product {
	grid-column: 1;
}

.cart-header-quantity {
	grid-column: 2;
	text-align: center;
}

.cart-header-total {
	grid-column: 3;
	text-align: right;
}

.cart-items-grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
	width: 100%;
}

.cart-items-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.cart-item-card {
	background: var(--color-white);
	border-radius: 8px;
	padding: 1.5rem;
	display: grid;
	grid-template-columns: 1fr 200px 120px;
	gap: 1.5rem;
	box-shadow: 0 2px 8px rgba(46, 43, 38, 0.06);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	width: 100%;
	align-items: center;
	border-bottom: 1px solid rgba(166, 123, 91, 0.1);
}

.cart-item-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid transparent;
	border-radius: 8px;
	opacity: 0;
	transition: opacity 0.3s ease;
	background: linear-gradient(135deg, rgba(227, 197, 101, 0.2) 0%, rgba(167, 199, 165, 0.2) 100%);
}

.cart-item-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(46, 43, 38, 0.12);
}

.cart-item-card:hover::before {
	opacity: 1;
}

.cart-item-product {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	align-items: center;
	grid-column: 1;
}

.cart-item-image {
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
	width: 100px;
	height: 100px;
}

.cart-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

.cart-item-info {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
	min-width: 0;
}

.cart-item-title {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0;
	line-height: 1.4;
}

.cart-item-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.cart-item-title a:hover {
	color: #A67B5B;
}

.cart-item-price {
	font-size: 0.95rem;
	font-weight: 600;
	color: #A67B5B;
	margin-top: 0.25rem;
}

.cart-item-quantity-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	grid-column: 2;
}

.cart-item-quantity {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cart-item-quantity .quantity {
	display: flex;
	align-items: center;
	border: 2px solid rgba(167, 199, 165, 0.3);
	border-radius: 8px;
	padding: 0.5rem;
	background: var(--color-white);
	gap: 0.75rem;
}

.cart-item-quantity input[type="number"] {
	border: none;
	width: 60px;
	text-align: center;
	font-size: 1rem;
	padding: 0;
	background: transparent;
	font-weight: 600;
}

.cart-item-quantity .qty {
	-webkit-appearance: none;
	-moz-appearance: textfield;
}

.cart-item-quantity button {
	background: transparent;
	border: none;
	width: 28px;
	height: 28px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: 600;
	color: #A67B5B;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.cart-item-quantity button:hover {
	background: rgba(167, 199, 165, 0.2);
	color: #4C6044;
}

.cart-item-subtotal {
	font-size: 1rem;
	font-weight: 600;
	color: #A67B5B;
	grid-column: 3;
	justify-self: end;
	white-space: nowrap;
	text-align: right;
}

.cart-item-remove {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.remove-cart-item {
	width: 24px;
	height: 24px;
	background: transparent;
	color: var(--color-text);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	line-height: 1;
	transition: all 0.3s ease;
	opacity: 0.6;
	border: none;
	cursor: pointer;
}

.remove-cart-item:hover {
	opacity: 1;
	transform: scale(1.1);
}

/* Cart Actions Section */
.cart-actions-section {
	margin-top: 1.5rem;
}

.coupon-input-wrapper {
	margin-bottom: 1rem;
}

.coupon-input-wrapper input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(166, 123, 91, 0.2);
	border-radius: 8px;
	font-size: 0.9rem;
	background: var(--color-white);
	color: var(--color-text);
	transition: all 0.3s ease;
}

.coupon-input-wrapper input:focus {
	outline: none;
	border-color: #A67B5B;
	box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.1);
}

.cart-action-buttons {
	display: flex;
	gap: 0.75rem;
	width: 100%;
}

.apply-coupon-button {
	flex: 1;
	padding: 0.875rem 1.25rem;
	background: #4C6044;
	color: var(--color-white);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.apply-coupon-button:hover {
	background: #5C7054;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(76, 96, 68, 0.2);
}

/* Cart Actions */
.cart-actions {
	margin: 2rem 0;
	text-align: center;
}

.update-cart-button {
	padding: 0.75rem 2rem;
	background: linear-gradient(135deg, #A7C7A5 0%, #4C6044 100%);
	color: var(--color-white);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.update-cart-button:hover {
	box-shadow: 0 0 12px rgba(227, 197, 101, 0.5);
	transform: scale(1.03);
}

/* Continue Shopping */
.continue-shopping {
	margin-top: 2rem;
}

.continue-shopping-link {
	color: #A67B5B;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}

.continue-shopping-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #E3C565;
	transition: width 0.3s ease;
}

.continue-shopping-link:hover::after {
	width: 100%;
}

/* Cart Empty */
.cart-empty {
	text-align: center;
	padding: 4rem 2rem;
	background: var(--color-white);
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(46, 43, 38, 0.06);
}

.cart-empty-text {
	font-size: 1.2rem;
	color: var(--color-text);
	margin-bottom: 2rem;
}

.cart-empty-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #A7C7A5 0%, #4C6044 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.cart-empty-button:hover {
	box-shadow: 0 0 12px rgba(227, 197, 101, 0.5);
	transform: scale(1.03);
}

/* Cart Summary Section */
.cart-summary-section {
	margin-top: 2rem;
	width: 100%;
}

/* Cart Summary Sidebar */
.cart-summary-sidebar {
	background: var(--color-white);
	border-radius: 8px;
	padding: 1.5rem;
	box-shadow: 0 4px 12px rgba(46, 43, 38, 0.08);
	overflow: hidden;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

/* Cart Totals in Summary */
.cart-summary-sidebar .cart-collaterals {
	width: 100%;
	display: flex !important;
	flex-direction: column !important;
	grid-template-columns: 1fr !important;
	gap: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	align-items: center;
}

.cart-summary-sidebar .cart_totals {
	width: 100%;
	margin: 0;
	padding: 0;
}

.cart-summary-sidebar .cart-totals-table {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 0;
	padding: 1rem;
	background: rgba(250, 248, 245, 0.5);
	border-radius: 8px;
	width: 100%;
}

.cart-summary-sidebar .cart-totals-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.4rem 0;
}

.cart-summary-sidebar .cart-totals-row:not(.order-total) {
	border-bottom: 1px solid rgba(166, 123, 91, 0.15);
}

.cart-summary-sidebar .cart-totals-label {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-text);
}

.cart-summary-sidebar .cart-totals-value {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-text);
}

.cart-summary-sidebar .cart-totals-row.order-total {
	padding-top: 0.75rem;
	margin-top: 0.5rem;
	border-top: 1px solid rgba(166, 123, 91, 0.25);
	border-bottom: none;
}

.cart-summary-sidebar .cart-totals-row.order-total .cart-totals-label {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--color-text);
}

.cart-summary-sidebar .cart-totals-row.order-total .cart-totals-value {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--color-text);
}

/* Hide cross-sell products in summary */
.cart-summary-sidebar .cross-sells {
	display: none;
}

/* Hide checkout button from cart totals template - we have our own */
.cart-summary-sidebar .cart_totals .wc-proceed-to-checkout {
	display: none;
}

.sunshine-beam-cart {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, rgba(227, 197, 101, 0.1) 50%, transparent 100%);
	animation: sunshineBeamCart 30s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}

@keyframes sunshineBeamCart {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: -100%;
	}
}

.cart-summary-content {
	position: relative;
	z-index: 2;
}

.summary-total-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.75rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(166, 123, 91, 0.1);
}

.summary-total-label {
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-text);
}

.summary-total-amount {
	font-size: 1rem;
	font-weight: 400;
	color: var(--color-text);
	opacity: 0.7;
}

.summary-disclaimer {
	font-size: 0.75rem;
	color: var(--color-text);
	opacity: 0.6;
	margin: 0 0 1.5rem 0;
	line-height: 1.5;
}

.summary-disclaimer .shipping-link {
	color: inherit;
	text-decoration: underline;
	transition: opacity 0.3s ease;
}

.summary-disclaimer .shipping-link:hover {
	opacity: 1;
}

/* Cart Totals Table */
.cart-totals-table {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.cart-totals-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(166, 123, 91, 0.1);
}

.cart-totals-row:last-child {
	border-bottom: none;
}

.cart-totals-label {
	font-size: 1rem;
	color: var(--color-text);
}

.cart-totals-value {
	font-size: 1rem;
	font-weight: 600;
	color: #A67B5B;
}

.cart-totals-row.order-total {
	border-top: 2px solid rgba(166, 123, 91, 0.2);
	padding-top: 1rem;
	margin-top: 0.5rem;
}

.cart-totals-row.order-total .cart-totals-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-text);
}

.cart-totals-row.order-total .cart-totals-value {
	font-size: 1.5rem;
	font-weight: 700;
	color: #A67B5B;
}

/* Checkout Button Wrapper */
.checkout-button-wrapper {
	flex: 1;
}

.checkout-button {
	width: 100%;
	padding: 0.875rem 1.25rem;
	background: #A67B5B;
	color: var(--color-white) !important;
	text-decoration: none;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-transform: none;
	letter-spacing: 0;
	text-align: center;
	margin: 0;
}

.checkout-button:hover {
	background: #8B6B4F;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(166, 123, 91, 0.2);
}

.wc-proceed-to-checkout {
	margin-bottom: 0;
	width: 100%;
}

.wc-proceed-to-checkout a,
.wc-proceed-to-checkout .checkout-button,
.wc-proceed-to-checkout button {
	width: 100%;
	padding: 0.875rem 1.25rem;
	background: #A67B5B;
	color: var(--color-white) !important;
	text-decoration: none;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	text-transform: none;
	letter-spacing: 0;
	text-align: center;
	margin: 0;
}

.wc-proceed-to-checkout .checkout-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.wc-proceed-to-checkout .checkout-button:active::before {
	width: 300px;
	height: 300px;
}

.wc-proceed-to-checkout .checkout-button:hover {
	background: #8B6B4F;
	box-shadow: 0 4px 12px rgba(166, 123, 91, 0.3);
	transform: translateY(-2px);
}

/* Cart Responsive */
@media (max-width: 1024px) {
	.cart-summary-sidebar {
		max-width: 100%;
	}
	
	.cart-item-card {
		grid-template-columns: 120px 1fr auto;
		gap: 1.5rem;
	}
	
	.cart-item-subtotal {
		grid-column: 3;
		grid-row: 2;
		justify-self: start;
		margin-top: 0.5rem;
	}
	
	.cart-item-quantity {
		grid-column: 2;
		grid-row: 2;
		justify-self: start;
		margin-top: 0.5rem;
	}
}

@media (max-width: 768px) {
	.cart-item-card {
		grid-template-columns: 100px 1fr;
		gap: 1rem;
		padding: 1rem;
	}
	
	.cart-item-image {
		width: 100px;
		height: 100px;
	}
	
	.cart-item-details {
		grid-column: 2;
	}
	
	.cart-item-quantity {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-self: start;
		margin-top: 1rem;
	}
	
	.cart-item-subtotal {
		grid-column: 2;
		grid-row: 3;
		justify-self: start;
		margin-top: 0.5rem;
	}
	
	.cart-item-remove {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		align-self: start;
		margin: 0;
	}
}

@media (max-width: 640px) {
	.cart-title {
		font-size: 2rem;
	}
	
	.cart-item-image {
		width: 150px;
		height: 150px;
	}
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */

/* Prevent horizontal scroll on checkout */
body.woocommerce-checkout,
body.woocommerce-checkout .site,
.lovfah-checkout-page {
	overflow-x: hidden;
	max-width: 100%;
}

/* Checkout Header */
.checkout-header {
	position: relative;
	width: 100%;
	padding: 2rem 2rem;
	text-align: center;
	background: #FAF8F5;
	overflow: hidden;
}

.checkout-header-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.sunlight-gradient-heading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(227, 197, 101, 0.1) 0%, rgba(167, 199, 165, 0.1) 100%);
	z-index: 1;
}

.checkout-header-content {
	position: relative;
	z-index: 2;
}

.checkout-title {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #A67B5B;
	letter-spacing: 0.5px;
}

.checkout-subtext {
	font-size: 1.2rem;
	color: var(--color-text);
	opacity: 0.8;
}

/* Checkout Layout */
.checkout-content-wrapper {
	padding: 1rem 0 2rem;
	background: #FAF8F5;
	width: 100%;
}

.checkout-container {
	max-width: 1200px !important;
	margin: 0 auto;
	padding: 1rem 0;
	width: 100%;
	box-sizing: border-box;
}

.checkout-layout {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Override WooCommerce default checkout width */
.woocommerce-checkout {
	max-width: 100% !important;
}

.checkout-left-column {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%;
}

.checkout-right-column {
	position: relative;
	width: 100%;
	top: auto;
}

/* Checkout Form Fields */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
	padding: 0.875rem 1.25rem;
	border: 2px solid rgba(167, 199, 165, 0.3);
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: var(--color-white);
	width: 100%;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
	outline: none;
	border-color: #A7C7A5;
	box-shadow: 0 0 0 3px rgba(167, 199, 165, 0.2);
}

.woocommerce-checkout .form-row label {
	font-weight: 600;
	color: #A67B5B;
	margin-bottom: 0.5rem;
	display: block;
}

.woocommerce-checkout .form-row {
	margin-bottom: 1.5rem;
}

/* Coupon Banner - Beautified */
.woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
	background: rgba(213, 199, 161, 0.15);
	border: 1px solid rgba(76, 96, 68, 0.2);
	border-left: 3px solid #4C6044;
	border-radius: 8px;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	padding: 1rem 1.5rem;
	margin-bottom: 2rem;
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.woocommerce-form-coupon-toggle .woocommerce-info,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	color: var(--color-text);
	font-size: 0.95rem;
	display: block;
}

.woocommerce-form-coupon-toggle .woocommerce-info::before,
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
	display: none;
}

.woocommerce-form-coupon-toggle a,
.woocommerce-checkout .woocommerce-form-coupon-toggle a {
	color: #4C6044;
	text-decoration: underline;
	font-weight: 600;
	transition: color 0.3s ease;
}

.woocommerce-form-coupon-toggle a:hover,
.woocommerce-checkout .woocommerce-form-coupon-toggle a:hover {
	color: #A67B5B;
	text-decoration: none;
}

/* Newsletter Checkbox - Same Line */
.woocommerce-checkout .form-row.woocommerce-form__label-for-checkbox,
.woocommerce-checkout .woocommerce-form__label-for-checkbox {
	display: flex !important;
	align-items: center !important;
	gap: 0.75rem;
	flex-direction: row !important;
	justify-content: flex-start;
	margin-bottom: 1.5rem;
	position: relative;
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox input[type="checkbox"] {
	width: 18px !important;
	height: 18px !important;
	margin: 0 !important;
	margin-right: 0 !important;
	flex-shrink: 0;
	order: -1;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox span {
	display: inline;
	line-height: 1.5;
	color: var(--color-text);
}

/* Order Review Panel */
.order-review-panel {
	background: var(--color-white);
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 4px 12px rgba(46, 43, 38, 0.08);
}

.order-review-title {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: #A67B5B;
	margin-bottom: 1.5rem;
}

/* Checkout Security Info */
.checkout-security-info {
	text-align: center;
	padding-top: 1.5rem;
	margin-top: 1.5rem;
	border-top: 1px solid rgba(166, 123, 91, 0.1);
}

.checkout-security-info .security-text {
	font-size: 0.875rem;
	color: var(--color-text);
	opacity: 0.7;
}

/* Checkout Responsive */
@media (max-width: 768px) {
	.checkout-container {
		padding: 1rem 1rem;
	}
	
	.checkout-layout {
		gap: 1.5rem;
	}
}

@media (max-width: 640px) {
	.checkout-title {
		font-size: 2rem;
	}
}

/* ============================================
   MY ACCOUNT PAGE STYLES
   ============================================ */

/* Welcome Header */
/* My Account Page Wrapper */
.lovfah-my-account-wrapper {
	width: 100%;
	background: #FAF8F5;
	padding: 2rem 0;
}

.lovfah-my-account-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 0;
	width: 100%;
	box-sizing: border-box;
}

/* My Account Layout - Sidebar + Content */
.lovfah-account-layout {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	width: 100%;
	max-width: 1200px;
}

.lovfah-account-sidebar {
	width: 260px;
	flex-shrink: 0;
}

.lovfah-account-content {
	flex: 1;
	min-width: 0;
}

.account-welcome-header {
	display: none !important;
}

.welcome-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.sunshine-motion-background {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(227, 197, 101, 0.2) 0%, transparent 70%);
	border-radius: 50%;
	animation: sunlightPulse 8s ease-in-out infinite;
	z-index: 1;
}

.welcome-content {
	position: relative;
	z-index: 2;
}

.welcome-greeting {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: #A67B5B;
	letter-spacing: 0.5px;
}

.welcome-subtext {
	font-size: 1.1rem;
	color: var(--color-text);
	opacity: 0.8;
}

/* Account Navigation */
.lovfah-account-sidebar .woocommerce-MyAccount-navigation {
	background: var(--color-white);
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 0;
	box-shadow: 0 2px 8px rgba(46, 43, 38, 0.06);
	width: 100%;
	position: sticky;
	top: 100px;
}

.woocommerce-MyAccount-navigation {
	background: var(--color-white);
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 2px 8px rgba(46, 43, 38, 0.06);
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.woocommerce-MyAccount-navigation li {
	margin: 0;
}

.woocommerce-MyAccount-navigation a {
	color: #A67B5B;
	text-decoration: none;
	padding: 0.875rem 1.25rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	display: block;
	position: relative;
	width: 100%;
	text-align: left;
}

.woocommerce-MyAccount-navigation a::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
	height: 0;
	background: #A7C7A5;
	transition: height 0.3s ease;
	border-radius: 0 2px 2px 0;
}

.woocommerce-MyAccount-navigation a:hover {
	background: rgba(167, 199, 165, 0.1);
}

.woocommerce-MyAccount-navigation a:hover::after {
	height: 60%;
}

.woocommerce-MyAccount-navigation .is-active a {
	background: rgba(167, 199, 165, 0.15);
	color: #4C6044;
	font-weight: 600;
}

.woocommerce-MyAccount-navigation .is-active a::after {
	height: 60%;
}

/* My Account Content */
.lovfah-account-content .lovfah-my-account {
	width: 100%;
}

.lovfah-my-account {
	width: 100%;
}

/* Hide default WooCommerce account page titles/headings */
.woocommerce-account .woocommerce h2,
.woocommerce-account .woocommerce h3.woocommerce-OrderTable__title,
.woocommerce-account .woocommerce-MyAccount-content > h2,
.woocommerce-account .woocommerce-MyAccount-content > h3,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm > h3,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > h3 {
	display: none !important;
}

/* Ensure all WooCommerce account content respects container width */
.lovfah-account-content .woocommerce,
.lovfah-account-content .woocommerce-MyAccount-content,
.lovfah-account-content .woocommerce-orders-table,
.lovfah-account-content .woocommerce-EditAccountForm,
.lovfah-account-content .woocommerce-Addresses,
.lovfah-account-content .woocommerce-Address {
	width: 100%;
}

/* Overview Section */
.account-overview-section {
	margin-bottom: 2rem;
	width: 100%;
}

.overview-card {
	background: var(--color-white);
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 12px rgba(44, 44, 44, 0.08);
	border: 1px solid rgba(213, 199, 161, 0.2);
	background-image: 
		repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(167, 199, 165, 0.02) 2px, rgba(167, 199, 165, 0.02) 4px),
		repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(167, 199, 165, 0.02) 2px, rgba(167, 199, 165, 0.02) 4px);
	transition: all 0.3s ease;
}

.overview-card:hover {
	box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
	transform: translateY(-2px);
}

.profile-section {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.profile-avatar {
	flex-shrink: 0;
}

.avatar-img {
	border-radius: 50%;
	border: 3px solid #E3C565;
}

.profile-info {
	flex: 1;
}

.profile-name {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: #A67B5B;
	margin-bottom: 0.5rem;
}

.member-since {
	font-size: 1rem;
	color: var(--color-text);
	opacity: 0.7;
	margin: 0;
}

.quick-links {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.quick-link-button {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.875rem 1.5rem;
	background: linear-gradient(135deg, rgba(76, 96, 68, 0.1) 0%, rgba(166, 123, 91, 0.1) 100%);
	border: 2px solid rgba(76, 96, 68, 0.2);
	border-radius: 8px;
	color: #4C6044;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.quick-link-button:hover {
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white);
	border-color: #4C6044;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(76, 96, 68, 0.3);
}

.quick-link-button .link-icon {
	font-size: 1.25rem;
}

/* Orders Section */
.woocommerce-orders-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--color-white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(44, 44, 44, 0.08);
	border: 1px solid rgba(213, 199, 161, 0.2);
}

.woocommerce-orders-table thead {
	background: linear-gradient(135deg, rgba(213, 199, 161, 0.3) 0%, rgba(76, 96, 68, 0.1) 100%);
}

.woocommerce-orders-table th {
	padding: 1.25rem 1rem;
	text-align: left;
	font-weight: 700;
	font-family: var(--font-heading);
	color: #4C6044;
	border-bottom: 2px solid rgba(76, 96, 68, 0.3);
	letter-spacing: 0.5px;
}

.woocommerce-orders-table td {
	padding: 1.25rem 1rem;
	border-bottom: 1px solid rgba(213, 199, 161, 0.2);
	color: #2C2C2C;
}

.woocommerce-orders-table tbody tr {
	transition: all 0.3s ease;
}

.woocommerce-orders-table tbody tr:hover {
	background: rgba(213, 199, 161, 0.08);
	transform: translateX(4px);
}

.woocommerce-orders-table tbody tr:last-child td {
	border-bottom: none;
}

.woocommerce-orders-table a {
	color: #4C6044;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.woocommerce-orders-table a:hover {
	color: #A67B5B;
	border-bottom-color: #A67B5B;
}

/* Order Status Colors */
.order-status {
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	display: inline-block;
	letter-spacing: 0.3px;
}

.order-status-pending {
	background: rgba(213, 199, 161, 0.2);
	color: #A67B5B;
	border: 1px solid rgba(166, 123, 91, 0.3);
}

.order-status-processing {
	background: rgba(76, 96, 68, 0.15);
	color: #4C6044;
	border: 1px solid rgba(76, 96, 68, 0.3);
}

.order-status-completed {
	background: rgba(166, 123, 91, 0.15);
	color: #A67B5B;
	border: 1px solid rgba(166, 123, 91, 0.3);
}

.order-status-cancelled,
.order-status-failed,
.order-status-refunded {
	background: rgba(44, 44, 44, 0.1);
	color: #2C2C2C;
	border: 1px solid rgba(44, 44, 44, 0.2);
}

/* Address Section */
.woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.woocommerce-Address {
	background: var(--color-white);
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 12px rgba(44, 44, 44, 0.08);
	border: 1px solid rgba(213, 199, 161, 0.2);
	transition: all 0.3s ease;
}

.woocommerce-Address:hover {
	box-shadow: 0 4px 16px rgba(44, 44, 44, 0.12);
	transform: translateY(-2px);
}

.woocommerce-Address h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	color: #A67B5B;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid rgba(213, 199, 161, 0.3);
}

.woocommerce-Address address {
	color: #2C2C2C;
	line-height: 1.8;
	font-style: normal;
}

.woocommerce-address-fields {
	background: var(--color-white);
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 12px rgba(44, 44, 44, 0.08);
	border: 1px solid rgba(213, 199, 161, 0.2);
	margin-bottom: 2rem;
}

.woocommerce-address-fields .form-row {
	margin-bottom: 1.5rem;
}

.woocommerce-address-fields .form-row label {
	font-weight: 600;
	color: #4C6044;
	margin-bottom: 0.5rem;
	display: block;
	font-size: 0.95rem;
}

.woocommerce-address-fields .form-row input,
.woocommerce-address-fields .form-row select,
.woocommerce-address-fields .form-row textarea {
	padding: 0.875rem 1.25rem;
	border: 2px solid rgba(213, 199, 161, 0.3);
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #FAF8F5;
	width: 100%;
	color: #2C2C2C;
	font-family: var(--font-body);
}

.woocommerce-address-fields .form-row input:focus,
.woocommerce-address-fields .form-row select:focus,
.woocommerce-address-fields .form-row textarea:focus {
	outline: none;
	border-color: #4C6044;
	box-shadow: 0 0 0 3px rgba(76, 96, 68, 0.15);
	background: var(--color-white);
}

.woocommerce-address-fields .button {
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-body);
	letter-spacing: 0.5px;
}

.woocommerce-address-fields .button:hover {
	box-shadow: 0 4px 16px rgba(76, 96, 68, 0.4);
	transform: translateY(-2px);
	background: linear-gradient(135deg, #5C7054 0%, #B68B6B 100%);
}

/* Account Details */
.woocommerce-EditAccountForm {
	background: var(--color-white);
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 12px rgba(44, 44, 44, 0.08);
	border: 1px solid rgba(213, 199, 161, 0.2);
	margin-bottom: 2rem;
}

.woocommerce-EditAccountForm .form-row {
	margin-bottom: 1.5rem;
}

.woocommerce-EditAccountForm .form-row label {
	font-weight: 600;
	color: #4C6044;
	margin-bottom: 0.5rem;
	display: block;
	font-size: 0.95rem;
}

.woocommerce-EditAccountForm .form-row input[type="text"],
.woocommerce-EditAccountForm .form-row input[type="email"],
.woocommerce-EditAccountForm .form-row input[type="password"] {
	padding: 0.875rem 1.25rem;
	border: 2px solid rgba(213, 199, 161, 0.3);
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #FAF8F5;
	width: 100%;
	color: #2C2C2C;
	font-family: var(--font-body);
}

.woocommerce-EditAccountForm .form-row input:focus {
	outline: none;
	border-color: #4C6044;
	box-shadow: 0 0 0 3px rgba(76, 96, 68, 0.15);
	background: var(--color-white);
}

.woocommerce-EditAccountForm .form-row .description {
	color: #A67B5B;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	opacity: 0.8;
}

.woocommerce-EditAccountForm .form-row.woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.woocommerce-EditAccountForm .form-row.woocommerce-form__label-for-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	cursor: pointer;
	accent-color: #4C6044;
}

.woocommerce-EditAccountForm .button {
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white);
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-body);
	letter-spacing: 0.5px;
}

.woocommerce-EditAccountForm .button:hover {
	box-shadow: 0 4px 16px rgba(76, 96, 68, 0.4);
	transform: translateY(-2px);
	background: linear-gradient(135deg, #5C7054 0%, #B68B6B 100%);
}

/* Success Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	padding: 1.25rem 1.5rem;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	animation: sunriseFadeIn 0.6s ease;
	border-left: 4px solid;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(44, 44, 44, 0.08);
}

@keyframes sunriseFadeIn {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.woocommerce-message {
	background: rgba(76, 96, 68, 0.1);
	border-left-color: #4C6044;
	color: #4C6044;
}

.woocommerce-info {
	background: rgba(213, 199, 161, 0.15);
	border-left-color: #D5C7A1;
	color: #A67B5B;
}

.woocommerce-error {
	background: rgba(220, 53, 69, 0.1);
	border-left-color: #dc3545;
	color: #dc3545;
}

/* Downloads Section */
.woocommerce-MyAccount-downloads {
	background: var(--color-white);
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 12px rgba(44, 44, 44, 0.08);
	border: 1px solid rgba(213, 199, 161, 0.2);
}

.woocommerce-MyAccount-downloads .woocommerce-Message {
	background: rgba(213, 199, 161, 0.1);
	border: 1px solid rgba(166, 123, 91, 0.2);
	border-radius: 8px;
	padding: 1.5rem;
	color: #A67B5B;
}

/* View Order Page */
.woocommerce-order-details {
	background: var(--color-white);
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 12px rgba(44, 44, 44, 0.08);
	border: 1px solid rgba(213, 199, 161, 0.2);
	margin-bottom: 2rem;
}

.woocommerce-order-details h2 {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	font-weight: 700;
	color: #A67B5B;
	margin-bottom: 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid rgba(213, 199, 161, 0.3);
}

.woocommerce-table--order-details {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-table--order-details th {
	background: rgba(213, 199, 161, 0.2);
	padding: 1rem;
	text-align: left;
	font-weight: 700;
	color: #4C6044;
	border-bottom: 2px solid rgba(76, 96, 68, 0.2);
}

.woocommerce-table--order-details td {
	padding: 1rem;
	border-bottom: 1px solid rgba(213, 199, 161, 0.2);
	color: #2C2C2C;
}

.woocommerce-table--order-details .product-name a {
	color: #4C6044;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.woocommerce-table--order-details .product-name a:hover {
	color: #A67B5B;
}

/* Payment Methods */
.woocommerce-PaymentMethods {
	background: var(--color-white);
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 2px 12px rgba(44, 44, 44, 0.08);
	border: 1px solid rgba(213, 199, 161, 0.2);
	margin-bottom: 2rem;
}

/* General Account Content Styling */
.lovfah-account-content .woocommerce-MyAccount-content > * {
	margin-bottom: 2rem;
}

.lovfah-account-content .woocommerce-MyAccount-content > *:last-child {
	margin-bottom: 0;
}

/* My Account Responsive */
@media (max-width: 1024px) {
	.lovfah-account-layout {
		flex-direction: column;
		gap: 2rem;
	}
	
	.lovfah-account-sidebar {
		width: 100%;
	}
	
	.lovfah-account-sidebar .woocommerce-MyAccount-navigation {
		position: relative;
		top: auto;
	}
	
	.woocommerce-MyAccount-navigation ul {
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	.profile-section {
		flex-direction: column;
		text-align: center;
	}
	
	.quick-links {
		flex-direction: column;
	}
}

@media (max-width: 640px) {
	.welcome-greeting {
		font-size: 2rem;
	}
	
	.woocommerce-orders-table {
		font-size: 0.875rem;
	}
	
	.woocommerce-orders-table th,
	.woocommerce-orders-table td {
		padding: 0.75rem 0.5rem;
	}
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
	margin-left: auto;
	align-items: center;
	justify-content: center;
	height: 44px;
	width: 44px;
}

.hamburger-icon {
	display: flex;
	flex-direction: column;
	width: 24px;
	height: 18px;
	justify-content: space-between;
}

.hamburger-icon span {
	display: block;
	height: 2px;
	width: 100%;
	background: #2C2C2C;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(250, 248, 245, 0.98);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 1000;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	visibility: hidden;
}

@media (min-width: 1025px) {
	.mobile-menu {
		display: none;
	}
}

.mobile-menu.active {
	transform: translateX(0);
	visibility: visible;
}

.mobile-menu-content {
	padding: 6rem 2rem 2rem;
	max-width: 100%;
}

.mobile-primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mobile-primary-menu li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(213, 199, 161, 0.2);
}

.mobile-primary-menu a {
	display: block;
	padding: 1.25rem 1rem;
	color: #2C2C2C;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.mobile-primary-menu a:hover {
	background: rgba(213, 199, 161, 0.1);
	color: #4C6044;
	padding-left: 1.5rem;
}

.mobile-menu-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(213, 199, 161, 0.3);
	justify-content: center;
}

.mobile-menu-actions .account-contents,
.mobile-menu-actions .cart-contents {
	width: 50px;
	height: 50px;
}

/* Responsive Header */
@media (max-width: 1024px) {
	.site-header {
		height: 60px !important;
		min-height: 60px !important;
	}
	
	.header-container {
		padding: 0 1rem;
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: center;
		height: 100%;
		gap: 1rem;
		justify-content: space-between;
	}
	
	.header-mobile-wrapper {
		display: contents !important;
	}
	
	.main-navigation {
		display: none !important;
	}
	
	.header-actions {
		display: none !important;
	}
	
	.site-branding {
		grid-column: 1;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		height: 100%;
		margin: 0;
		width: 100%;
	}
	
	.mobile-menu-toggle {
		grid-column: 2;
		display: flex !important;
		align-items: center;
		justify-content: center;
		height: 44px;
		width: 44px;
		padding: 0;
		margin: 0 0 0 auto;
	}
	
	.site-title {
		font-size: 1.25rem;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		margin: 0;
		line-height: 1;
	}
	
	.site-description {
		display: none;
	}
	
	/* Logo alignment on mobile */
	.site-logo {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		height: 100%;
		margin: 0;
		line-height: 1;
		width: 100%;
	}
	
	.custom-logo-link {
		display: flex;
		align-items: center;
		height: 100%;
	}
	
	.custom-logo {
		max-height: 40px;
		max-width: 120px;
		width: auto;
		height: auto;
		object-fit: contain;
	}
}

/* Responsive Footer */
@media (max-width: 1024px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}
	
	.footer-widget {
		margin-bottom: 2rem;
	}
}

@media (max-width: 768px) {
	.footer-content {
		padding: 2rem 1rem;
	}
	
	.footer-title {
		font-size: 1.25rem;
	}
	
	.footer-newsletter-form {
		flex-direction: column;
		gap: 1rem;
	}
	
	.footer-newsletter-input {
		width: 100%;
	}
	
	.footer-newsletter-button {
		width: 100%;
	}
}

/* Responsive Homepage Sections */
@media (max-width: 1024px) {
	.hero-section {
		padding: 4rem 2rem;
		min-height: 70vh;
	}
	
	.hero-title {
		font-size: 3rem;
	}
	
	.hero-subtitle {
		font-size: 1.25rem;
	}
	
	.featured-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero-section {
		padding: 3rem 1.5rem;
		min-height: 60vh;
	}
	
	.hero-title {
		font-size: 2.25rem;
	}
	
	.hero-subtitle {
		font-size: 1.1rem;
	}
	
	.hero-buttons {
		flex-direction: column;
		gap: 1rem;
		width: 100%;
	}
	
	.hero-button {
		width: 100%;
	}
	
	.featured-products-grid {
		grid-template-columns: 1fr;
	}
	
	.category-grid {
		grid-template-columns: 1fr;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.section-subtitle {
		font-size: 1rem;
	}
	
	.testimonials-carousel {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.testimonial-card {
		width: 100%;
	}
	
	.instagram-gallery {
		height: 200px;
	}
}

/* Responsive Shop Page */
@media (max-width: 1024px) {
	.shop-filter-toggle {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	.shop-filters-bar {
		display: none !important;
	}
	
	.shop-hero {
		padding: 4rem 2rem;
	}
	
	.shop-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.filter-bar {
		flex-wrap: wrap;
		gap: 1rem;
	}
	
	.filter-select,
	.filter-search-input {
		flex: 1;
		min-width: 200px;
	}
}

@media (max-width: 768px) {
	.shop-hero {
		padding: 3rem 1.5rem;
	}
	
	.shop-products-grid {
		grid-template-columns: 1fr;
	}
	
	.filter-bar {
		flex-direction: column;
	}
	
	.filter-select,
	.filter-search-input {
		width: 100%;
	}
}

/* Responsive Single Product */
@media (max-width: 1024px) {
	.single-product-hero {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.product-gallery-main {
		width: 100%;
	}
	
	.recommended-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.single-product-hero {
		padding: 2rem 1rem;
	}
	
	.recommended-products-grid {
		grid-template-columns: 1fr;
	}
	
	.product-tabs {
		flex-direction: column;
	}
}

/* Responsive Cart & Checkout */
@media (max-width: 1024px) {
	.cart-main-layout {
		flex-direction: column;
	}
	
	.cart-summary-sidebar {
		width: 100%;
		max-width: 100%;
		position: relative;
		top: auto;
	}
	
	.cart-item-card {
		grid-template-columns: 100px 1fr;
		gap: 1rem;
	}
	
	.cart-item-quantity-wrapper {
		grid-column: 1 / -1;
		margin-top: 1rem;
	}
	
	.checkout-layout {
		flex-direction: column;
	}
	
	.checkout-left-column,
	.checkout-right-column {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.cart-item-card {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.cart-item-product {
		flex-direction: column;
		text-align: center;
	}
	
	.cart-item-image {
		margin: 0 auto;
	}
	
	.cart-action-buttons {
		flex-direction: column;
	}
}

/* Responsive My Account */
@media (max-width: 768px) {
	.lovfah-account-layout {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.lovfah-account-sidebar {
		width: 100%;
	}
	
	.woocommerce-MyAccount-navigation ul {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.woocommerce-orders-table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	.woocommerce-Addresses {
		grid-template-columns: 1fr;
	}
}

/* Responsive Blog & Article Pages */
@media (max-width: 1024px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.blog-layout {
		grid-template-columns: 1fr;
	}
	
	.blog-sidebar {
		margin-top: 2rem;
	}
}

@media (max-width: 768px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
	
	.blog-hero {
		padding: 3rem 1.5rem;
	}
	
	.article-hero {
		padding: 3rem 1.5rem;
	}
	
	.article-content {
		padding: 2rem 1rem;
	}
}

/* Responsive About, Craftsmanship, Contact Pages */
@media (max-width: 1024px) {
	.about-story-section,
	.craftsmanship-fields-section,
	.contact-form-section {
		grid-template-columns: 1fr;
	}
	
	.about-mission-grid,
	.craftsmanship-artisans-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.about-mission-grid,
	.craftsmanship-artisans-grid,
	.craftsmanship-values-grid {
		grid-template-columns: 1fr;
	}
	
	.contact-details-grid {
		grid-template-columns: 1fr;
	}
	
	.contact-form-section {
		padding: 2rem 1rem;
	}
}

/* General Responsive Utilities */
@media (max-width: 768px) {
	.container {
		padding: 0 1rem;
	}
	
	section {
		padding: 3rem 1rem;
	}
	
	.section-title {
		font-size: 1.75rem;
	}
	
	.section-subtitle {
		font-size: 0.95rem;
	}
	
	.button {
		padding: 0.875rem 1.5rem;
		font-size: 0.95rem;
	}
}

/* Prevent horizontal scroll */
@media (max-width: 768px) {
	body,
	html {
		overflow-x: hidden;
		max-width: 100%;
	}
	
	.site {
		overflow-x: hidden;
		max-width: 100%;
	}
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top-button {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9997;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(76, 96, 68, 0.4);
	font-size: 1.5rem;
	line-height: 1;
}

.scroll-to-top-button.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-to-top-button:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 25px rgba(76, 96, 68, 0.5);
	background: linear-gradient(135deg, #5C7054 0%, #B68B6B 100%);
}

.scroll-to-top-button:active {
	transform: translateY(-2px);
}

.scroll-to-top-icon {
	display: block;
	font-weight: bold;
}

@media (max-width: 768px) {
	.scroll-to-top-button {
		bottom: 1.5rem;
		right: 1.5rem;
		width: 44px;
		height: 44px;
		font-size: 1.25rem;
	}
}

/* ========================================
   Customer Chat Widget
   ======================================== */
.lovfah-chat-widget {
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	z-index: 9998;
	font-family: var(--font-primary);
}

.chat-widget-button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(76, 96, 68, 0.4);
	transition: all 0.3s ease;
	position: relative;
}

.chat-widget-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(76, 96, 68, 0.5);
}

.chat-icon {
	font-size: 1.5rem;
}

.chat-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #ff4444;
	color: white;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: bold;
	border: 2px solid white;
}

.chat-info-modal {
	position: absolute;
	bottom: 80px;
	left: 0;
	width: 380px;
	background: var(--color-white);
	border-radius: 16px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
	display: none;
	padding: 2rem;
	z-index: 10000;
}

.chat-info-modal.active {
	display: block;
	animation: slideUp 0.3s ease;
}

.chat-info-modal-content h3 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	color: var(--color-text);
	margin-bottom: 0.5rem;
}

.chat-info-modal-content p {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

#chatInfoForm {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.chat-info-input {
	padding: 0.875rem 1rem;
	border: 1px solid rgba(166, 123, 91, 0.3);
	border-radius: 8px;
	font-size: 0.9rem;
	font-family: var(--font-primary);
	width: 100%;
	box-sizing: border-box;
}

.chat-info-input:focus {
	outline: none;
	border-color: #A67B5B;
	box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.1);
}

.chat-info-submit-button {
	padding: 0.875rem 1.5rem;
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white);
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: var(--font-primary);
}

.chat-info-submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(76, 96, 68, 0.3);
}

.chat-widget-panel {
	position: absolute;
	bottom: 80px;
	left: 0;
	width: 380px;
	height: 600px;
	background: var(--color-white);
	border-radius: 16px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
	display: none;
	flex-direction: column;
	overflow: hidden;
}

.chat-widget-panel.active {
	display: flex;
	animation: slideUp 0.3s ease;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.chat-widget-header {
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white);
	padding: 1.25rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.chat-header-info {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.chat-bot-avatar {
	font-size: 2rem;
}

.chat-header-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
	color: var(--color-white);
}

.chat-header-subtitle {
	font-size: 0.85rem;
	margin: 0.25rem 0 0 0;
	opacity: 0.9;
	color: var(--color-white);
}

.chat-close-button {
	background: transparent;
	border: none;
	color: var(--color-white);
	font-size: 1.5rem;
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background 0.2s ease;
}

.chat-close-button:hover {
	background: rgba(255, 255, 255, 0.2);
}

.chat-widget-messages {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.chat-welcome-message {
	background: #e8f5e9;
	padding: 1rem;
	border-radius: 12px;
	border-left: 3px solid #4caf50;
}

.chat-welcome-message p {
	margin: 0;
	color: #333;
	font-size: 0.95rem;
	line-height: 1.5;
}

.chat-message {
	padding: 0.875rem 1rem;
	border-radius: 12px;
	max-width: 80%;
	word-wrap: break-word;
	font-size: 0.9rem;
	line-height: 1.5;
	animation: messageSlide 0.3s ease;
}

.chat-message a {
	color: inherit;
	text-decoration: underline;
	word-break: break-all;
}

.chat-message.customer a {
	color: rgba(255, 255, 255, 0.9);
}

.chat-message.bot a,
.chat-message.admin a {
	color: #4C6044;
}

/* Product Cards in Chat */
.chat-product-card {
	background: var(--color-white);
	border: 1px solid rgba(166, 123, 91, 0.2);
	border-radius: 12px;
	padding: 1.25rem;
	margin: 0.75rem 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.chat-product-card:hover {
	box-shadow: 0 4px 16px rgba(76, 96, 68, 0.15);
	transform: translateY(-2px);
	border-color: rgba(166, 123, 91, 0.4);
}

.chat-product-name {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 0.5rem;
	line-height: 1.4;
}

.chat-product-price {
	font-size: 1.1rem;
	font-weight: 600;
	color: #4C6044;
	margin-bottom: 0.75rem;
}

.chat-product-link {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all 0.3s ease;
	font-family: var(--font-primary);
}

.chat-product-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(76, 96, 68, 0.3);
	background: linear-gradient(135deg, #5C7054 0%, #B68B6B 100%);
}

@keyframes messageSlide {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.chat-message.customer {
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white);
	align-self: flex-end;
	margin-left: auto;
}

.chat-message.bot {
	background: #e8f5e9;
	color: #333;
	align-self: flex-start;
	border-left: 3px solid #4caf50;
}

.chat-message.admin {
	background: #e3f2fd;
	color: #333;
	align-self: flex-start;
	border-left: 3px solid #2196f3;
}

.chat-message-time {
	font-size: 0.75rem;
	opacity: 0.7;
	margin-top: 0.5rem;
}

.chat-widget-input-wrapper {
	padding: 1rem;
	background: var(--color-white);
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.chat-email-input {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid rgba(166, 123, 91, 0.3);
	border-radius: 8px;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	font-family: var(--font-primary);
}

.chat-email-input:focus {
	outline: none;
	border-color: #A67B5B;
	box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.1);
}

.chat-input-container {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.chat-message-input {
	flex: 1;
	padding: 0.875rem 1rem;
	border: 1px solid rgba(166, 123, 91, 0.3);
	border-radius: 24px;
	font-size: 0.9rem;
	font-family: var(--font-primary);
}

.chat-message-input:focus {
	outline: none;
	border-color: #A67B5B;
	box-shadow: 0 0 0 3px rgba(166, 123, 91, 0.1);
}

.chat-send-button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #4C6044 0%, #A67B5B 100%);
	color: var(--color-white);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.chat-send-button:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(76, 96, 68, 0.3);
}

.chat-send-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.chat-send-button span {
	font-size: 1.25rem;
}

@media (max-width: 768px) {
	.lovfah-chat-widget {
		bottom: 1.5rem;
		left: 1.5rem;
	}
	
	.chat-widget-button {
		width: 56px;
		height: 56px;
	}
	
	.chat-info-modal {
		width: calc(100vw - 3rem);
		max-width: 380px;
		bottom: 76px;
		left: 0;
	}
	
	.chat-widget-panel {
		width: calc(100vw - 3rem);
		height: calc(100vh - 8rem);
		max-width: 380px;
		bottom: 76px;
		left: 0;
	}
	
	.chat-message {
		max-width: 85%;
	}
}