/* CSS Variables */
:root {
	--primary-color: #FF6B35;
	--secondary-color: #FF8C42;
	--accent-color: #FFA726;
	--light-orange: #FFE0B2;
	--dark-orange: #E64A19;
	--text-primary: #2C2C2C;
	--text-secondary: #666666;
	--text-light: #999999;
	--white: #FFFFFF;
	--light-gray: #F5F5F5;
	--border-color: #E0E0E0;
	--shadow: 0 2px 15px rgba(255, 107, 53, 0.1);
	--shadow-hover: 0 5px 25px rgba(255, 107, 53, 0.2);
	--border-radius: 12px;
	--transition: all 0.3s ease;
}

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

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	overflow-x: hidden;
}

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

.btn.disabled,
.disabled,
.btn.disabled:hover,
.disabled:hover {
	background: var(--text-light);
	border-color: var(--text-light);
	cursor: unset;
}

.quick-connect-icon {
	font-size: 40px;
	position: fixed;
	right: 10px;
	bottom: 15px;
	z-index: 99;
	width: 70px;
	height: 70px;
	background: #25D366;
	color: var(--white);
	border-radius: 100%;
	text-align: center;
	display: block;
}

.quick-connect-icon i {
	margin-top: 14px;
}

/* Header Styles */
.header {
	background: var(--white);
	box-shadow: var(--shadow);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.admin-bar .header {
	margin-top: 32px;
}

/* Search Box Styles */
.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 100px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.search-container {
	background: var(--white);
	border-radius: var(--border-radius);
	padding: 2rem;
	width: 90%;
	max-width: 600px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	transform: translateY(-50px);
	transition: all 0.3s ease;
	position: relative;
}

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

.search-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.search-title {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin: 0;
}

.search-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--text-secondary);
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 50%;
	transition: var(--transition);
}

.search-close:hover {
	background: var(--light-gray);
	color: var(--primary-color);
}

.search-form {
	position: relative;
}

.search-input {
	width: 100%;
	padding: 15px 50px 15px 20px;
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 1.1rem;
	font-family: inherit;
	transition: var(--transition);
	background: var(--white);
}

.search-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.search-submit {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--primary-color);
	border: none;
	border-radius: 8px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-submit:hover {
	background: var(--dark-orange);
}

.search-submit i {
	color: var(--white);
	font-size: 16px;
}

.search-suggestions {
	margin-top: 1.5rem;
}

.search-suggestions h4 {
	color: var(--text-secondary);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
}

.search-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.search-tag {
	background: var(--light-orange);
	color: var(--primary-color);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	text-decoration: none;
	transition: var(--transition);
	border: 1px solid transparent;
}

.search-tag:hover {
	background: var(--primary-color);
	color: var(--white);
	border-color: var(--primary-color);
}

.search-results {
	margin-top: 1.5rem;
	max-height: 300px;
	overflow-y: auto;
}

.search-result-item {
	display: flex;
	align-items: center;
	padding: 1rem;
	border-bottom: 1px solid var(--border-color);
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	color: inherit;
}

.search-result-item:hover {
	background: var(--light-gray);
}

.search-result-item:last-child {
	border-bottom: none;
}

.search-result-image {
	width: 50px;
	height: 50px;
	background: var(--light-orange);
	border-radius: 8px;
	margin-right: 1rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-result-info {
	flex: 1;
}

.search-result-title {
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--text-primary);
}

.search-result-price {
	color: var(--primary-color);
	font-weight: bold;
}

.search-no-results {
	color: var(--text-secondary);
}

/* Quick Search in Header */
.header-search {
	position: relative;
	display: none;
}

.header-search.show {
	display: block;
	animation: slideDown 0.3s ease;
}

.header-search-input {
	padding: 8px 40px 8px 15px;
	border: 2px solid var(--primary-color);
	border-radius: 25px;
	width: 250px;
	font-size: 14px;
	transition: var(--transition);
}

.header-search-input:focus {
	outline: none;
	width: 300px;
}

.header-search-submit {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--primary-color);
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-search-submit i {
	color: var(--white);
	font-size: 12px;
}

.header-content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	font-size: 2rem;
	font-weight: bold;
	color: var(--primary-color);
	text-decoration: none;
	margin-inline-end: 30px;
}

.nav {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav a {
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 500;
	transition: var(--transition);
}

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

.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-left: auto;
}

.header-actions i {
	font-size: 1.2rem;
	color: var(--text-primary);
	cursor: pointer;
	transition: var(--transition);
}

.header-actions i:hover {
	color: var(--primary-color);
}

.mobile-menu-toggle {
	display: none;
	font-size: 1.5rem;
	color: var(--primary-color);
	cursor: pointer;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 12px 30px;
	background: var(--white);
	color: var(--primary-color);
	text-decoration: none;
	border-radius: var(--border-radius);
	font-weight: 600;
	transition: var(--transition);
	border: 2px solid var(--white);
	cursor: pointer;
	font-family: inherit;
	font-size: inherit;
	text-align: center;
}

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

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

.btn-primary:hover {
	background: var(--dark-orange);
	border-color: var(--dark-orange);
	color: var(--white);
}

.btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-outline.update-cart {
	line-height: normal;
}

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

/* Section Styles */
.section {
	padding: 5rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title {
	font-size: 2.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.section-subtitle {
	color: var(--text-secondary);
	font-size: 1.1rem;
}

#new-arrivals .owl-prev.disabled,
#new-arrivals .owl-next.disabled {
	display: none;
}

/* Product Cards */
.product-card {
	background: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	margin: 0;
	border: 1px solid #eee;
}

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

.product-image {
	height: 250px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.product-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--primary-color);
	color: var(--white);
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.product-info {
	padding: 1.5rem;
	display: flex;
	flex: 1;
	flex-direction: column;
	padding-top: 0;
}

.product-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.product-title a {
	color: var(--text-primary);
	text-decoration: none;
}

.product-price {
	color: var(--primary-color);
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 1rem;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.product-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.stars {
	color: var(--accent-color);
}

.product-rating span {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Categories */
.categories {
	background: var(--light-gray);
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 15px;
	margin-top: 2rem;
}

#categories .category-grid {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.category-card {
	background: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	text-decoration: none;
	color: inherit;
}

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

.category-image {
	height: 200px;
	background-size: cover;
	background-position: center;
}

.category-info {
	padding: 1.5rem;
	text-align: center;
}

.category-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-primary);
}

/* Contact Section */
.contact {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
}

.contact-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	align-items: center;
}

