body.kavani-theme {
	background: var(--kv-paper);
	color: var(--kv-ink);
	font-family: var(--font-en);
	direction: ltr;
	text-align: left;
}

html[dir="rtl"],
body.kavani-lang-fa,
body.lang-fa {
	font-family: var(--font-fa);
	direction: rtl;
	text-align: right;
}

html[dir="rtl"]{
	font-size: 1.1rem;
}

html[dir="ltr"],
body.kavani-lang-en,
body.lang-en {
	font-family: var(--font-en);
	direction: ltr;
	text-align: left;
}

.kavani-container {
	width: min(100% - 32px, 1240px);
	margin-inline: auto;
}

.kavani-site-loader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	background: var(--kv-paper);
	color: var(--kv-ink);
	opacity: 1;
	visibility: visible;
	transition: opacity .35s ease, visibility .35s ease;
}

.kavani-site-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.kavani-loader-mark {
	display: grid;
	gap: 18px;
	justify-items: center;
	font-weight: 900;
	letter-spacing: 0;
}

.kavani-loader-mark span {
	font-size: clamp(34px, 8vw, 72px);
	line-height: 1;
}

.kavani-loader-mark i {
	display: block;
	width: 96px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(45deg, transparent, var(--kv-gold), var(--kv-blue), transparent);
	background-size: 200% 100%;
	animation: kavani-loader-line 1s ease-in-out infinite;
}

@keyframes kavani-loader-line {
	0% {
		background-position: 100% 0;
	}

	100% {
		background-position: -100% 0;
	}
}

.kavani-topbar {
	position: static;
	z-index: 60;
	background: var(--kv-ink);
	color: #fff;
	font-size: 1em;
}

.kavani-topbar .kavani-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-block: 8px;
}

.kavani-topbar-note {
	font-weight: 700;
	letter-spacing: 0;
	opacity: .9;
}

.kavani-header {
	position: static !important;
	z-index: 50;
	background: rgba(255, 253, 249, .94);
}

.kavani-nav {
	z-index: 55;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 74px;
	background: rgba(255, 253, 249, .94);
	border-bottom: 1px solid var(--kv-line);
	backdrop-filter: blur(16px);
	transition: transform .24s ease, box-shadow .24s ease;
	will-change: transform;
}

.kavani-header.is-nav-fixed {
	padding-bottom: var(--kavani-nav-height, 74px);
}

.kavani-nav.is-fixed {
	position: fixed !important;
	top: 0 !important;
	left: 0;
	right: 0;
	width: 100%;
	max-width: none;
	margin-inline: 0;
	padding-inline: max(16px, calc((100% - 1240px) / 2));
	box-shadow: 0 12px 30px rgba(20, 20, 20, .08);
}

.kavani-nav.is-hidden {
	transform: translateY(-105%);
}

.kavani-nav.is-visible {
	transform: translateY(0);
}

.kavani-logo {
	color: var(--kv-ink);
	font-size: 32px;
	font-weight: 800;
	letter-spacing: 0;
	text-decoration: none;
}

.kavani-menu-list {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kavani-menu-list a {
	color: var(--kv-ink);
	font-size: 1.2em;
	font-weight: 650;
	text-decoration: none;
}

.kavani-menu-list a:hover,
.kavani-small-link:hover {
	color: var(--kv-red);
	text-decoration: none;
}

.kavani-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.kavani-search {
	min-width: 0;
}

.kavani-search input {
	width: 190px;
	height: 38px;
	border: 1px solid var(--kv-line);
	border-radius: 999px;
	background: #fff;
	padding: 0 14px;
	outline: none;
	text-align: inherit;
}

.kavani-lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 999px;
	background: rgba(255, 255, 255, .1);
	padding: 3px;
}

.kavani-lang-option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 30px;
	border-radius: 999px;
	color: rgba(255, 255, 255, .76);
	font-size: 1em;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	transition: background .2s ease, color .2s ease;
}

.kavani-lang-option:hover {
	color: #fff;
	text-decoration: none;
}

.kavani-lang-option.is-active {
	background: #fff;
	color: var(--kv-ink);
	box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.kavani-icon-link,
.kavani-mobile-toggle,
.kavani-music-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	border: 1px solid var(--kv-line);
	border-radius: 999px;
	background: #fff;
	color: var(--kv-ink);
	padding: 0 12px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.kavani-cart-link {
	gap: 7px;
}

.kavani-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 25px;
	height: 25px;
	border-radius: 999px;
	background: var(--kv-red);
	color: #fff;
	font-size: 18px;
}

.kavani-mobile-toggle {
	display: none;
	width: 42px;
	padding: 0;
	flex-direction: column;
	gap: 4px;
}

.kavani-mobile-toggle span {
	display: block;
	width: 17px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.kavani-hero {
	min-height: 600px;
	background: linear-gradient(-120deg, #fffdf9 0%,
			rgb(from var(--kv-gold) calc(r + 10) calc(g + 10) b / 0.3) 30%,
			rgb(from var(--kv-teal) calc(r + 50) calc(g + 20) calc(b + 100) / 0.5) 70%,
			rgb(from var(--kv-blue) r g calc(b + 10) / 1) 100%);
	border-bottom: 1px solid var(--kv-line);
}

.kavani-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 48px;
	align-items: center;
	padding-block: 62px;
}

.kavani-hero-copy h1 {
	margin: 10px 0 18px;
	font-size: clamp(20px, 5em, 150px);
	font-weight: 500;
	line-height: .86;
}

.kavani-hero-copy p:not(.kavani-overline) {
	max-width: 590px;
	color: #3d3a36;
	font-size: 1.5em;
}

.kavani-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.kavani-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: 999px;
	padding: 0 22px;
	font-weight: 800;
	text-decoration: none;
}

.kavani-button-dark {
	background: var(--kv-ink);
	color: #fff;
}

.kavani-button-light {
	background: #fff;
	color: var(--kv-ink);
	border: 1px solid var(--kv-line);
}

.kavani-hero-media {
	position: relative;
	height: 500px;
	overflow: hidden;
	border-radius: 200px/calc(var(--kv-radius) + 100px) calc(var(--kv-radius) + 25px);
	box-shadow: var(--kv-shadow);
	background: var(--kv-soft);
}

.kavani-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kavani-section {
	padding-block: 66px;
}

.kavani-section-heading {
	margin-bottom: 26px;
}

.kavani-section-heading h2,
.kavani-promo h2 {
	font-size: clamp(32px, 4vw, 54px);
	line-height: 1;
}

.kavani-section-row,
.kavani-promo-inner {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.kavani-overline {
	color: var(--kv-red);
	font-size: 1.25em;
	font-weight: 850;
	letter-spacing: 0;
	text-transform: uppercase;
}

.kavani-category-grid,
.kavani-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.kavani-category-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.kavani-category-row {
	box-sizing: border-box;
	display: flex;
	align-items: end;
	border-radius: var(--kv-radius);
	overflow: hidden;
	background: var(--tile-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	margin: 10px 0;
}

.kavani-category-row::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .25) 60%, transparent 100%);
	pointer-events: none;
}

.kavani-category-tile {
	box-sizing: border-box;
	position: relative;
	min-height: 178px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 7px;
	overflow: hidden;
	border-radius: var(--kv-radius);
	background: var(--tile-color);
	color: #fff;
	padding: 18px;
	text-decoration: none;
}

.kavani-category-parent-tile {
	min-width: 200px;
	min-height: 400px;
	background: transparent !important;
	flex-shrink: 0;
}

.kavani-category-thumb {
	box-sizing: border-box;
	position: relative;
	top: 0;
	left: 0;
	align-self: center;
	place-items: anchor-center;
	width: 100px;
	max-width: fit-content;
	height: auto;
	border-radius: 999px;
	overflow: hidden;
	z-index: 1;
	@media only screen and (max-width: 680px) {
		width: 50px;
	}
}

.kavani-category-thumb img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.kavani-category-tile span {
	position: relative;
	z-index: 1;
	font-size: 2em;
	font-weight: 800;
}

.kavani-category-tile small {
	position: relative;
	z-index: 1;
	opacity: .84;
}

.kavani-category-children {
	display: flex;
	flex: 1;
	gap: 8px;
	padding: 12px;
	position: relative;
	bottom: 0;
	z-index: 1;
	overflow-x: auto;
	height: 250px;
}

.kavani-category-child {
	min-width: 200px;
	min-height: 100px;
	flex-shrink: 0;
	font-size: 1em;
	box-shadow: 0px 0 20px 0px rgba(0, 0, 0, .5);
	@media only screen and (max-width: 680px) {
		min-width: 50px;
		max-height: 180px;
	}
}

.kavani-category-child span {
	font-size: 1.5em;
	font-weight: 600;
}