.contact-info h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.contact-info p {
	margin-bottom: 2rem;
	opacity: 0.9;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.contact-item i {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 5px;
}

.contact-item div {
	flex: 1;
}

.contact-item strong {
	display: block;
	margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
	margin: 0;
	opacity: 0.9;
	line-height: 1.4;
	color: var(--white);
	text-decoration: none;
}

.contact-form {
	background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: var(--border-radius);
}

.contact-form h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: var(--border-radius);
	background: var(--white);
	color: var(--text-primary);
	font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

/* Footer */
.footer {
	background: var(--text-primary);
	color: var(--white);
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.footer-section p {
	color: var(--text-light);
	line-height: 1.6;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: var(--text-light);
	text-decoration: none;
	transition: var(--transition);
}

.footer-section ul li a:hover {
	color: var(--primary-color);
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--white);
	text-decoration: none;
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

.footer-bottom {
	border-top: 1px solid #444;
	padding-top: 1rem;
	text-align: center;
	color: var(--text-light);
}

/* Animation Classes */
.fade-in {
	animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

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

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

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

.slide-up {
	animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

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

/* Search Animation */
.search-pulse {
	animation: searchPulse 2s infinite;
}

@keyframes searchPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
	}
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--dark-orange);
}

/* ===== SHOP PAGE STYLES ===== */

/* Shop Page Header */
.page-header {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
	padding: 6rem 0 3rem;
	margin-top: 80px;
	position: relative;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('https://images.unsplash.com/photo-1503919545889-aef636e10ad4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
	opacity: 0.1;
}

.page-header-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.page-title {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.breadcrumb {
	font-size: 1.1rem;
	opacity: 0.9;
}

.breadcrumb a {
	color: var(--white);
	text-decoration: none;
	transition: var(--transition);
}

.breadcrumb a:hover {
	opacity: 0.8;
}

.breadcrumb span {
	margin: 0 0.5rem;
}

/* Shop Layout */
.shop-main {
	padding: 3rem 0;
}

.shop-layout {
	display: block;
}

.shop-content {
	width: 100%;
}

/* Shop Toolbar */
.shop-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	padding: 1rem;
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	flex-wrap: wrap;
	gap: 1rem;
}

.shop-toolbar .woocommerce-ordering {
	margin-bottom: 0;
}

.results-count {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.toolbar-right {
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* View Mode Buttons */
.view-mode {
	display: flex;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	overflow: hidden;
}

.view-btn {
	padding: 0.5rem 0.75rem;
	background: var(--white);
	border: none;
	color: var(--text-secondary);
	cursor: pointer;
	transition: var(--transition);
}

.view-btn:hover,
.view-btn.active {
	background: var(--primary-color);
	color: var(--white);
}

/* Sort Dropdown */
.sort-dropdown select {
	padding: 0.5rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	background: var(--white);
	color: var(--text-primary);
	font-size: 0.95rem;
	cursor: pointer;
}

/* Products Grid */
.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-bottom: 3rem;
}

.products-grid.list-view {
	grid-template-columns: 1fr;
}

.products-grid .size-btn {
	width: 100%;
}

/* Shop Product Card Styles */
.shop-product-card {
	background: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
}

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

.shop-product-card .product-image {
	height: 400px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.product-actions {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	opacity: 0;
	transition: var(--transition);
}

.shop-product-card:hover .product-actions {
	opacity: 1;
}

.action-btn {
	width: 100%;
	height: 40px;
	background: var(--white);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
	background: var(--primary-color);
	color: var(--white);
	transform: scale(1.1);
}

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

/* Product Badges */
.product-badge.new {
	background: var(--primary-color);
}

.product-badge.sale {
	background: #e74c3c;
}

.product-badge.best-seller {
	background: #f39c12;
}

.product-badge.featured {
	background: #9b59b6;
}

.product-badge.cozy {
	background: #2ecc71;
}

/* Shop Product Info */
.shop-product-card .product-info {
	padding: 1.5rem;
}

.product-details {
	margin-bottom: 1rem;
}

.shop-product-card .product-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
	line-height: 1.4;
}

.shop-product-card .product-price {
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.current-price {
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--primary-color);
}

.original-price {
	font-size: 1rem;
	color: var(--text-light);
	text-decoration: line-through;
}

.discount {
	background: #e74c3c;
	color: var(--white);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
}

.shop-product-card .product-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.shop-product-card .stars {
	color: var(--accent-color);
	font-size: 0.9rem;
}

.rating-text {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.product-actions-bottom {
	margin-top: 1rem;
}

.add-to-cart {
	width: 100%;
	padding: 0.75rem;
	font-size: 0.95rem;
	font-weight: 600;
	transition: var(--transition);
}

.add-to-cart:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* List View Styles */
.products-grid.list-view .shop-product-card {
	display: flex;
	align-items: center;
	padding: 1.5rem;
	gap: 2rem;
}

.products-grid.list-view .product-image {
	width: 200px;
	height: 200px;
	flex-shrink: 0;
}

.products-grid.list-view .product-info {
	flex: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
}

.products-grid.list-view .product-details {
	flex: 1;
	margin-bottom: 0;
}

.products-grid.list-view .product-actions-bottom {
	margin-top: 0;
	margin-left: 2rem;
}

.products-grid.list-view .add-to-cart {
	width: auto;
	padding: 0.75rem 1.5rem;
	white-space: nowrap;
}

.products-grid.list-view .product-actions {
	position: static;
	flex-direction: row;
	opacity: 1;
	margin-left: 1rem;
}

/* Shop Pagination */
.pagination-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}

.pagination {
	display: flex;
	gap: 0.5rem;
}

.page-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: var(--white);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	color: var(--text-secondary);
	text-decoration: none;
	transition: var(--transition);
	font-weight: 500;
}

.page-link:hover,
.page-link.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
}

.page-link.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.page-link.disabled:hover {
	transform: none;
}

/* Shop Hover Effects */
.shop-product-card .product-image {
	transition: var(--transition);
}

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

/* Empty State */
.empty-results {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--text-secondary);
}

.empty-results i {
	font-size: 4rem;
	margin-bottom: 1rem;
	color: var(--text-light);
}

.empty-results h3 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.empty-results p {
	font-size: 1rem;
	line-height: 1.6;
}

/* Active Navigation Link */
.nav a.active {
	color: var(--primary-color);
	font-weight: 600;
}

/* ===== CART PAGE STYLES ===== */

/* Cart Layout */
.cart-main {
	padding: 3rem 0;
}

.cart-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 20px;
	align-items: start;
}

/* Cart Content */
.cart-content {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.cart-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
	border-bottom: 1px solid var(--border-color);
}

.cart-header h2 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin: 0;
}

.continue-shopping {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
}

.continue-shopping:hover {
	color: var(--dark-orange);
}

.continue-shopping i {
	margin-right: 0.5rem;
}

/* Cart Items */
.cart-items {
	padding: 0;
}

.cart-item {
	display: grid;
	grid-template-columns: 100px 1fr auto auto auto;
	gap: 5px;
	padding: 2rem;
	border-bottom: 1px solid var(--border-color);
	align-items: center;
}

.cart-item:last-child {
	border-bottom: none;
}