.kavani-product-card {
	overflow: hidden;
	border: 1px solid var(--kv-line);
	border-radius: var(--kv-radius);
	background: #fff;
}

.kavani-product-image,
.kavani-placeholder-image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	background: var(--kv-soft);
	overflow: hidden;
}

.kavani-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kavani-placeholder-image {
	background:
		linear-gradient(150deg, rgba(226, 61, 72, .18), rgba(9, 143, 134, .2)),
		repeating-linear-gradient(90deg, #f5efe8 0 18px, #fff 18px 36px);
}

.kavani-badge {
	position: absolute;
	inset: 12px 12px auto auto;
	border-radius: 999px;
	background: var(--kv-red);
	color: #fff;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 800;
}

.kavani-product-body {
	padding: 16px;
}

.kavani-product-body h3 {
	margin-bottom: 8px;
	font-size: 17px;
}

.kavani-product-body a {
	color: var(--kv-ink);
	text-decoration: none;
}

.kavani-product-price {
	margin-bottom: 12px;
	color: var(--kv-red);
	font-weight: 850;
}

.kavani-small-link {
	color: var(--kv-ink);
	font-weight: 800;
	text-decoration: none;
}

.kavani-promo {
	background: var(--kv-ink);
	color: #fff;
	padding-block: 66px;
}

.kavani-promo p:not(.kavani-overline) {
	max-width: 520px;
	color: rgba(255, 255, 255, .74);
	font-size: 18px;
}

.kavani-page {
	padding-block: 52px;
}

.kavani-content-card,
.kavani-empty-state {
	max-width: 880px;
	padding: 36px;
	border: 1px solid var(--kv-line);
	border-radius: var(--kv-radius);
	background: #fff;
}

.kavani-content-card h1,
.kavani-empty-state h1 {
	margin-bottom: 18px;
	font-size: clamp(34px, 5vw, 58px);
}

.kavani-entry {
	color: #333;
	font-size: 18px;
}

.kavani-entry>*+* {
	margin-top: 1em;
}

.kavani-featured-image {
	margin: 24px 0;
	overflow: hidden;
	border-radius: var(--kv-radius);
}

.kavani-shop-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 28px;
}

.kavani-shop-main .products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.kavani-shop-main .product {
	border: 1px solid var(--kv-line);
	border-radius: var(--kv-radius);
	background: #fff;
	padding: 14px;
}

.kavani-shop-sidebar,
.kavani-widget {
	border: 1px solid var(--kv-line);
	border-radius: var(--kv-radius);
	background: #fff;
	padding: 18px;
}

.kavani-footer {
	background: #f0ece5;
	border-top: 1px solid var(--kv-line);
	padding-block: 48px 20px;
}

.kavani-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 28px;
}

.kavani-footer h2,
.kavani-footer h3 {
	margin-bottom: 12px;
}

.kavani-footer a {
	display: block;
	color: var(--kv-ink);
	margin: 7px 0;
	text-decoration: none;
}

.kavani-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid rgba(22, 22, 22, .1);
	color: var(--kv-muted);
	font-size: 14px;
}

.kavani-language-gate {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	background: rgba(22, 22, 22, .72);
	padding: 20px;
	backdrop-filter: blur(10px);
}

.kavani-language-gate[hidden] {
	display: none;
}

.kavani-language-panel {
	width: min(100%, 480px);
	border-radius: var(--kv-radius);
	background: #fff;
	padding: 34px;
	box-shadow: var(--kv-shadow);
}

.kavani-language-panel h2 {
	margin: 8px 0 10px;
	font-size: 34px;
}

.kavani-language-panel p:not(.kavani-overline) {
	color: var(--kv-muted);
}

.kavani-language-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

html[dir="rtl"] .kavani-menu-list,
html[dir="rtl"] .kavani-actions,
html[dir="rtl"] .kavani-hero-actions,
html[dir="rtl"] .kavani-section-row,
html[dir="rtl"] .kavani-footer-bottom {
	direction: rtl;
}

html[dir="rtl"] .kavani-hero-copy p:not(.kavani-overline),
html[dir="rtl"] .kavani-promo p:not(.kavani-overline),
html[dir="rtl"] .kavani-entry,
html[dir="rtl"] .kavani-product-body,
html[dir="rtl"] .kavani-footer,
html[dir="rtl"] .woocommerce,
html[dir="rtl"] .woocommerce table,
html[dir="rtl"] .woocommerce table th,
html[dir="rtl"] .woocommerce table td,
html[dir="rtl"] .woocommerce form,
html[dir="rtl"] .woocommerce input,
html[dir="rtl"] .woocommerce textarea,
html[dir="rtl"] .woocommerce select {
	text-align: right;
}

html[dir="ltr"] .kavani-hero-copy p:not(.kavani-overline),
html[dir="ltr"] .kavani-promo p:not(.kavani-overline),
html[dir="ltr"] .kavani-entry,
html[dir="ltr"] .kavani-product-body,
html[dir="ltr"] .kavani-footer,
html[dir="ltr"] .woocommerce,
html[dir="ltr"] .woocommerce table,
html[dir="ltr"] .woocommerce table th,
html[dir="ltr"] .woocommerce table td,
html[dir="ltr"] .woocommerce form,
html[dir="ltr"] .woocommerce input,
html[dir="ltr"] .woocommerce textarea,
html[dir="ltr"] .woocommerce select {
	text-align: left;
}

@media (max-width: 1000px) {
	.kavani-nav {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 14px;
	}

	.kavani-menu {
		display: none;
		grid-column: 1 / -1;
		border-top: 1px solid var(--kv-line);
	}

	.kavani-menu.is-open {
		display: block;
	}

	.kavani-menu-list {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		padding-top: 12px;
		padding-bottom: 18px;
	}

	.kavani-menu-list a {
		display: block;
		border-radius: var(--kv-radius);
		padding: 11px 12px;
		background: #fff;
	}

	.kavani-actions {
		justify-content: flex-end;
	}

	.kavani-mobile-toggle {
		display: inline-flex;
	}

	.kavani-search {
		display: none;
	}

	.kavani-hero-grid,
	.kavani-shop-layout,
	.kavani-promo-inner {
		grid-template-columns: 1fr;
		display: grid;
	}

	.kavani-category-grid,
	.kavani-product-grid,
	.kavani-shop-main .products,
	.kavani-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {

	.kavani-topbar .kavani-container,
	.kavani-footer-bottom,
	.kavani-section-row {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.kavani-topbar-note {
		text-align: center;
	}

	.kavani-lang-switch {
		justify-content: center;
		width: 100%;
	}

	.kavani-lang-option {
		flex: 1;
	}

	.kavani-nav {
		min-height: 66px;
	}

	.kavani-logo {
		font-size: 22px;
	}

	.kavani-account-link span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

	.kavani-account-link::before {
		content: "AC";
		font-size: 11px;
	}

	.kavani-icon-link,
	.kavani-mobile-toggle {
		min-height: 36px;
		padding-inline: 10px;
	}

	.kavani-hero {
		min-height: auto;
	}

	.kavani-hero-grid {
		padding-block: 38px;
	}

	.kavani-hero-media {
		height: 360px;
	}

	.kavani-category-grid,
	.kavani-product-grid,
	.kavani-shop-main .products,
	.kavani-footer-grid {
		grid-template-columns: 1fr;
	}

	.kavani-content-card,
	.kavani-empty-state,
	.kavani-language-panel {
		padding: 24px;
	}
}

/* WooCommerce Specific Styles */

.woocommerce,
.woocommerce-page {
	font-family: var(--font-en);
	color: var(--kv-ink);
}

body.lang-fa .woocommerce,
body.lang-fa .woocommerce-page,
html[dir="rtl"] .woocommerce,
html[dir="rtl"] .woocommerce-page,
html.lang-fa .woocommerce,
html.lang-fa .woocommerce-page {
	font-family: var(--font-fa);
	direction: rtl;
	text-align: right;
}

/* Product Grid */
.products,
.kavani-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 24px;
}

.products .product,
.product-item {
	border: 1px solid var(--kv-line);
	border-radius: var(--kv-radius);
	background: #fff;
	overflow: hidden;
	transition: all 0.3s ease;
}

.products .product:hover,
.product-item:hover {
	box-shadow: var(--kv-shadow);
	transform: translateY(-4px);
}

/* Product Image */
.products .product .product-image a,
.woocommerce .product .product-image a {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--kv-soft);
}

.products .product .product-image img,
.woocommerce .product .product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.products .product:hover .product-image img,
.product-item:hover .product-image img {
	transform: scale(1.08);
}

/* Product Title */
.products h2,
.products .product-title,
.woocommerce .product h2,
.woocommerce-loop-product__title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 8px;
	color: var(--kv-ink);
}