.item-image {
	width: 100px;
	height: 100px;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.item-details {
	min-width: 0;
}

.item-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.item-name a {
	text-decoration: none;
	color: var(--text-primary);
}

.item-attributes {
	display: flex;
	gap: 1rem;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.item-attributes span {
	display: flex;
	align-items: center;
}

.item-price {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
}

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

.quantity-controls {
	display: flex;
	border: 1px solid var(--border-color);
	border-radius: 6px;
	overflow: hidden;
}

.qty-btn {
	width: 35px;
	height: 35px;
	background: var(--white);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	font-weight: 600;
	color: var(--text-secondary);
}

.qty-btn:hover {
	background: var(--light-orange);
	color: var(--primary-color);
}

.qty-input {
	width: 50px;
	height: 35px;
	border: none;
	text-align: center;
	font-weight: 600;
	background: var(--white);
}

.qty-input:focus {
	outline: none;
	background: var(--light-gray);
}

.item-total {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--text-primary);
	text-align: right;
	min-width: 80px;
}

.cart-item .item-total {
	text-align: center;
}

.remove-item {
	width: 35px;
	height: 35px;
	background: transparent;
	border: 1px solid var(--border-color);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	color: var(--text-light);
	text-decoration: none;
}

.remove-item:hover {
	background: #e74c3c;
	border-color: #e74c3c;
	color: var(--white);
}

/* Cart Actions */
.cart-actions {
	background: var(--light-gray);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.coupon-section {
	flex: 1;
	max-width: 400px;
}

.coupon-input {
	display: flex;
	gap: 0.5rem;
}

.coupon-code {
	flex: 1;
	padding: 0.75rem;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 0.95rem;
}

.coupon-code:focus {
	outline: none;
	border-color: var(--primary-color);
}

.apply-coupon {
	padding: 0.75rem 1.5rem;
	white-space: nowrap;
}

.cart-buttons {
	display: flex;
	gap: 1rem;
}

/* Cart Summary */
.cart-summary {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.summary-card {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 2rem;
	position: sticky;
	top: 100px;
}

.summary-title {
	font-size: 1.3rem;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.summary-row span:first-child {
	color: var(--text-secondary);
}

.summary-row span:last-child {
	font-weight: 600;
	color: var(--text-primary);
}

.summary-divider {
	height: 1px;
	background: var(--border-color);
	margin: 1.5rem 0;
}

.total-row {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 0;
}

.total-row span:last-child {
	color: var(--primary-color);
	font-size: 1.4rem;
}

.checkout-section,
.woocommerce-additional-fields {
	margin-top: 2rem;
}

.checkout-btn {
	width: 100%;
	padding: 1rem;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.checkout-btn i {
	margin-right: 0.5rem;
}

.checkout-section.different-shipping-details {
	margin-top: 0;
}

.different-shipping-details .form-group {
	margin-bottom: 0;
}

.payment-methods {
	text-align: center;
	margin-bottom: 1rem;
}

.payment-methods span {
	display: block;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.payment-icons {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.payment-icons i {
	font-size: 1.5rem;
	color: var(--text-light);
	transition: var(--transition);
}

.payment-icons i:hover {
	color: var(--primary-color);
}

.security-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.security-badge i {
	color: #27ae60;
}

/* Shipping Calculator */
.shipping-calculator {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 1.5rem;
}

.shipping-calculator h4 {
	font-size: 1.1rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.shipping-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1rem;
}

.form-control {
	padding: 0.75rem;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 0.95rem;
	background: var(--white);
	transition: var(--transition);
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

/* Empty Cart */
.empty-cart {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--text-secondary);
}

.empty-cart i {
	font-size: 4rem;
	color: var(--text-light);
	margin-bottom: 1rem;
}

.empty-cart h3 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.empty-cart p {
	margin-bottom: 2rem;
	line-height: 1.6;
}

/* Recommended Products */
.recommended-section {
	padding: 4rem 0;
	background: var(--light-gray);
}

.recommended-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin-top: 2rem;
}

/* ===== CHECKOUT PAGE STYLES ===== */
/* Checkout Main */
.checkout-main {
	padding: 3rem 0;
}

/* Checkout Progress Bar */
.checkout-progress {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 3rem;
	padding: 2rem;
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}

.progress-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	flex: 1;
	max-width: 200px;
}

.progress-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 30px;
	right: -50%;
	width: 100%;
	height: 2px;
	background: var(--border-color);
	z-index: 1;
}

.progress-step.completed::after,
.progress-step.active::after {
	background: var(--primary-color);
}

.step-icon {
	width: 40px;
	height: 40px;
	background: var(--border-color);
	color: var(--text-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5rem;
	position: relative;
	z-index: 2;
	transition: var(--transition);
}

.progress-step.incomplete .step-icon {
	background: var(--border-color);
}

.progress-step.completed .step-icon,
.progress-step.active .step-icon {
	background: var(--primary-color);
	color: var(--white);
}

.step-text {
	font-size: 0.9rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.progress-step.completed .step-text,
.progress-step.active .step-text {
	color: var(--primary-color);
	font-weight: 600;
}

/* Checkout Layout */
.checkout-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 1rem;
	align-items: start;
}

/* Checkout Form Section */
.checkout-form-section {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.checkout-section,
.woocommerce-additional-fields {
	border-bottom: 1px solid var(--border-color);
	padding: 2rem;
	padding-top: 0;
}

.pumpyumpy-coupon-section {
	border-bottom: 0;
	padding-inline: 0;
}

.checkout-section:last-child {
	border-bottom: none;
}

.section-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.3rem;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.billing-details .section-title {
	margin-bottom: 1rem;
}

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

/* Coupon Section */
.coupon-notice {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem;
	background: var(--light-orange);
	border-radius: var(--border-radius);
	color: var(--primary-color);
	font-size: 0.95rem;
}

.coupon-notice i {
	font-size: 1rem;
}

.coupon-notice a {
	color: var(--primary-color);
	text-decoration: underline;
	font-weight: 600;
}

.coupon-form,
.pumpyumpy-coupon-section form.checkout_coupon,
.woocommerce-form.woocommerce-form-login.login {
	margin-top: 1rem;
	padding: 1rem;
	background: var(--light-gray);
	border-radius: var(--border-radius);
	border: 0;
}

.woocommerce-form.woocommerce-form-login.login .form-group {
	margin-bottom: 0;
}

.coupon-form .form-group {
	display: flex;
	gap: 2rem;
	flex-direction: row;
	justify-content: space-around;
	margin-bottom: 0;
}

.coupon-form input {
	flex: 1;
}

.wc-login-message {
	color: var(--text-light);
	padding-inline: 5px;
	font-size: 14px;
	margin-bottom: 10px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
	float: unset;
	display: block;
	width: 100%;
}

/* Form Styles */
.form-row {
	margin-bottom: 1.5rem;
}

.form-row:last-child {
	margin-bottom: 0;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group.half {
	flex: 1;
}

.form-row:has(.form-group.half) {
	display: flex;
	gap: 1rem;
}

.form-group label {
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.75rem;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 0.95rem;
	background: var(--white);
	transition: var(--transition);
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.form-group input.error {
	border-color: #e74c3c;
}

.form-group input[type="text"]:nth-child(3) {
	margin-top: 0.5rem;
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

/* Checkbox Styles */
.checkbox-label {
	display: flex !important;
	align-items: center;
	cursor: pointer;
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
	display: none;
}

.checkbox-label .checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border-color);
	border-radius: 4px;
	margin-right: 0.5rem;
	position: relative;
	transition: var(--transition);
	flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 0;
	width: 6px;
	height: 10px;
	border: solid var(--white);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-label a,
.privacy-policy a,
.lost_password a {
	color: var(--primary-color);
	text-decoration: none;
}

/* Checkout Sidebar */
.checkout-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

/* Order Summary */
.order-summary {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 2rem;
	top: 100px;
}

.summary-title {
	font-size: 1.3rem;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

/* Order Items */
.order-items {
	margin-bottom: 1.5rem;
}

.order-item {
	display: grid;
	grid-template-columns: 60px 1fr auto;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-color);
	align-items: center;
}

.order-item:last-child {
	border-bottom: none;
}

.order-item .item-image {
	width: 60px;
	height: 60px;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.order-item .item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.order-item .item-details h4 {
	font-size: 0.95rem;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
}

.order-item .item-details p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 0.25rem;
}

.item-quantity {
	font-size: 0.85rem;
	color: var(--text-light);
}

.order-item .item-total {
	font-weight: 600;
	color: var(--primary-color);
	text-align: right;
}

/* Order Totals */
.order-totals {
	border-top: 1px solid var(--border-color);
	padding-top: 1rem;
}

.total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
}

.total-row span:first-child {
	color: var(--text-secondary);
}

.total-row span:last-child {
	font-weight: 600;
	color: var(--text-primary);
}

.total-final {
	font-size: 1.1rem;
	font-weight: bold;
	border-top: 1px solid var(--border-color);
	padding-top: 0.75rem;
	margin-top: 0.75rem;
	margin-bottom: 0;
}

.total-final span:last-child {
	color: var(--primary-color);
	font-size: 1.3rem;
}

/* Shipping Options */
.shipping-options {
	margin-bottom: 0.75rem;
}

.shipping-methods {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.radio-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.radio-label input[type="radio"] {
	display: none;
}

.radio-btn {
	width: 16px;
	height: 16px;
	border: 2px solid var(--border-color);
	border-radius: 50%;
	margin-right: 0.5rem;
	position: relative;
	transition: var(--transition);
	flex-shrink: 0;
}

.radio-label input[type="radio"]:checked+.radio-btn {
	border-color: var(--primary-color);
}

.radio-label input[type="radio"]:checked+.radio-btn::after {
	content: '';
	position: absolute;
	left: 2px;
	top: 2px;
	width: 8px;
	height: 8px;
	background: var(--primary-color);
	border-radius: 50%;
}

/* Payment Section */
.woocommerce-checkout #payment.payment-section {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 2rem;
}

.payment-title {
	font-size: 1.3rem;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

/* Payment Methods */
.payment-methods {
	margin-bottom: 2rem;
}

.payment-method {
	display: flex;
	align-items: center;
	padding: 1rem;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	cursor: pointer;
	transition: var(--transition);
}

.payment-method:hover {
	border-color: var(--primary-color);
	background: var(--light-orange);
}

.payment-method input[type="radio"] {
	display: none;
}

.payment-method input[type="radio"]:checked+.payment-radio+.payment-info {
	color: var(--primary-color);
}

.payment-method input[type="radio"]:checked~* {
	color: var(--primary-color);
}

.payment-radio {
	width: 20px;
	height: 20px;
	border: 2px solid var(--border-color);
	border-radius: 50%;
	margin-right: 1rem;
	position: relative;
	transition: var(--transition);
	flex-shrink: 0;
}

.payment-method input[type="radio"]:checked+.payment-radio {
	border-color: var(--primary-color);
}

.payment-method input[type="radio"]:checked+.payment-radio::after {
	content: '';
	position: absolute;
	left: 3px;
	top: 3px;
	width: 10px;
	height: 10px;
	background: var(--primary-color);
	border-radius: 50%;
}

.payment-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.payment-name {
	font-weight: 600;
	color: var(--text-primary);
}

.payment-icons {
	display: flex;
	gap: 0.5rem;
}

.payment-icons i {
	font-size: 1.2rem;
	color: var(--text-light);
}

.payment-icon {
	font-size: 1.5rem !important;
	color: var(--text-light);
}

/* Payment Details */
.woocommerce-checkout #payment div.payment_box.payment-details {
	margin: 1rem 0;
	padding: 1rem;
	background: var(--light-gray);
	border-radius: var(--border-radius);
	position: unset;
}

.woocommerce-checkout #payment div.payment_box.payment-details p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

/* Privacy Policy */
.privacy-policy {
	margin-bottom: 2rem;
	font-size: 0.95rem;
	color: var(--text-secondary);
}

/* Place Order Button */
.place-order-btn {
	width: 100%;
	padding: 1rem;
	background: var(--primary-color);
	color: var(--white);
	border: none;
	border-radius: var(--border-radius);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.place-order-btn:hover {
	background: var(--dark-orange);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.place-order-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

/* Security Info */
.security-info {
	display: block;
	color: var(--text-secondary);
	font-size: 0.9rem;
	text-align: center;
}

.security-info i {
	color: #27ae60;
}
/* ===== ORDER SUCCESS PAGE STYLES ===== */

/* Success Page Header */
.success-header {
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	color: var(--white);
	padding: 6rem 0 3rem;
	margin-top: 35px;
	position: relative;
	text-align: center;
}

.success-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.success-header-content {
	position: relative;
	z-index: 2;
}

.success-icon {
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	animation: successPulse 2s ease-in-out infinite;
}

.success-icon i {
	font-size: 3rem;
	color: var(--white);
}

@keyframes successPulse {

	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}

	50% {
		transform: scale(1.05);
		box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
	}
}

.success-title {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 1rem;
	animation: slideInUp 0.8s ease-out;
}

.success-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	margin-bottom: 2rem;
	animation: slideInUp 0.8s ease-out 0.2s both;
}

.order-number {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 2rem;
	animation: slideInUp 0.8s ease-out 0.4s both;
}

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

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

/* Success Main Content */
.success-main {
	padding: 4rem 0;
	background: var(--light-gray);
}

.success-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 3rem;
	align-items: start;
	padding-top: 3rem;
}

/* Order Details Card */
.order-details-card {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	animation: fadeInLeft 0.8s ease-out 0.6s both;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}

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

.card-header {
	padding: 2rem;
	border-bottom: 1px solid var(--border-color);
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
}

.card-header h2 {
	font-size: 1.5rem;
	margin: 0;
}

.card-content {
	padding: 2rem;
}

/* Order Info Grid */
.order-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

.info-item {
	display: flex;
	flex-direction: column;
}

.info-label {
	font-size: 0.9rem;
	color: var(--text-secondary);
	font-weight: 500;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.info-value {
	font-size: 1.1rem;
	color: var(--text-primary);
	font-weight: 600;
}

/* Ordered Items */
.ordered-items {
	margin: 2rem 0;
}

.items-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.items-header h3 {
	font-size: 1.2rem;
	color: var(--text-primary);
	margin: 0;
}

.items-count {
	background: var(--primary-color);
	color: var(--white);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
}

.ordered-item {
	display: grid;
	grid-template-columns: 80px 1fr auto;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-color);
	align-items: center;
}

.ordered-item:last-child {
	border-bottom: none;
}

.item-image {
	width: 80px;
	height: 80px;
	border-radius: var(--border-radius);
	overflow: hidden;
}

.item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.item-details h4 {
	font-size: 1rem;
	color: var(--text-primary);
	margin-bottom: 0.25rem;
	font-weight: 600;
}

.item-attributes {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 0.25rem;
}

.item-quantity {
	font-size: 0.85rem;
	color: var(--text-light);
}

.item-price {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
	text-align: left;
}

/* Order Summary Sidebar */
.success-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	animation: fadeInRight 0.8s ease-out 0.6s both;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}

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

.summary-card {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 2rem;
}

.summary-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.summary-header i {
	color: var(--primary-color);
}

.summary-header h3 {
	font-size: 1.3rem;
	color: var(--text-primary);
	margin: 0;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
}

.summary-row span:first-child {
	color: var(--text-secondary);
}

.summary-row span:last-child {
	font-weight: 600;
	color: var(--text-primary);
}

.summary-divider {
	height: 1px;
	background: var(--border-color);
	margin: 1.5rem 0;
}

.total-row {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 0;
}

.total-row span:last-child {
	color: var(--primary-color);
	font-size: 1.4rem;
}

/* Actions Card */
.actions-card {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	padding: 2rem;
}

.actions-header {
	text-align: center;
	margin-bottom: 2rem;
}

.actions-header h3 {
	font-size: 1.2rem;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.actions-subtitle {
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.action-buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	font-size: 0.95rem;
}

.action-btn-primary {
	background: var(--primary-color);
	color: var(--white);
	border: 2px solid var(--primary-color);
}

.action-btn-primary:hover {
	background: var(--dark-orange);
	border-color: var(--dark-orange);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.action-btn-outline {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.action-btn-outline:hover {
	background: var(--primary-color);
	color: var(--white);
	transform: translateY(-2px);
}

/* What's Next Section */
.whats-next {
	background: var(--white);
	padding: 3rem 0;
}

.next-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.next-step {
	text-align: center;
	padding: 2rem;
	border-radius: var(--border-radius);
	background: var(--light-gray);
	transition: var(--transition);
	animation: fadeInUp 0.8s ease-out calc(0.8s + var(--delay)) both;
}

.next-step:nth-child(1) {
	--delay: 0s;
}

.next-step:nth-child(2) {
	--delay: 0.2s;
}

.next-step:nth-child(3) {
	--delay: 0.4s;
}

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

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

.next-step:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
	background: var(--white);
}

.step-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
}

.step-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.step-description {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Email Confirmation */
.email-confirmation {
	background: var(--light-orange);
	border: 1px solid var(--primary-color);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.email-confirmation-content {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.email-confirmation i {
	font-size: 1.5rem;
	color: var(--primary-color);
}

.email-confirmation-text {
	flex: 1;
}

.email-confirmation-text h4 {
	font-size: 1rem;
	color: var(--primary-color);
	margin-bottom: 0.25rem;
}

.email-confirmation-text p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin: 0;
}

/* ===== MY ACCOUNT PAGE STYLES ===== */

/* Account Page Header */
.account-header {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
	padding: 6rem 0 3rem;
	margin-top: 80px;
	position: relative;
}

.account-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('https://images.unsplash.com/photo-1503919545889-aef636e10ad4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
	opacity: 0.1;
}

.account-header-content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.user-avatar {
	width: 100px;
	height: 100px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	border: 3px solid rgba(255, 255, 255, 0.3);
}

.user-info h1 {
	font-size: 2.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.user-info p {
	font-size: 1.1rem;
	opacity: 0.9;
	margin: 0;
}

/* Account Main */
.account-main {
	padding: 3rem 0;
	background: var(--light-gray);
}

.account-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 3rem;
	align-items: start;
}

/* Account Sidebar Navigation */
.account-sidebar {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	position: sticky;
	top: 100px;
}

.sidebar-header {
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
	padding: 1.5rem;
	text-align: center;
}

.sidebar-header h3 {
	font-size: 1.2rem;
	margin: 0;
}

.account-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.account-nav li {
	border-bottom: 1px solid var(--border-color);
}

.account-nav li:last-child {
	border-bottom: none;
}

.account-nav a {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.2rem 1.5rem;
	text-decoration: none;
	color: var(--text-primary);
	transition: var(--transition);
	font-weight: 500;
}

.account-nav a:hover,
.account-nav a.active {
	background: var(--light-orange);
	color: var(--primary-color);
}

.account-nav i {
	width: 20px;
	text-align: center;
	color: var(--text-secondary);
}

.account-nav a:hover i,
.account-nav a.active i {
	color: var(--primary-color);
}

/* Account Content */
.account-content {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.content-header {
	padding: 2rem;
	border-bottom: 1px solid var(--border-color);
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
}

.content-header h2 {
	font-size: 1.5rem;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.content-body {
	padding: 2rem;
}

/* Dashboard Stats */
.dashboard-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.stat-card {
	background: var(--light-gray);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	text-align: center;
	transition: var(--transition);
	border: 2px solid transparent;
}

.stat-card:hover {
	border-color: var(--primary-color);
	background: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.stat-icon {
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.2rem;
}

.stat-number {
	font-size: 2rem;
	font-weight: bold;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--text-secondary);
	font-size: 0.9rem;
	font-weight: 500;
}

/* Recent Orders */
.recent-orders {
	margin-bottom: 3rem;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
}

.section-title {
	font-size: 1.3rem;
	color: var(--text-primary);
	margin: 0;
}

.view-all-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}

.view-all-link:hover {
	color: var(--dark-orange);
}

.orders-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.orders-table th {
	background: var(--light-gray);
	color: var(--text-primary);
	font-weight: 600;
	padding: 1rem;
	text-align: left;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.orders-table td {
	padding: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.orders-table tr:last-child td {
	border-bottom: none;
}

.orders-table tr:hover {
	background: var(--light-gray);
}

.order-id {
	font-weight: 600;
	color: var(--primary-color);
}

.order-status {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

.status-processing {
	background: #f39c12;
	color: var(--white);
}

.status-shipped {
	background: #3498db;
	color: var(--white);
}

.status-delivered {
	background: #27ae60;
	color: var(--white);
}

.status-cancelled {
	background: #e74c3c;
	color: var(--white);
}

.order-total {
	font-weight: 600;
	color: var(--primary-color);
}

.order-actions {
	display: flex;
	gap: 0.5rem;
}

.action-btn {
	padding: 0.4rem 0.8rem;
	border: 1px solid var(--border-color);
	background: var(--white);
	color: var(--text-secondary);
	border-radius: 6px;
	font-size: 0.8rem;
	text-decoration: none;
	transition: var(--transition);
}

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

/* Address Cards */
.address-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.address-card {
	background: var(--light-gray);
	border-radius: var(--border-radius);
	padding: 2rem;
	position: relative;
	border: 2px solid transparent;
	transition: var(--transition);
}

.address-card.default {
	border-color: var(--primary-color);
	background: var(--light-orange);
}

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

.address-type {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.address-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.default-badge {
	background: var(--primary-color);
	color: var(--white);
	padding: 0.2rem 0.6rem;
	border-radius: 12px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
}

.address-details {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.address-actions {
	display: flex;
	gap: 0.5rem;
}

.address-actions .action-btn {
	flex: 1;
	text-align: center;
}

/* Account Details Form */
.account-form {
	max-width: 600px;
}

.form-section {
	margin-bottom: 3rem;
}

.form-section:last-child {
	margin-bottom: 0;
}

.form-section h3 {
	font-size: 1.2rem;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--primary-color);
	display: inline-block;
}

.form-row-group {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-group label {
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.75rem;
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 0.95rem;
	background: var(--white);
	transition: var(--transition);
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-actions {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.btn-save {
	background: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 0.75rem 2rem;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.btn-save:hover {
	background: var(--dark-orange);
	transform: translateY(-2px);
}

.btn-cancel {
	background: transparent;
	color: var(--text-secondary);
	border: 2px solid var(--border-color);
	padding: 0.75rem 2rem;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.btn-cancel:hover {
	border-color: var(--text-secondary);
	color: var(--text-primary);
}

/* Wishlist Grid */
.wishlist-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.wishlist-item {
	background: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	position: relative;
}

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

.wishlist-item .product-image {
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.remove-wishlist {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 35px;
	height: 35px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	color: var(--text-secondary);
}

.remove-wishlist:hover {
	background: #e74c3c;
	color: var(--white);
}

.wishlist-item .product-info {
	padding: 1rem;
}

.wishlist-item .product-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.wishlist-item .product-price {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 1rem;
}

.add-to-cart-btn {
	width: 100%;
	padding: 0.6rem;
	background: var(--primary-color);
	color: var(--white);
	border: none;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.add-to-cart-btn:hover {
	background: var(--dark-orange);
}

/* Empty State */
.empty-state {
	text-align: center;
	padding: 4rem 2rem;
	color: var(--text-secondary);
}

.empty-state i {
	font-size: 4rem;
	color: var(--text-light);
	margin-bottom: 1rem;
}

.empty-state h3 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.empty-state p {
	margin-bottom: 2rem;
	line-height: 1.6;
}

/* Mobile Account Navigation */
.mobile-account-nav {
	display: none;
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	margin-bottom: 2rem;
	overflow: hidden;
}

.mobile-nav-toggle {
	width: 100%;
	padding: 1rem;
	background: var(--primary-color);
	color: var(--white);
	border: none;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-nav-menu {
	display: none;
	padding: 0;
}

.mobile-nav-menu.show {
	display: block;
}

.mobile-nav-menu a {
	display: block;
	padding: 1rem;
	color: var(--text-primary);
	text-decoration: none;
	border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu a:last-child {
	border-bottom: none;
}

.mobile-nav-menu a.active {
	background: var(--light-orange);
	color: var(--primary-color);
}

/* ===== GENERAL PAGE STYLES ===== */

/* Page Header */
.general-header {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
	padding: 6rem 0 3rem;
	margin-top: 80px;
	position: relative;
}

.general-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('https://images.unsplash.com/photo-1503919545889-aef636e10ad4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
	opacity: 0.1;
}

.general-header-content {
	position: relative;
	z-index: 2;
	text-align: center;
	animation: fadeInUp 0.8s ease-out;
}

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

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

.page-title {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.page-subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.breadcrumb {
	font-size: 1rem;
	opacity: 0.8;
	margin-bottom: 0;
}

.breadcrumb a {
	color: var(--white);
	text-decoration: none;
	transition: var(--transition);
}

.breadcrumb a:hover {
	opacity: 0.8;
}

.breadcrumb span {
	margin: 0 0.5rem;
}

/* General Main Content */
.single-product .general-main {
	padding: 2rem 0;
	margin-top: 80px;
}

.general-main {
	padding: 3rem 0;
	margin-top: 0;
}

.single-product .general-main {
	padding-bottom: 0;
}

.general-content {
	background: var(--white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	margin-bottom: 3rem;
}

.general-content:last-child {
	margin-bottom: 0;
}

/* Content Header */
.content-header {
	padding: 2rem;
	border-bottom: 1px solid var(--border-color);
	background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
	color: var(--white);
}

.content-header h2 {
	font-size: 1.5rem;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.content-header i {
	font-size: 1.2rem;
}

/* Content Body */
.content-body {
	padding: 2rem;
}

/* Text Content Styles */
.text-content h3 {
	font-size: 1.3rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.text-content h3:first-child {
	margin-top: 0;
}

.text-content h4 {
	font-size: 1.1rem;
	color: var(--primary-color);
	margin-bottom: 0.75rem;
	margin-top: 1.5rem;
}

.text-content p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.text-content ul,
.text-content ol {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1rem;
	padding-left: 2rem;
}

.text-content li {
	margin-bottom: 0.5rem;
}

.text-content strong {
	color: var(--text-primary);
	font-weight: 600;
}

.text-content a {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
}

.text-content a:hover {
	color: var(--dark-orange);
	text-decoration: underline;
}

/* Highlight Boxes */
.highlight-box {
	background: var(--light-orange);
	border: 1px solid var(--primary-color);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	margin: 2rem 0;
}

.highlight-box.info {
	background: #e3f2fd;
	border-color: #2196f3;
}

.highlight-box.success {
	background: #e8f5e8;
	border-color: #4caf50;
}

.highlight-box.warning {
	background: #fff3e0;
	border-color: #ff9800;
}

.highlight-box.error {
	background: #ffebee;
	border-color: #f44336;
}

.highlight-box h4 {
	color: var(--primary-color);
	margin-bottom: 0.75rem;
	margin-top: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.highlight-box.info h4 {
	color: #2196f3;
}

.highlight-box.success h4 {
	color: #4caf50;
}

.highlight-box.warning h4 {
	color: #ff9800;
}

.highlight-box.error h4 {
	color: #f44336;
}

.highlight-box p {
	margin-bottom: 0;
}

/* Grid Layout */
.content-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin: 2rem 0;
}

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

.content-grid.four-col {
	grid-template-columns: repeat(4, 1fr);
}

.grid-item {
	background: var(--light-gray);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	transition: var(--transition);
}

.grid-item:hover {
	background: var(--white);
	box-shadow: var(--shadow-hover);
	transform: translateY(-2px);
}

.grid-item h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	margin-top: 0;
}

.grid-item p {
	margin-bottom: 0;
	font-size: 0.95rem;
}

/* Icon Grid */
.icon-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin: 2rem 0;
}

.icon-item {
	text-align: center;
	padding: 2rem 1rem;
	background: var(--light-gray);
	border-radius: var(--border-radius);
	transition: var(--transition);
}

.icon-item:hover {
	background: var(--white);
	box-shadow: var(--shadow-hover);
	transform: translateY(-5px);
}

.icon-item i {
	width: 60px;
	height: 60px;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
}

.icon-item h4 {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.icon-item p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	margin: 0;
}

/* Feature List */
.feature-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
}

.feature-list li {
	display: flex;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
	border-bottom: none;
}

.feature-list li i {
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	flex-shrink: 0;
}

.feature-list li strong {
	color: var(--text-primary);
	margin-right: 0.5rem;
}

/* FAQ Accordion */
.faq-accordion {
	margin: 2rem 0;
}

.faq-item {
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	margin-bottom: 1rem;
	overflow: hidden;
}

.faq-question {
	background: var(--light-gray);
	padding: 1.5rem;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	color: var(--text-primary);
}

.faq-question:hover {
	background: var(--light-orange);
	color: var(--primary-color);
}

.faq-question i {
	transition: var(--transition);
}

.faq-question.active i {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-answer.show {
	padding: 1.5rem;
	max-height: 200px;
}

.faq-answer p {
	margin: 0;
	color: var(--text-secondary);
}

/* Table Styles */
.content-table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	background: var(--white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.content-table th {
	background: var(--primary-color);
	color: var(--white);
	font-weight: 600;
	padding: 1rem;
	text-align: left;
}

.content-table td {
	padding: 1rem;
	border-bottom: 1px solid var(--border-color);
	color: var(--text-secondary);
}

.content-table tr:last-child td {
	border-bottom: none;
}

.content-table tr:nth-child(even) {
	background: var(--light-gray);
}

/* Contact Form */
.contact-form {
	max-width: 600px;
	margin: 2rem auto;
	width: 100%;
}

.form-row-group {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 0.5rem;
}

.form-row-group.billing_address_1,
.form-row-group.billing_email {
	grid-template-columns: repeat(1, 1fr);
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-group label {
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group .select2.select2-container .select2-selection.select2-selection--single,
.form-group textarea {
	padding: 0.75rem;
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius);
	font-size: 0.95rem;
	background: var(--white);
	transition: var(--transition);
	font-family: inherit;
}

.form-group .select2.select2-container .select2-selection.select2-selection--single {
	height: 45px;
}

.form-group .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.form-actions {
	text-align: center;
	margin-top: 2rem;
}

/* Buttons */
.btn-large {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}

.btn-small {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}

.btn-full-width {
	width: 100%;
}

/* Image Gallery */
.image-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin: 2rem 0;
}

.gallery-item {
	aspect-ratio: 1;
	background-size: cover;
	background-position: center;
	border-radius: var(--border-radius);
	overflow: hidden;
	cursor: pointer;
	transition: var(--transition);
}

.gallery-item:hover {
	transform: scale(1.05);
	box-shadow: var(--shadow-hover);
}

/* Progress Bar */
.progress-bar {
	background: var(--light-gray);
	border-radius: 20px;
	height: 8px;
	margin: 1rem 0;
	overflow: hidden;
}

.progress-fill {
	background: var(--primary-color);
	height: 100%;
	border-radius: 20px;
	transition: width 0.3s ease;
}

/* Tabs */
.tabs-container {
	margin: 2rem 0;
}

.tab-navigation {
	display: flex;
	border-bottom: 2px solid var(--border-color);
	margin-bottom: 2rem;
}

.tab-btn {
	background: none;
	border: none;
	padding: 10px 2rem;
	cursor: pointer;
	font-weight: 600;
	color: var(--text-secondary);
	transition: var(--transition);
	border-bottom: 3px solid transparent;
	text-decoration: none;
}

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

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
	animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* Statistics */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin: 2rem 0;
}

.stat-item {
	text-align: center;
	padding: 2rem;
	background: var(--light-gray);
	border-radius: var(--border-radius);
	transition: var(--transition);
}

.stat-item:hover {
	background: var(--white);
	box-shadow: var(--shadow-hover);
	transform: translateY(-5px);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.stat-label {
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 500;
}

/* Product Variations */
.product-variations {
	margin: 1rem 0 1.5rem 0;
}

.variation-group {
	margin-bottom: 1rem;
}

.variation-group:last-child {
	margin-bottom: 0;
}

.variation-label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

/* Size Options */
.size-options {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.size-btn {
	padding: 0.4rem 0.8rem;
	border: 2px solid var(--border-color);
	background: var(--white);
	color: var(--text-secondary);
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	width: calc(97% / 2);
}

.size-btn:hover,
.size-btn.active {
	border-color: var(--primary-color);
	background: var(--primary-color);
	color: var(--white);
}

.size-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background: var(--light-gray);
	position: relative;
}

.size-btn:disabled::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 1px;
	background: var(--text-light);
	transform: translate(-50%, -50%) rotate(45deg);
}

/* Color Options */
.color-options {
	display: flex;
	gap: 0.5rem;
}

.color-btn {
	width: 32px;
	height: 32px;
	border: 2px solid var(--border-color);
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
}

.color-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-btn.active {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.color-btn.active::after {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--primary-color);
	font-size: 0.7rem;
	text-shadow: 0 0 2px var(--white);
}

/* Pattern Options */
.pattern-options {
	display: flex;
	gap: 0.5rem;
}

.pattern-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	padding: 0.5rem;
	border: 2px solid var(--border-color);
	background: var(--white);
	border-radius: 8px;
	cursor: pointer;
	transition: var(--transition);
	font-size: 0.8rem;
}

.pattern-btn img {
	width: 30px;
	height: 30px;
	border-radius: 4px;
	object-fit: cover;
}

.pattern-btn:hover,
.pattern-btn.active {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/* Product Actions */
.product-actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	margin-top: 1rem;
}

.product-actions.simple {
	flex-direction: column;
	gap: 1rem;
}

/* Add to Cart Button */
.add-to-cart {
	flex: 1;
	padding: 0.6rem 1rem;
	font-size: 0.9rem;
	white-space: nowrap;
}

.product-actions.simple .btn {
	width: 100%;
}

/* Price Ranges */
.price-range {
	color: var(--primary-color);
	font-size: 1.1rem;
	font-weight: bold;
}

.original-price {
	color: var(--text-light);
	text-decoration: line-through;
	font-size: 0.9rem;
	margin-right: 0.5rem;
}

.sale-price {
	color: var(--primary-color);
	font-weight: bold;
	font-size: 1.1rem;
}

/* Gallery Navigation */
.product-gallery-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
	opacity: 0;
	transition: var(--transition);
}

.product-card:hover .product-gallery-nav {
	opacity: 1;
}

.gallery-btn {
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	font-size: 0.8rem;
	color: var(--text-secondary);
}

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

/* Stock Status */
.stock-status {
	display: inline-block;
	padding: 0.25rem 0.5rem;
	border-radius: 12px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

.stock-status.in-stock {
	background: #e8f5e8;
	color: #2e7d32;
}

.stock-status.low-stock {
	background: #fff3e0;
	color: #ef6c00;
}

.stock-status.out-of-stock {
	background: #ffebee;
	color: #c62828;
}

/* Variable Product Loading State */
.variation-loading {
	opacity: 0.6;
	pointer-events: none;
}

.variation-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	border: 2px solid var(--border-color);
	border-top: 2px solid var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	transform: translate(-50%, -50%);
}

@keyframes spin {
	0% { transform: translate(-50%, -50%) rotate(0deg); }
	100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.owl-carousel.arrivals-carousel .owl-stage {
	display: flex !important;
}

.owl-carousel.arrivals-carousel .owl-item {
	display: flex;
}
.owl-carousel.arrivals-carousel .owl-item:first-child .product-card {
	margin-inline-start: 2px;
}

.product-card {
	flex: 1 1 auto;  /* let each card stretch */
	display: flex;
	flex-direction: column;
}

.arrivals-carousel .product-card:hover {
	box-shadow: unset;
}

.product-add-to-cart {
	margin-top: auto;
	width: 100%;
}

/* ===== CART SIDEBAR STYLES ===== */

/* Cart Sidebar */
.cart-sidebar {
	position: fixed;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100vh;
	background: var(--white);
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
	z-index: 10000;
	display: flex;
	flex-direction: column;
	transition: right 0.3s ease;
}

.cart-sidebar.open {
	right: 0;
}

/* Cart Overlay */
.cart-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.cart-overlay.show {
	opacity: 1;
	visibility: visible;
}

/* Cart Header */
.cart-sidebar .cart-header {
	padding: 1rem;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--white);
}

.admin-bar .cart-sidebar .cart-header {
	padding-top: 45px;
}

.cart-sidebar .cart-header h3 {
	font-size: 1.3rem;
	color: var(--text-primary);
	margin: 0;
	font-weight: 600;
}

.cart-sidebar .cart-close {
	background: none;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	transition: var(--transition);
	font-size: 1.2rem;
}

.cart-sidebar .cart-close:hover {
	background: var(--light-gray);
	color: var(--primary-color);
}

/* Cart Content */
.cart-sidebar .cart-content {
	flex: 1;
	overflow-y: auto;
	padding: 1rem 0;
	background: var(--white);
}

.cart-sidebar .cart-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid var(--border-color);
	transition: var(--transition);
}

.cart-sidebar .cart-item:hover {
	background: var(--light-gray);
}

.cart-sidebar .cart-item:last-child {
	border-bottom: none;
}

.cart-sidebar .cart-item-info {
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	flex: 1;
}

.cart-sidebar .cart-item-image img {
	width: 60px;
	height: 60px;
	border-radius: var(--border-radius);
}

.cart-sidebar .cart-item-details {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.cart-sidebar .cart-item-price-info {
	display: flex;
	flex-direction: row;
	gap: 3px;
	justify-content: space-between;
	align-items: center;
}

.cart-sidebar .cart-item-name {
	font-weight: 600;
	color: var(--text-primary);
	font-size: 0.95rem;
	line-height: 1.3;
	text-decoration: none;
}

.cart-sidebar .cart-item-quantity {
	color: var(--text-secondary);
	font-size: 0.85rem;
}

.cart-sidebar .cart-item-price {
	color: var(--primary-color);
	font-weight: 600;
	font-size: 1rem;
}

.cart-sidebar .cart-item-remove {
	background: none;
	border: none;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	transition: var(--transition);
	margin-left: 1rem;
}

.cart-sidebar .cart-item-remove:hover {
	background: #e74c3c;
	color: var(--white);
	transform: scale(1.1);
}

/* Empty Cart State */
.cart-sidebar .cart-empty {
	text-align: center;
	padding: 3rem 2rem;
	color: var(--text-secondary);
}

.cart-sidebar .cart-empty i {
	font-size: 3rem;
	color: var(--text-light);
	margin-bottom: 1rem;
}

.cart-sidebar .cart-empty h4 {
	font-size: 1.2rem;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.cart-sidebar .cart-empty p {
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Cart Footer */
.cart-sidebar .cart-footer {
	padding: 2rem;
	border-top: 1px solid var(--border-color);
	background: var(--white);
}

.cart-sidebar .cart-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.cart-sidebar .cart-total span:first-child {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
}

.cart-sidebar .cart-total span:last-child {
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--primary-color);
}

.cart-sidebar .checkout-button {
	width: 100%;
	padding: 1rem;
	background: var(--primary-color);
	color: var(--white);
	border: none;
	border-radius: var(--border-radius);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.cart-sidebar .checkout-button:hover {
	background: var(--dark-orange);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cart-sidebar .checkout-button:disabled {
	background: var(--text-light);
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Animation classes */
.slide-in {
	animation: slideIn 0.3s ease-out;
}

.slide-out {
	animation: slideOut 0.3s ease-in;
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes slideOut {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(100%);
	}
}

/* ===== PRODUCT DETAIL PAGE STYLES ===== */

/* Product Detail Main */
/* Product Layout */
.product-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 4rem;
}

/* Product Gallery */
.product-gallery,
.woocommerce-product-gallery__wrapper {
	position: sticky;
	top: 100px;
}

.product .product-layout .woocommerce-product-gallery.woocommerce-product-gallery--with-images {
	width: 100%;
}

.main-image,
.woocommerce div.product div.images .woocommerce-product-gallery__image:not(:first-child) {
	position: relative;
	margin-bottom: 1rem;
	border-radius: var(--border-radius);
	overflow: hidden;
	background: var(--light-gray);
	width: unset;
	margin-right: 0.5rem;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:first-child {
	margin-bottom: 1rem;
}

.product .product-layout .woocommerce-product-gallery__image:first-child img {
	width: 100%;
	height: 600px;
}

.main-image img,
.woocommerce div.product div.images img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	cursor: zoom-in;
}

.woocommerce span.onsale,
.gallery-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--primary-color);
	color: var(--white);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	line-height: normal;
	min-height: unset;
}

.zoom-icon {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	opacity: 0;
}

.main-image:hover .zoom-icon {
	opacity: 1;
}

.zoom-icon:hover {
	background: var(--primary-color);
	color: var(--white);
}

.thumbnail-gallery {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
}

.thumbnail {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: var(--transition);
}

.thumbnail.active {
	border-color: var(--primary-color);
}

.thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumbnail:hover {
	border-color: var(--primary-color);
	transform: scale(1.05);
}

.price-current {
	font-size: 2rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-right: 1rem;
}

.price-original {
	font-size: 1.2rem;
	color: var(--text-light);
	text-decoration: line-through;
	margin-right: 1rem;
}

.price-discount {
	background: #e74c3c;
	color: var(--white);
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 600;
}

.product-description {
	color: var(--text-secondary);
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.product_meta.product-description {
	margin-bottom: 0;
	font-size: 14px;
}

/* Product Features */
.product-features {
	display: flex;
	gap: 2rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.feature-item i {
	color: #27ae60;
	font-size: 1rem;
}

/* Product Variations */
.product-variations {
	margin-bottom: 2rem;
	margin-top: 0;
}

.variation-group {
	margin-bottom: 1.5rem;
}

.variation-label {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.variation-selected {
	font-weight: normal;
	color: var(--primary-color);
}

.color-options {
	display: flex;
	gap: 0.75rem;
}

.color-btn {
	width: 40px;
	height: 40px;
	border: 2px solid var(--border-color);
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
}

.color-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-btn.active {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.color-btn.active::after {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--primary-color);
	font-size: 0.8rem;
	text-shadow: 0 0 2px var(--white);
}

.color-name {
	display: block;
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-top: 0.5rem;
	text-align: center;
}

/* Stock Status */
.stock-status {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 2rem;
}

.stock-status.in-stock {
	background: #e8f5e8;
	color: #2e7d32;
}

.stock-status.low-stock {
	background: #fff3e0;
	color: #ef6c00;
}

.stock-status.out-of-stock {
	background: #ffebee;
	color: #c62828;
}

/* Add to Cart Section */
.add-to-cart-section {
	background: var(--light-gray);
	padding: 2rem;
	border-radius: var(--border-radius);
	margin-bottom: 2rem;
}

.quantity-price {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-bottom: 2rem;
	justify-content: space-between;
}

.quantity-selector {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.quantity-label {
	font-weight: 600;
	color: var(--text-primary);
}

.qty-controls {
	display: flex;
	align-items: center;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	overflow: hidden;
}

.total-price {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary-color);
}

.cart-layout .cart-actions {
	padding: 2rem;
}

.cart-actions {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.add-to-cart-btn {
	flex: 1;
	padding: 1rem 2rem;
	background: var(--primary-color);
	color: var(--white);
	border: none;
	border-radius: var(--border-radius);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.add-to-cart-btn:hover {
	background: var(--dark-orange);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.buy-now-btn {
	flex: 1;
	padding: 1rem 2rem;
	background: var(--text-primary);
	color: var(--white);
	border: none;
	border-radius: var(--border-radius);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
}

.buy-now-btn:hover {
	background: #1a1a1a;
	transform: translateY(-2px);
}

.wishlist-btn {
	width: 50px;
	height: 50px;
	background: var(--white);
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--text-secondary);
}

.wishlist-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.wishlist-btn.active {
	background: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--white);
}

/* Product Tabs */
.product-tabs {
	margin-top: 4rem;
}

/* Description Tab */
.description-content h3 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.description-content p {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.description-content ul {
	color: var(--text-secondary);
	line-height: 1.7;
	padding-left: 2rem;
	margin-bottom: 2rem;
}

.description-content li {
	margin-bottom: 0.5rem;
}

/* Specifications Tab */
.specifications-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 1rem;
}

.specifications-table th,
.specifications-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}

.specifications-table th {
	background: var(--light-gray);
	color: var(--text-primary);
	font-weight: 600;
	width: 30%;
}

.specifications-table td {
	color: var(--text-secondary);
}

/* Reviews Tab */
.reviews-summary {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 2rem;
	align-items: center;
	margin-bottom: 2rem;
	padding: 2rem;
	background: var(--light-gray);
	border-radius: var(--border-radius);
}

.overall-rating {
	text-align: center;
}

.rating-number {
	font-size: 3rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.rating-stars-large {
	color: #ffd700;
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.total-reviews {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.rating-breakdown {
	max-width: 300px;
}

.rating-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.5rem;
}

.stars-count {
	min-width: 60px;
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.progress-bar {
	flex: 1;
	height: 6px;
	background: var(--border-color);
	border-radius: 3px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: var(--primary-color);
	border-radius: 3px;
}

.review-count {
	min-width: 30px;
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.write-review-btn {
	background: var(--primary-color);
	color: var(--white);
	border: none;
	padding: 1rem 2rem;
	border-radius: var(--border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	white-space: nowrap;
}

.write-review-btn:hover {
	background: var(--dark-orange);
}

/* Related Products */
.related-products {
	margin-top: 4rem;
	padding: 4rem 0;
	background: var(--light-gray);
}

.related-products .section-title {
	text-align: center;
	margin-bottom: 1rem;
	font-size: 2rem;
}

/* Share Section */
.share-section {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}

.share-label {
	font-weight: 600;
	color: var(--text-primary);
}

.share-buttons {
	display: flex;
	gap: 0.5rem;
}

.share-btn {
	width: 40px;
	height: 40px;
	background: var(--light-gray);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

.share-btn.facebook:hover {
	background: #3b5998;
	color: var(--white);
}

.share-btn.twitter:hover {
	background: #1da1f2;
	color: var(--white);
}

.share-btn.pinterest:hover {
	background: #bd081c;
	color: var(--white);
}

.share-btn.whatsapp:hover {
	background: #25d366;
	color: var(--white);
}

.woocommerce-product-attributes-item__value p {
	margin-bottom: 0;
}

.hidden {
	display: none !important;
}

.coupon-name {
	color: var(--text-secondary);
}

.cart-discount .coupon-name .coupon-code-slug {
	color: var(--text-secondary);
	font-size: 14px;
	font-weight: 400;
}

.coupon-price {
	text-align: right;
}
.cart-discount .coupon-price span {
	color: var(--primary-color);
}
.coupon-price a {
	display: block;
	font-size: 12px;
	font-weight: 400;
}

.woocommerce-checkout #payment ul.wc_payment_methods.payment_methods.methods {
	padding: 0;
}

.woocommerce-button.woocommerce-form-login__submit {
	margin-top: 10px;
}

/* WooCommerce Notice Message Styles */
.woocommerce-message {
	position: relative;
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	color: #ffffff;
	padding: 1rem 1.5rem 1rem 3.5rem;
	border-radius: 12px;
	border: none;
	font-size: 0.95rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
	animation: slideInDown 0.5s ease-out;
	overflow: hidden;
}

.pumpyumpy-coupon-section .woocommerce-message {
	margin-block: 1.5rem 0;
}

.returning-customer-section {
	padding-bottom: 0;
}

.returning-customer-section .woocommerce-info {
	border-top: 0;
	background: transparent;
	padding: 0;
	margin: 0;
	color: var(--primary-color);
}
.returning-customer-section .woocommerce-info::before {
	display: none;
}

/* Success Icon */
.woocommerce-message::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	left: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.1rem;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.2);
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Animated background effect */
.woocommerce-message::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	animation: shine 2s ease-in-out;
}

/* Animations */
@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes shine {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

/* Hover effect */
.woocommerce-message:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
	transition: all 0.3s ease;
}

/* Alternative styles for different message types */

/* Error Message */
.woocommerce-message.woocommerce-error {
	background: linear-gradient(135deg, #e74c3c, #ec7063);
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.woocommerce-message.woocommerce-error::before {
	content: '\f00d';
	background: rgba(255, 255, 255, 0.2);
}

.woocommerce-message.woocommerce-error:hover {
	box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Info Message */
.woocommerce-message.woocommerce-info {
	background: linear-gradient(135deg, #3498db, #5dade2);
	box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.woocommerce-message.woocommerce-info::before {
	content: '\f05a';
	background: rgba(255, 255, 255, 0.2);
}

.woocommerce-message.woocommerce-info:hover {
	box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

/* Minimal variant */
.woocommerce-message.minimal {
	background: #ffffff;
	color: #27ae60;
	border: 2px solid #27ae60;
	box-shadow: 0 2px 10px rgba(39, 174, 96, 0.1);
}

.woocommerce-message.minimal::before {
	color: #27ae60;
	background: rgba(39, 174, 96, 0.1);
}

/* With close button */
.woocommerce-message.dismissible {
	padding-right: 3rem;
}

.woocommerce-message .notice-dismiss {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #ffffff;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	transition: all 0.3s ease;
}

.woocommerce-message .notice-dismiss:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-50%) scale(1.1);
}

/* WooCommerce Error Notice Group Styles */
.woocommerce-NoticeGroup {
	margin: 1.5rem 0;
	position: relative;
	margin-top: 0;
}

.woocommerce-NoticeGroup-checkout {
	margin-bottom: 2rem;
}

.woocommerce-NoticeGroup [role="alert"] {
	background: linear-gradient(135deg, #e74c3c, #ec7063);
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
	position: relative;
	overflow: hidden;
	animation: slideInDown 0.5s ease-out;
}

/* Animated background effect */
.woocommerce-NoticeGroup [role="alert"]::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1.2" fill="rgba(255,255,255,0.06)"/></svg>');
	opacity: 0.5;
	animation: float 8s ease-in-out infinite;
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0%, 100% { transform: scale(1) rotate(0deg); }
	50% { transform: scale(1.1) rotate(180deg); }
}

/* Error List Styles */
.woocommerce-error {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 2;
	background: transparent;
	border-top: 0;
}

.woocommerce-error::before {
	display: none;
}

.woocommerce-error:focus {
	outline: none;
}

/* Error List Items */
.woocommerce-error li {
	margin-bottom: 0;
	position: relative;
	padding-left: 2rem;
	line-height: 1.5;
}

.woocommerce-error li:last-child {
	margin-bottom: 0;
}

/* Error Icon for each item */

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

/* Error Links */
.woocommerce-error li a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	display: block;
	padding: 0.25rem 0;
	border-radius: 6px;
	position: relative;
}

.woocommerce-error li a:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	padding-left: 0.5rem;
	transform: translateX(5px);
}

/* Strong field names */
.woocommerce-error li a strong {
	color: #ffffff;
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Close button for dismissible notices */
.woocommerce-NoticeGroup .notice-dismiss {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: #ffffff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	font-weight: 900;
}

.woocommerce-NoticeGroup .notice-dismiss:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.woocommerce-NoticeGroup .notice-dismiss::before {
	content: '×';
}

/* Alternative styles for different contexts */

/* Warning Notice */
.woocommerce-NoticeGroup.warning [role="alert"] {
	background: linear-gradient(135deg, #f39c12, #f4d03f);
	box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
}

.woocommerce-NoticeGroup.warning [role="alert"]:hover {
	box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

/* Info Notice */
.woocommerce-NoticeGroup.info [role="alert"] {
	background: linear-gradient(135deg, #3498db, #5dade2);
	box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.woocommerce-NoticeGroup.info [role="alert"]:hover {
	box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

/* Compact variant */
.woocommerce-NoticeGroup.compact [role="alert"] {
	padding: 1rem 1.25rem 1rem 2.5rem;
	font-size: 0.9rem;
}

.woocommerce-NoticeGroup.compact .woocommerce-error li {
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
}

.woocommerce-NoticeGroup.compact .woocommerce-error li::before {
	width: 16px;
	height: 16px;
	font-size: 0.8rem;
}

/* Multiple errors counter */
.woocommerce-NoticeGroup [role="alert"]::after {
	content: attr(data-count) ' errors found';
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: none;
}

.woocommerce-NoticeGroup.show-counter [role="alert"]::after {
	display: block;
}

.my-account-wrapper {
	max-width: 600px;
	margin: 0 auto;
}

/* 404 Error Section */
.error-404 {
	margin-top: 80px;
	min-height: calc(100vh - 160px);
	background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 4rem 0;
}

/* Floating Background Elements */
.floating-toy {
	position: absolute;
	opacity: 0.1;
	animation: float 6s ease-in-out infinite;
	font-size: 2rem;
	color: var(--primary-color);
}

.floating-toy:nth-child(1) {
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}

.floating-toy:nth-child(2) {
	top: 60%;
	left: 15%;
	animation-delay: 2s;
}

.floating-toy:nth-child(3) {
	top: 20%;
	right: 10%;
	animation-delay: 4s;
}

.floating-toy:nth-child(4) {
	bottom: 30%;
	right: 20%;
	animation-delay: 1s;
}

.floating-toy:nth-child(5) {
	bottom: 10%;
	left: 30%;
	animation-delay: 3s;
}

@keyframes float {

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

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

.error-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	width: 100%;
}

/* Left Content */
.error-text {
	animation: slideInLeft 0.8s ease-out;
}

.error-number {
	font-size: 8rem;
	font-weight: 900;
	color: var(--primary-color);
	line-height: 0.8;
	margin-bottom: 1rem;
	text-shadow: 4px 4px 8px rgba(255, 107, 53, 0.2);
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

.error-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.error-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.error-description {
	color: var(--text-secondary);
	margin-bottom: 2.5rem;
	font-size: 1rem;
	line-height: 1.7;
}

.error-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Right Illustration */
.error-illustration {
	text-align: center;
	animation: slideInRight 0.8s ease-out 0.2s both;
}

.illustration-container {
	position: relative;
	display: inline-block;
	background: var(--white);
	border-radius: 2rem;
	padding: 3rem;
	box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
	max-width: 400px;
}

.lost-child {
	font-size: 12rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	animation: sway 3s ease-in-out infinite;
}

@keyframes sway {

	0%,
	100% {
		transform: rotate(-5deg);
	}

	50% {
		transform: rotate(5deg);
	}
}

.illustration-text {
	font-size: 1.1rem;
	color: var(--text-secondary);
	font-weight: 500;
}

.speech-bubble {
	position: relative;
	background: var(--light-orange);
	color: var(--primary-color);
	padding: 1rem 1.5rem;
	border-radius: 20px;
	margin-top: 1.5rem;
	font-weight: 600;
	font-size: 0.95rem;
}

.speech-bubble::before {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 15px solid var(--light-orange);
}

/* Popular Links Section */
.popular-links {
	background: var(--white);
	border-radius: var(--border-radius);
	padding: 2rem;
	margin-top: 3rem;
	box-shadow: var(--shadow);
	animation: slideInUp 0.8s ease-out 0.4s both;
}

.popular-links h3 {
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
	text-align: center;
}

.links-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.link-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem;
	background: var(--light-gray);
	border-radius: var(--border-radius);
	text-decoration: none;
	color: var(--text-secondary);
	transition: var(--transition);
	text-align: center;
}

.link-item:hover {
	background: var(--light-orange);
	color: var(--primary-color);
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.link-item i {
	font-size: 2rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.link-item span {
	font-size: 0.9rem;
	font-weight: 500;
}

/* Size chart */
.size-chart {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
	overflow: hidden;
	margin: 2rem 0;
}

.size-chart-header {
	background: linear-gradient(45deg, #FF6B35, #FF8C42);
	color: #ffffff;
	padding: 1.5rem;
	text-align: center;
}

.size-chart-header h3 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
}

.size-chart-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

.size-chart-table th {
	background: #f8f9fa;
	color: #2C2C2C;
	font-weight: 600;
	padding: 1rem;
	text-align: center;
	border-bottom: 2px solid #FF6B35;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.size-chart-table td {
	padding: 0.875rem 1rem;
	text-align: center;
	border-bottom: 1px solid #e9ecef;
	color: #2C2C2C;
	font-weight: 500;
}

.size-chart-table tbody tr:hover {
	background: #fff5f2;
}

.size-chart-table tbody tr:nth-child(even) {
	background: #f8f9fa;
}

.size-chart-table tbody tr:nth-child(even):hover {
	background: #fff5f2;
}

.size-column {
	background: #FFE0B2 !important;
	font-weight: 700;
	color: #E64A19;
}

.measurement-unit {
	font-size: 0.8rem;
	color: #666666;
	font-weight: 400;
}