/* Product Price */
.woocommerce .price,
.woocommerce-price-amount,
.products .price {
	color: var(--kv-red);
	font-weight: 800;
	font-size: 18px;
}

.price del {
	color: var(--kv-muted);
	font-weight: 600;
	text-decoration: line-through;
	margin-right: 6px;
}

/* Sale Badge */
.onsale {
	position: absolute;
	top: 12px;
	right: 12px;
	background: var(--kv-red);
	color: #fff;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 800;
	z-index: 2;
}

body.lang-fa .onsale {
	left: 12px;
	right: auto;
}

/* Add to Cart Button */
.add_to_cart_button,
.single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: 999px;
	padding: 0 22px;
	background: var(--kv-ink);
	color: #fff;
	border: none;
	font-weight: 800;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
}

.add_to_cart_button:hover,
.single_add_to_cart_button:hover {
	background: var(--kv-red);
	transform: translateY(-2px);
}

.add_to_cart_button.loading,
.single_add_to_cart_button.loading {
	opacity: 0.7;
	pointer-events: none;
}

/* Single Product Page */
.single-product-page .content,
.single-product .product {
	margin-bottom: 0;
}

.single-product .product-gallery {
	aspect-ratio: 4 / 5;
	background: var(--kv-soft);
	border-radius: var(--kv-radius);
	overflow: hidden;
	margin-bottom: 24px;
}

.single-product .gallery {
	display: grid;
	gap: 12px;
}

.single-product .gallery-item {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--kv-radius);
}

.single-product .gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.single-product .gallery-item:hover img {
	transform: scale(1.1);
}

.single-product .product-summary {
	padding: 24px;
	border: 1px solid var(--kv-line);
	border-radius: var(--kv-radius);
	background: #fff;
}

.single-product .product-summary h1 {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.2;
}

.single-product .product-summary p {
	color: var(--kv-muted);
	margin-bottom: 18px;
	line-height: 1.6;
}

.single-product .quantity {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	border: 1px solid var(--kv-line);
	border-radius: var(--kv-radius);
	width: fit-content;
}

.single-product .quantity input.qty {
	width: 60px;
	height: 42px;
	border: none;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
}

.single-product .quantity button {
	width: 42px;
	height: 42px;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.single-product .quantity button:hover {
	background: var(--kv-soft);
}

/* Product Tabs */
.woocommerce-tabs {
	margin-top: 48px;
}

.woocommerce-tabs .nav-tabs {
	display: flex;
	gap: 0;
	border-bottom: 1px solid var(--kv-line);
	margin-bottom: 24px;
}

.woocommerce-tabs .nav-tabs .nav-link {
	padding: 16px 24px;
	color: var(--kv-muted);
	font-weight: 700;
	border: none;
	border-bottom: 3px solid transparent;
	cursor: pointer;
	transition: all 0.3s;
}

.woocommerce-tabs .nav-tabs .nav-link.active {
	color: var(--kv-ink);
	border-bottom-color: var(--kv-red);
}

.woocommerce-tabs .nav-tabs .nav-link:hover {
	color: var(--kv-ink);
}

.woocommerce-tabs .tab-content {
	padding: 24px 0;
}

/* Review Form */
.woocommerce-review-form {
	border-top: 1px solid var(--kv-line);
	padding-top: 24px;
	margin-top: 24px;
}

.woocommerce-review-form .comment-form-rating {
	margin-bottom: 18px;
}

.woocommerce-review-form .star-rating {
	display: flex;
	gap: 4px;
	margin-bottom: 12px;
}

.woocommerce-review-form .star-rating span {
	font-size: 24px;
	color: #ddd;
	cursor: pointer;
	transition: color 0.2s;
}

.woocommerce-review-form .star-rating span.active {
	color: var(--kv-gold);
}

/* Cart Page */
.cart-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 24px;
}

.cart-table thead {
	border-bottom: 2px solid var(--kv-line);
}

.cart-table th {
	padding: 16px;
	text-align: left;
	font-weight: 800;
	color: var(--kv-ink);
}

.cart-table td {
	padding: 16px;
	border-bottom: 1px solid var(--kv-line);
	vertical-align: middle;
}

.woocommerce-cart-form__cart-item {
	display: grid;
	grid-template-columns: auto 80px 1fr 100px 100px 100px auto;
	gap: 16px;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid var(--kv-line);
}

.product-remove a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f0e8e0;
	color: var(--kv-ink);
	font-size: 20px;
	transition: all 0.3s;
	text-decoration: none;
}

.product-remove a:hover {
	background: var(--kv-red);
	color: #fff;
}

.product-thumbnail img {
	width: 80px;
	height: 100px;
	object-fit: cover;
	border-radius: var(--kv-radius);
}

/* Checkout Page */
.woocommerce-checkout .shop-table {
	width: 100%;
	margin-bottom: 24px;
}

.woocommerce-checkout form .form-row {
	display: grid;
	gap: 12px;
	margin-bottom: 18px;
}

.woocommerce-checkout form .form-row.form-row-wide {
	grid-column: 1 / -1;
}

.woocommerce-checkout form .form-row.form-row-first {
	grid-column: 1;
}

.woocommerce-checkout form .form-row.form-row-last {
	grid-column: 2;
}

.woocommerce-checkout form .form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	color: var(--kv-ink);
}

.woocommerce-checkout form input,
.woocommerce-checkout form textarea,
.woocommerce-checkout form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--kv-line);
	border-radius: var(--kv-radius);
	font-size: 15px;
	transition: all 0.3s;
}

.woocommerce-checkout form input:focus,
.woocommerce-checkout form textarea:focus,
.woocommerce-checkout form select:focus {
	outline: none;
	border-color: var(--kv-red);
	box-shadow: 0 0 0 3px rgba(226, 61, 72, 0.1);
}

/* Order Summary */
.order-review {
	background: var(--kv-soft);
	border-radius: var(--kv-radius);
	padding: 24px;
	margin-bottom: 24px;
}

.order-review table {
	width: 100%;
	margin-bottom: 18px;
}

.order-review table th,
.order-review table td {
	padding: 12px 0;
	border-bottom: 1px solid var(--kv-line);
	text-align: left;
}

.order-review .order-total {
	font-weight: 800;
	font-size: 18px;
	padding: 18px 0;
}

/* Related Products */
.related.products {
	margin-top: 48px;
	padding-top: 48px;
	border-top: 1px solid var(--kv-line);
}

.related.products h2,
.upsells.products h2 {
	margin-bottom: 24px;
	font-size: 28px;
	font-weight: 800;
}

/* Account Page */
.woocommerce-account {
	max-width: 1200px;
	margin: 0 auto;
}

.woocommerce-account .sidebar {
	margin-bottom: 32px;
}

.woocommerce-account .sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.woocommerce-account .sidebar li {
	border-bottom: 1px solid var(--kv-line);
}

.woocommerce-account .sidebar a {
	display: block;
	padding: 14px 18px;
	color: var(--kv-ink);
	text-decoration: none;
	transition: all 0.3s;
}

.woocommerce-account .sidebar a:hover,
.woocommerce-account .sidebar a.is-active {
	background: var(--kv-soft);
	color: var(--kv-red);
}

/* Pagination */
.woocommerce-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	border: 1px solid var(--kv-line);
	border-radius: var(--kv-radius);
	color: var(--kv-ink);
	text-decoration: none;
	transition: all 0.3s;
}

.page-numbers:hover,
.page-numbers.current {
	background: var(--kv-ink);
	color: #fff;
	border-color: var(--kv-ink);
}

/* Messages */
.woocommerce-message,
.woocommerce-error,
.woocommerce-notice {
	padding: 16px 18px;
	margin-bottom: 18px;
	border-radius: var(--kv-radius);
	border-left: 4px solid;
	animation: slideIn 0.3s ease;
}

.woocommerce-message {
	background: #e8f5e9;
	border-color: #4caf50;
	color: #2e7d32;
}

.woocommerce-error {
	background: #ffebee;
	border-color: #f44336;
	color: #c62828;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile Responsive */
@media (max-width: 1024px) {

	.products,
	.kavani-products-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.single-product .product-wrapper {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 768px) {

	.products,
	.kavani-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.woocommerce-cart-form__cart-item {
		grid-template-columns: auto 1fr auto;
		gap: 12px;
	}

	.product-thumbnail,
	.product-price,
	.product-subtotal {
		display: none;
	}

	.woocommerce-checkout form .form-row.form-row-first,
	.woocommerce-checkout form .form-row.form-row-last {
		grid-column: 1 / -1;
	}
}

@media (max-width: 480px) {

	.products,
	.kavani-products-grid {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart-form__cart-item {
		grid-template-columns: 1fr;
	}

	.product-remove,
	.product-thumbnail {
		display: flex;
		justify-content: center;
	}

	.woocommerce-pagination {
		flex-wrap: wrap;
	}
}