/*
Theme Name: Ojo Luxury
Theme URI: https://ojobrand.com
Author: Focuson Top
Author URI: https://ojobrand.com
Description: ثيم مخصص لعلامة "ojo" - مستنسخ بدقة متناهية من Timezone.jo (RTL Arabic)
Version: 3.1.9
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: ojo-luxury
Tags: e-commerce, custom-colors, custom-menu, custom-logo, rtl-language-support
*/

/* الخط المطلوب: DM Sans */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

/* ==========================================================================
   Design tokens (Timezone Clone)
   ========================================================================== */

:root {
	/* Colors */
	--tz-primary: #c5a059; /* Gold */
	--tz-accent: #b08d4b; /* Darker Gold */
	--tz-accent-hover: #8f723c;
	--tz-body-bg: #ffffff;
	--tz-body-dim: #f9f9f9; /* Neutral light gray */
	--tz-border: #e5e5e5;
	--tz-text-body: #333333; /* Dark gray */
	--tz-text-muted: #666666; /* Medium gray */
	
	/* Typography */
	--tz-font-main: 'DM Sans', sans-serif;
	
	/* Layout */
	--tz-container: 1420px;
	--tz-radius: 0px; /* Sharp edges */
	--tz-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	font-family: var(--tz-font-main);
	color: var(--tz-text-body);
	background: var(--tz-body-bg);
	font-size: 16px;
	line-height: 1.8;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: clip;
}

body {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	width: 100%;
	position: relative;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 15px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	color: #000000;
}

a {
	color: #000000;
	text-decoration: none;
	transition: color var(--tz-transition);
}

a:hover {
	color: var(--tz-text-body);
}

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

.tz-container, .ojo-container {
	width: 100%;
	max-width: var(--tz-container);
	margin: 0 auto;
	padding: 0 40px;
}

/* ==========================================================================
   Buttons (Angled Shine Effect)
   ========================================================================== */

.tz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--tz-accent);
	color: #fff;
	padding: 13px 20px;
	font-family: var(--tz-font-main);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	line-height: 1.42;
	border-radius: var(--tz-radius);
	transition: background-color var(--tz-transition);
}

.tz-btn:hover {
	background: var(--tz-accent-hover);
	color: #fff;
}

.tz-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 150%;
	width: 200%;
	height: 100%;
	transform: skewX(-20deg);
	background-image: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
}

.tz-btn:hover::after {
	animation: tz-shine 0.75s cubic-bezier(0.01, 0.56, 1, 1);
}

@keyframes tz-shine {
	0% { left: -100%; }
	100% { left: 150%; }
}

.tz-top-bar-static {
	background: var(--tz-body-bg);
	text-align: center;
	padding: 10px 0;
	font-size: 15px;
	font-weight: 700;
	color: #000;
	position: relative;
	height: 42px;
	overflow: hidden;
}
.tz-top-bar-static .tz-slide {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotateX(-90deg);
	opacity: 0;
	transition: transform 0.6s ease, opacity 0.6s ease;
	transform-origin: center center;
}
.tz-top-bar-static .tz-slide.is-active {
	transform: translateY(-50%) rotateX(0deg);
	opacity: 1;
}
.tz-top-bar-static .tz-slide.is-exiting {
	transform: translateY(-50%) rotateX(90deg);
	opacity: 0;
}

.tz-bottom-bar-static {
	background: var(--tz-body-bg);
	padding: 15px 0 10px 0;
	font-size: clamp(14px, 3.2vw, 17px);
	font-weight: 700;
	color: #000000;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	display: flex;
	align-items: center;
	direction: ltr; /* Keep ticker flow left-anchored regardless of site language, so the loop math below always tiles correctly */
}

.tz-bottom-bar__marquee {
	display: inline-flex;
	flex-shrink: 0;
	white-space: nowrap;
	animation: tz-scroll-marquee-bottom 20s linear infinite;
	will-change: transform;
}

.tz-bottom-bar__marquee span {
	flex-shrink: 0;
	padding: 0 40px;
}

@keyframes tz-scroll-marquee-bottom {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Header
   ========================================================================== */

.tz-header {
	background: var(--tz-body-bg);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.tz-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
}

.tz-header__left {
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.tz-header__actions {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	min-width: 0; /* Prevents flex/grid blowouts */
}

/* Desktop Navigation */
.tz-nav {
	display: flex;
}

.tz-desktop-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 25px;
	align-items: center;
}

.tz-desktop-menu > li {
	position: relative;
}

.tz-desktop-menu a {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	display: block;
	padding: 10px 0;
	color: var(--tz-text-heading);
}

/* Category dropdown overrides */
ul.tz-category-dropdown-list {
	flex-direction: column;
	gap: 0;
	align-items: stretch;
}
ul.tz-category-dropdown-list > li > a {
	padding: 10px 20px;
	font-size: 13px;
	text-transform: none;
	border-bottom: 1px solid var(--tz-border);
}
ul.tz-category-dropdown-list > li:last-child > a {
	border-bottom: none;
}
ul.tz-category-dropdown-list .menu-item-has-children > a {
	justify-content: space-between;
}
ul.tz-category-dropdown-list .sub-menu {
	top: 0;
	right: 100%; /* Open to the side! */
	transform: translateX(-10px);
}
ul.tz-category-dropdown-list li:hover > .sub-menu {
	transform: translateX(0);
}

.tz-desktop-menu a {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	display: block;
	padding: 10px 0;
	color: var(--tz-text-heading);
}

.tz-desktop-menu .menu-item-has-children > a {
	display: flex;
	align-items: center;
	gap: 5px;
}

.tz-desktop-menu .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 0.3s;
}

.tz-desktop-menu .menu-item-has-children:hover > a::after {
	transform: translateY(2px) rotate(-135deg);
}

.tz-desktop-menu .sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: var(--tz-body-bg);
	min-width: 220px;
	list-style: none;
	margin: 0;
	padding: 10px 0;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.tz-desktop-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.tz-desktop-menu .sub-menu li {
	position: relative;
}

.tz-desktop-menu .sub-menu a {
	padding: 8px 20px;
	font-size: 13px;
	font-weight: 500;
	text-transform: none;
	color: var(--tz-text-body);
}

.tz-desktop-menu .sub-menu a:hover {
	background: rgba(0,0,0,0.03);
	color: var(--tz-primary);
}

.tz-nav-dropdown {
	position: relative;
	display: inline-block;
}

.tz-nav-dropdown__toggle {
	background: var(--tz-primary);
	border: none;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	border-radius: var(--tz-radius);
	font-family: inherit;
	transition: background 0.3s ease;
}

.tz-nav-dropdown__toggle:hover {
	background: var(--tz-accent-hover);
}

.tz-nav-dropdown__menu {
	position: absolute;
	top: 100%;
	right: 0; /* RTL alignment */
	background: #fff;
	min-width: 200px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border-radius: var(--tz-radius);
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
	display: flex;
	flex-direction: column;
}

.tz-nav-dropdown:hover .tz-nav-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(15px); /* Add a little gap from header */
}

.tz-nav-dropdown__menu a {
	padding: 10px 20px;
	display: block;
	transition: background 0.2s ease, color 0.2s ease;
}

.tz-nav-dropdown__menu a:hover {
	background: var(--tz-body-bg);
	color: var(--tz-text-body);
}

.tz-logo {
	text-align: center;
}

.tz-logo img {
	max-height: 65px; /* Slightly larger for better visibility */
	width: auto;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.tz-logo h1 {
	margin: 0;
	font-size: 32px;
}



.tz-icon-link {
	color: #000000;
	display: flex;
	align-items: center;
	position: relative;
}

.tz-icon-link svg {
	width: 24px;
	height: 24px;
}

.tz-cart-badge {
	position: absolute;
	top: -5px;
	right: -8px;
	background: #d49b38;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

/* ==========================================================================
   Hero Banner
   ========================================================================== */

.ojo-hero-slider {
	position: relative;
	width: 100%;
	height: 60vh;
	max-height: 600px;
	min-height: 380px;
	display: flex;
	align-items: center;
	background-color: #111;
}

.ojo-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.ojo-slide.active {
	opacity: 1;
	visibility: visible;
}

.ojo-slide__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
	z-index: 1;
}

.ojo-slide__content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: #fff;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.ojo-slide__title {
	font-size: clamp(28px, 5vw, 48px);
	color: #ffffff;
	margin-bottom: 20px;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.ojo-slide__desc {
	font-size: clamp(14px, 2.5vw, 18px);
	margin-bottom: 30px;
	line-height: 1.8;
	color: #ffffff;
	font-weight: 500;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.ojo-slide__btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.ojo-slide__btn:hover {
	background-color: #ffffff;
	color: #000000;
}

.ojo-slider-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 2;
}

.ojo-dot {
	width: 25px;
	height: 3px;
	background-color: rgba(255,255,255,0.4);
	display: block;
	cursor: pointer;
}

.ojo-dot.active {
	background-color: #ffffff;
}

@media (max-width: 576px) {
	.ojo-hero-slider {
		height: 310px;
		min-height: 310px;
		max-height: 310px;
	}

	.ojo-slide__title {
		margin-bottom: 12px;
		font-size: 25px;
	}

	.ojo-slide__desc {
		margin-bottom: 18px;
		font-size: 13px;
		line-height: 1.6;
	}

	.ojo-slide__btn {
		padding: 9px 24px;
		font-size: 14px;
	}

	.ojo-slider-dots {
		bottom: 14px;
	}
}

/* ==========================================================================
   Features Bar
   ========================================================================== */

.ojo-benefits {
	position: relative;
	z-index: 10;
	width: 100%;
	padding: 22px 8px 20px;
	background: #fff;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	direction: rtl;
}

.ojo-benefits__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	width: min(1100px, 100%);
	margin: 0 auto;
}

.ojo-benefits__item {
	position: relative;
	display: flex;
	min-width: 0;
	padding: 0 14px;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
}

.ojo-benefits__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 1px;
	background: #e5e5e5;
}

.ojo-benefits__icon {
	display: flex;
	width: 24px;
	height: 24px;
	margin-bottom: 12px;
	align-items: center;
	justify-content: center;
	color: #d9993c;
}

.ojo-benefits__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ojo-benefits__item h3 {
	margin: 0 0 6px;
	color: #d9993c;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	text-transform: none;
}

.ojo-benefits__item p {
	max-width: 180px;
	margin: 0;
	color: #222;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
}

@media (max-width: 576px) {
	.ojo-benefits {
		padding: 20px 6px 18px;
	}

	.ojo-benefits__item {
		padding: 0 7px;
	}

	.ojo-benefits__icon {
		width: 20px;
		height: 20px;
		margin-bottom: 11px;
	}

	.ojo-benefits__item h3 {
		margin-bottom: 5px;
		font-size: 11px;
		white-space: nowrap;
	}

	.ojo-benefits__item p {
		max-width: 118px;
		font-size: 8px;
		line-height: 1.45;
	}

	.ojo-benefits__keep-line {
		white-space: nowrap;
	}
}

.ojo-features-mobile-wrapper { display: none; }
@media (max-width: 768px) {
	.ojo-features-desktop-wrapper { display: none !important; }
	.ojo-features-mobile-wrapper { display: block !important; }
}

.ojo-features-bar {
	background: #ffffff;
	padding: 25px 0;
	position: relative;
}

.ojo-features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5px;
	position: relative;
	z-index: 2;
}

.ojo-feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 5px;
	border-left: 1px solid #e5e5e5; /* Light border */
}

.ojo-feature-item:last-child {
	border-left: none;
}

.ojo-feature-icon {
	color: #d49b38;
	margin-bottom: 8px;
}

.ojo-feature-icon svg {
	width: 28px;
	height: 28px;
}

.ojo-feature-item h3 {
	font-size: clamp(12px, 3.5vw, 16px);
	color: #d49b38;
	margin-bottom: 4px;
	font-weight: 800;
}

.ojo-feature-item p {
	font-size: clamp(9px, 2.5vw, 11px);
	color: #999999;
	margin: 0;
	line-height: 1.4;
	font-weight: 500;
}

@media (max-width: 768px) {
	.ojo-features-bar {
		padding: 12px 0;
	}
	.ojo-feature-icon svg {
		width: 22px;
		height: 22px;
	}
}

/* ==========================================================================
   Collections Grid (The 3 boxes below hero)
   ========================================================================== */

.tz-collections {
	padding: 60px 0;
	background: var(--tz-body-bg);
}

.tz-collections-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.tz-collection-card {
	position: relative;
	background: var(--tz-body-dim);
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16/9;
	text-align: center;
	overflow: hidden;
}

.tz-collection-card img {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	opacity: 0.8;
	transition: transform 0.5s ease;
}

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

.tz-collection-card__title {
	position: relative;
	z-index: 2;
	background: #fff;
	color: var(--tz-text-body);
	padding: 10px 20px;
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.tz-section-header {
	text-align: center;
	margin-bottom: 40px;
}

.tz-section-header h2 {
	font-size: 30px;
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
}

.tz-section-header h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background: var(--tz-accent);
}

/* ==========================================================================
   Product Grid
   ========================================================================== */

.tz-products {
	padding: 60px 0;
}

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

.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after {
	display: none !important;
}

ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
}

.tz-product-card {
	text-align: center;
	position: relative;
	transition: transform var(--tz-transition), box-shadow var(--tz-transition);
	background: #fff;
	padding-bottom: 20px; /* Space for action button */
	border-radius: var(--tz-radius);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.tz-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.tz-product-card__img {
	aspect-ratio: 1/1;
	background: var(--tz-body-dim);
	margin-bottom: 15px;
	overflow: hidden;
	position: relative;
}

.tz-product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tz-product-card:hover .tz-product-card__img img {
	transform: scale(1.08);
}

.tz-product-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #e50000;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 8px;
	text-transform: uppercase;
}

.tz-product-card__brand {
	font-size: 12px;
	color: var(--tz-text-muted);
	text-transform: uppercase;
	margin-bottom: 5px;
}

.tz-product-card__title {
	font-size: 15px;
	color: var(--tz-text-body);
	margin-bottom: 10px;
	text-transform: none;
	font-weight: 400;
	transition: color var(--tz-transition);
	line-height: 1.4;
	/* Removed line-clamp to prevent weird truncation */
}

.tz-product-card:hover .tz-product-card__title {
	color: var(--tz-text-body);
}

.tz-product-card__price,
.tz-product-card__price .price {
	font-size: 16px !important;
	font-weight: 400 !important;
	color: #000000 !important;
}

.tz-product-card__price del,
.tz-product-card__price .price del {
	color: #555555 !important;
	font-size: 14px !important;
	margin-inline-end: 4px !important;
	font-weight: 400 !important;
}

.tz-product-card__price ins,
.tz-product-card__price .price ins {
	color: #e50000 !important;
	text-decoration: none !important;
	font-size: 16px !important;
}

/* Product Card Action / Add to Cart Overlay */
.tz-product-card__info {
	padding: 0 15px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.tz-product-card__info .tz-product-card__price {
	margin-top: auto;
}

.tz-product-card__action {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0 15px 15px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}

.tz-product-card:hover .tz-product-card__action {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.woocommerce ul.products li.product .tz-product-card__action .button,
.woocommerce ul.products li.product .tz-product-card__action .added_to_cart,
.tz-product-card__action .button,
.tz-product-card__action .added_to_cart {
	display: none !important;
}

.woocommerce ul.products li.product .tz-product-card__action .button:hover,
.woocommerce ul.products li.product .tz-product-card__action .added_to_cart:hover,
.tz-product-card__action .button:hover,
.tz-product-card__action .added_to_cart:hover {
	background: var(--tz-accent-hover) !important;
	color: #fff !important;
}

/* Fix for WooCommerce Grid Gaps */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
	clear: none !important;
}

/* ==========================================================================
   Split Banner Section
   ========================================================================== */

.tz-split-banner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 60px 0;
}

.tz-split-banner__img {
	background: var(--tz-body-dim);
	min-height: 500px;
	position: relative;
}

.tz-split-banner__img img {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}

.tz-split-banner__content {
	background: var(--tz-primary);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px;
	text-align: center;
}

.tz-split-banner__content h2 {
	color: #fff;
	font-size: 38px;
	margin-bottom: 20px;
}

.tz-split-banner__content p {
	font-size: 16px;
	color: rgba(255,255,255,0.8);
	margin-bottom: 30px;
}

/* ==========================================================================
   About Page
   ========================================================================== */

.ojo-about-page {
	padding-bottom: 80px;
}

.ojo-about-hero {
	height: 40vh;
	min-height: 300px;
}

.ojo-about-hero .ojo-ultra-hero__title {
	font-size: 3rem;
	margin-bottom: 10px;
}

.ojo-about-content-wrapper {
	max-width: 900px;
	margin: -60px auto 0;
	position: relative;
	z-index: 10;
	background: var(--tz-body-bg);
	padding: 50px 60px;
	border-radius: var(--tz-radius);
	box-shadow: 0 15px 40px rgba(0,0,0,0.05);
	border: 1px solid var(--tz-border);
}

.ojo-about-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--tz-text-body);
	text-align: center;
	margin-bottom: 50px;
}

.ojo-about-content p {
	margin-bottom: 20px;
}

.ojo-about-content p:last-child {
	margin-bottom: 0;
}

.ojo-about-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	text-align: center;
	border-top: 1px solid var(--tz-border);
	padding-top: 50px;
}

.ojo-feature-box h3 {
	font-size: 18px;
	color: var(--tz-text-body);
	margin-bottom: 15px;
	font-weight: 700;
}

.ojo-feature-box p {
	font-size: 14px;
	color: var(--tz-text-muted);
	line-height: 1.6;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
	.tz-header__inner {
		grid-template-columns: auto 1fr auto;
	}
	.tz-nav,
	.tz-nav-dropdown {
		display: none; /* Mobile uses side drawer instead */
	}
	.tz-collections-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.tz-product-grid,
	ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
	.tz-split-banner {
		grid-template-columns: 1fr;
	}
	.tz-split-banner__img {
		min-height: 300px;
	}
	.tz-split-banner__img img {
		object-position: center bottom;
	}
}

@media (max-width: 576px) {
	.tz-collections-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.tz-collection-card {
		aspect-ratio: 1 / 1;
	}
	.tz-collection-card__title {
		font-size: 13px;
		padding: 6px 10px;
		width: 90%;
	}
	.tz-product-grid,
	ul.products,
	.ojo-ultra-grid ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 15px !important;
	}
	.tz-product-card {
		padding-bottom: 10px;
	}
	.tz-product-card__info {
		padding: 0 10px;
	}
	.tz-product-card__brand {
		font-size: 10px;
		margin-bottom: 3px;
	}
	.tz-product-card__title {
		font-size: 12px;
		line-height: 1.3;
		margin-bottom: 5px;
		word-wrap: break-word;
	}
	.tz-product-card__price {
		font-size: 14px;
	}
	.tz-product-card__action {
		position: static;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		padding: 10px 10px 0;
	}
	.woocommerce ul.products li.product .tz-product-card__action .button, 
	.woocommerce ul.products li.product .tz-product-card__action .added_to_cart {
		padding: 8px !important;
		font-size: 11px !important;
		margin: 0 !important;
	}
	.tz-container, .ojo-container {
		padding: 0 20px;
	}
	.tz-hero h2 {
		font-size: 24px;
	}
}

/* ==========================================================================
   Footer
   ========================================================================== */

.tz-footer {
	background: var(--tz-body-bg);
	border-top: 1px solid var(--tz-border);
	padding: 60px 0 20px;
}

.tz-footer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1.5fr;
	gap: 40px;
	margin-bottom: 40px;
}

.tz-footer .custom-logo {
	max-height: 80px;
	width: auto;
	margin-bottom: 20px;
	display: block;
}

.tz-footer h4 {
	font-size: 14px;
	margin-bottom: 20px;
}

.tz-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.tz-footer ul li a {
	color: var(--tz-text-muted);
	font-size: 14px;
}

.tz-footer ul li a:hover {
	color: var(--tz-text-body);
}

.tz-footer__newsletter p {
	font-size: 14px;
	color: var(--tz-text-muted);
	margin-bottom: 15px;
}

.tz-footer__form {
	display: flex;
	gap: 10px;
}

.tz-footer__form input {
	flex: 1;
	padding: 12px 15px;
	border: 1px solid var(--tz-border);
	background: var(--tz-body-dim);
	font-family: var(--tz-font-main);
	outline: none;
}

.tz-footer__bottom {
	border-top: 1px solid var(--tz-border);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: var(--tz-text-muted);
}

@media (max-width: 992px) {
	.tz-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 576px) {
	.tz-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	.tz-footer__grid > div:nth-child(1),
	.tz-footer__grid > div:nth-child(4) {
		grid-column: span 2;
	}
	.tz-footer h4 {
		margin-bottom: 10px;
	}
	.tz-footer ul li {
		margin-bottom: 6px;
	}
	.tz-footer ul li a {
		font-size: 13px;
	}
	.tz-footer__bottom {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}
}

/* ==========================================================================
   Mobile Drawer & Header Responsive
   ========================================================================== */

.tz-mobile-toggle {
	display: none;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	color: #000000;
}

.tz-mobile-toggle svg {
	width: 28px;
	height: 28px;
}

.tz-hide-mobile {
	display: flex;
}

.tz-show-mobile {
	display: none;
}

/* Language Switcher Pill */
.tz-lang-switcher-pill {
	display: inline-flex;
	align-items: center;
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 30px;
	padding: 2px 8px 2px 2px;
	gap: 6px;
}

.tz-lang-switcher-pill a {
	font-size: 10px;
	font-weight: 700;
	color: #000;
	text-decoration: none;
	line-height: 1;
	transition: all 0.3s ease;
}

.tz-lang-switcher-pill a.is-active {
	background: #d49b38;
	color: #fff;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 992px) {
	.tz-header__inner {
		grid-template-columns: 1fr auto 1fr;
		direction: ltr;
	}
	.tz-header__inner > .tz-logo {
		direction: rtl;
	}
	.tz-header__left,
	.tz-header__actions {
		direction: ltr;
	}
	.tz-nav {
		display: none; /* Hidden on mobile, shown in drawer */
	}
	.tz-mobile-toggle {
		display: flex; /* Show hamburger */
		align-items: center;
	}
	.tz-header__left {
		display: flex;
		align-items: center;
	}
	.tz-hide-mobile {
		display: none !important; /* Hide account icon on mobile header */
	}
	.tz-show-mobile {
		display: flex !important;
	}
}

@media (max-width: 576px) {
	.tz-top-bar-static {
		padding: 8px 12px;
		font-size: 15px;
		font-weight: 500;
		line-height: 1.4;
	}

	.tz-header {
		padding: 14px 0;
	}

	.tz-header .tz-container {
		padding-inline: 14px;
	}

	.tz-header__inner {
		grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr);
		gap: 10px;
	}

	.tz-header__left {
		gap: 13px;
	}

	.tz-header__actions {
		gap: 13px;
		align-items: center;
	}

	.tz-logo img {
		max-width: 100px;
		max-height: 77px;
	}

	.tz-mobile-toggle svg {
		width: 24px;
		height: 24px;
	}

	.tz-icon-link svg {
		width: 20px;
		height: 20px;
	}

	.tz-lang-switcher-pill {
		padding: 1px 5px 1px 1px;
		gap: 4px;
	}

	.tz-lang-switcher-pill a {
		font-size: 9px;
	}

	.tz-lang-switcher-pill a.is-active {
		width: 22px;
		height: 22px;
	}

	.tz-cart-badge {
		top: -6px;
		right: -6px;
		min-width: 14px;
		height: 14px;
		font-size: 8px;
	}

	.tz-bottom-bar-static {
		padding: 11px 0; /* slightly more symmetrical padding for flex */
		font-size: 12px;
		line-height: normal; /* Fix iOS font rendering quirk */
	}

	.tz-bottom-bar__marquee span {
		padding-inline: 22px;
	}
}

/* Drawer Container */
.tz-mobile-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.3s, opacity 0.3s;
}

.tz-mobile-drawer.is-open {
	visibility: visible;
	opacity: 1;
}

/* Dark Overlay */
.tz-mobile-drawer__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

/* Drawer Content (Slides from Right in RTL) */
.tz-mobile-drawer__content {
	position: absolute;
	top: 0;
	left: -320px;
	width: 320px;
	max-width: 85vw;
	height: 100%;
	background: var(--tz-body-bg);
	box-shadow: 5px 0 15px rgba(0,0,0,0.1);
	padding: 20px;
	padding-bottom: 120px; /* Clears the fixed bottom menu */
	transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}

.tz-mobile-drawer.is-open .tz-mobile-drawer__content {
	left: 0;
}

/* Close Button */
.tz-mobile-drawer__close {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	color: var(--tz-text-body);
	align-self: flex-end;
	margin-bottom: 20px;
}

.tz-mobile-drawer__close svg {
	width: 24px;
	height: 24px;
}

/* Drawer Search */
.tz-mobile-drawer__search {
	margin-bottom: 30px;
}

.tz-mobile-drawer__search form {
	display: flex;
	border: 1px solid var(--tz-border);
}

.tz-mobile-drawer__search input {
	flex: 1;
	padding: 10px;
	border: none;
	background: var(--tz-body-dim);
	font-family: var(--tz-font-main);
	outline: none;
}

.tz-mobile-drawer__search button {
	background: var(--tz-accent);
	color: #fff;
	border: none;
	padding: 0 15px;
	cursor: pointer;
	font-weight: 700;
	font-family: var(--tz-font-main);
}

/* Drawer Nav Links */
.tz-mobile-drawer__nav {
	display: flex;
	flex-direction: column;
}

.tz-mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.tz-mobile-menu > li {
	border-bottom: 1px solid var(--tz-border);
}
.tz-mobile-menu > li:last-child {
	border-bottom: none;
}

.tz-mobile-menu li {
	position: relative;
}

.tz-mobile-menu a {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--tz-text-body);
	padding: 15px 0;
	display: block;
}

.tz-mobile-menu .menu-item-has-children {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.tz-mobile-menu .menu-item-has-children > a {
	flex: 1;
}

.tz-mobile-submenu-toggle {
	background: none;
	border: none;
	padding: 15px;
	color: #000000 !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	margin-left: -20px; /* Pushes the arrow strictly to the far left edge */
}

.tz-mobile-submenu-toggle svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.tz-mobile-submenu-toggle.is-active svg {
	transform: rotate(180deg);
}

/* ==========================================================================
   AJAX Side Cart - Ultra Luxury Design
   ========================================================================== */
.ojo-side-cart {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	pointer-events: none;
	visibility: hidden;
}

.ojo-side-cart.is-open {
	pointer-events: auto;
	visibility: visible;
}

.ojo-side-cart__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.ojo-side-cart.is-open .ojo-side-cart__overlay {
	opacity: 1;
}

.ojo-side-cart__drawer {
	position: absolute;
	top: 0;
	right: -100%; 
	width: 100%;
	max-width: 420px; /* Slightly wider for luxury spacing */
	height: 100%;
	background: #ffffff;
	box-shadow: -10px 0 30px rgba(0,0,0,0.15);
	display: flex;
	flex-direction: column;
	transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1); /* Ultra smooth slide */
}

.ojo-side-cart.is-open .ojo-side-cart__drawer {
	right: 0;
}

.ojo-side-cart__header {
	padding: 25px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #f0f0f0;
	background: #fff;
	z-index: 2;
}

.ojo-side-cart__title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 16px;
	color: #000;
	letter-spacing: 0.5px;
}

.ojo-side-cart__title svg {
	width: 22px;
	height: 22px;
}

.ojo-side-cart__close {
	background: #f9f9f9;
	border: none;
	cursor: pointer;
	padding: 8px;
	color: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.ojo-side-cart__close:hover {
	background: #eee;
	transform: rotate(90deg);
}

.ojo-side-cart__close svg {
	width: 18px;
	height: 18px;
}

.ojo-side-cart__content {
	flex: 1;
	overflow-y: auto;
	padding: 30px;
}

/* WooCommerce Mini Cart Overrides for Luxury */
.ojo-side-cart .widget_shopping_cart_content {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.ojo-side-cart .woocommerce-mini-cart {
	flex: 1;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Fix for A tag wrapping both image and text */
.ojo-side-cart .woocommerce-mini-cart-item {
	display: flex !important;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	padding: 20px 0 !important;
	border-bottom: 1px solid #f5f5f5;
}

.ojo-side-cart .woocommerce-mini-cart-item > a:not(.remove) {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 20px;
	font-weight: 600;
	color: #111;
	font-size: 15px;
	line-height: 1.4;
	text-decoration: none;
}

.ojo-side-cart .woocommerce-mini-cart-item img {
	width: 80px !important;
	height: 80px !important;
	border-radius: 6px;
	object-fit: cover;
	margin: 0 !important;
	box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.ojo-side-cart .woocommerce-mini-cart-item .quantity {
	display: none; /* Hide default quantity text since we replaced it */
}

/* Custom Mini Cart Quantity & Actions */
.ojo-side-cart .ojo-mini-cart-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-right: 100px; /* Offset the image width + gap */
	margin-top: -15px;
}

.ojo-side-cart .ojo-mini-cart-price {
	color: #000; /* Changed from var(--tz-primary) to black */
	font-weight: 700;
	font-size: 15px;
}

.ojo-side-cart .ojo-mini-cart-qty {
	display: flex;
	align-items: center;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
	height: 32px;
	background: #fff;
}

.ojo-side-cart .ojo-qty-btn {
	background: #fff;
	border: none;
	width: 28px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 16px;
	color: #333;
	transition: background 0.2s;
}

.ojo-side-cart .ojo-qty-btn:hover {
	background: #f5f5f5;
}

.ojo-side-cart .ojo-qty-input {
	width: 35px;
	height: 100%;
	border: none;
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	padding: 0;
	-moz-appearance: textfield;
}

.ojo-side-cart .ojo-qty-input::-webkit-outer-spin-button,
.ojo-side-cart .ojo-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.ojo-side-cart .woocommerce-mini-cart-item a.remove {
	position: absolute !important;
	top: 20px !important;
	left: 0 !important; /* RTL, so left is the end */
	color: #999 !important;
	background: transparent !important;
	font-size: 26px !important;
	font-weight: 300 !important;
	line-height: 1 !important;
	width: auto !important;
	height: auto !important;
	border: none !important;
	transition: color 0.3s;
}

.ojo-side-cart .woocommerce-mini-cart-item a.remove:hover {
	color: #d32f2f !important;
}

.ojo-side-cart .woocommerce-mini-cart__total {
	border-top: 1px solid #f0f0f0;
	padding-top: 25px;
	margin-bottom: 25px;
	font-weight: 700;
	font-size: 18px;
	display: flex;
	justify-content: space-between;
	color: #000;
}

.ojo-side-cart .woocommerce-mini-cart__buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 0;
}

.ojo-side-cart .woocommerce-mini-cart__buttons .button {
	display: block;
	text-align: center;
	padding: 12px;
	border-radius: 4px;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: 0.5px;
	transition: all 0.3s;
}

.ojo-side-cart .woocommerce-mini-cart__buttons .checkout {
	background: #000; /* Luxury Black */
	color: #fff;
	border: none;
}
.ojo-side-cart .woocommerce-mini-cart__buttons .checkout:hover {
	background: #333;
}
.ojo-side-cart .woocommerce-mini-cart__buttons .button:not(.checkout) {
	background: #fff;
	color: #000;
	border: 1px solid #000;
}
.ojo-side-cart .woocommerce-mini-cart__buttons .button:not(.checkout):hover {
	background: #f5f5f5;
}

/* Loading state for single add to cart */
.single-product .single_add_to_cart_button.loading {
	opacity: 0.7;
	cursor: not-allowed;
	pointer-events: none;
}

/* ==========================================================================
   Variation Swatches (Ultra-Luxury Edition)
   ========================================================================== */
.single-product .variations {
	width: 100%;
	margin-bottom: 35px;
	border: none;
}
.single-product .variations tbody tr {
	display: block;
	margin-bottom: 25px;
}
.single-product .variations th.label {
	display: block;
	text-align: right;
	padding: 0 0 12px 0;
	color: #000;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	width: 100%;
	background: transparent;
}
.single-product .variations td.value {
	display: block;
	padding: 0;
	width: 100%;
}
.ojo-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Base Swatch (Text/Capacity) */
.ojo-swatch {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 28px;
	border: 1px solid #e6e6e6;
	background: #fff;
	color: #111;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	min-width: 80px;
	user-select: none;
	box-sizing: border-box;
	border-radius: 2px; /* Very subtle, modern rounding */
}
.ojo-swatch:hover {
	border-color: #000;
}
.ojo-swatch.selected {
	border-color: #000;
	background: #000;
	color: #fff;
}

/* Premium Color Swatch (Ring Design) */
.ojo-swatch.is-color {
	padding: 0 !important;
	width: 38px !important;
	height: 38px !important;
	min-width: 38px !important;
	border-radius: 50% !important;
	border: 1px solid #e6e6e6;
	background-color: transparent !important; /* Keep outer ring transparent */
	text-indent: -9999px;
	position: relative;
	box-shadow: none;
}
/* The actual color inside the ring */
.ojo-swatch.is-color::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	right: 3px;
	bottom: 3px;
	border-radius: 50%;
	background-color: var(--swatch-color, #f5f5f5);
	transition: all 0.3s ease;
	border: 1px solid rgba(0,0,0,0.05); /* Slight definition for white colors */
}
.ojo-swatch.is-color:hover {
	border-color: #999;
}
.ojo-swatch.is-color.selected {
	border-color: #000;
	border-width: 1px;
}
.ojo-swatch.is-color.selected::after {
	top: 2px;
	left: 2px;
	right: 2px;
	bottom: 2px;
}

/* Clear Selection Link */
.ojo-reset-variations {
	font-size: 12px;
	color: #777;
	text-decoration: underline;
	display: inline-block;
	margin-top: 10px;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}
.ojo-reset-variations:hover {
	color: #000;
}

/* ==========================================================================
   Ultra-Luxury Price Typography (Single Product)
   ========================================================================== */
.single-product div.summary p.price,
.single-product div.summary span.price,
.single-product .woocommerce-variation-price .price {
	font-size: 26px; /* Slightly larger for premium feel */
	font-weight: 500;
	color: #000;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: flex-start; /* Ensure it aligns to the right in RTL */
	gap: 10px;
	letter-spacing: 0.5px;
}
/* Style the currency symbol to look delicate */
.woocommerce-Price-currencySymbol {
	font-size: 14px;
	font-weight: 400;
	color: #888;
	margin-right: 4px; /* RTL space between number and currency */
}
.single-product div.summary .price del,
.single-product .woocommerce-variation-price .price del {
	font-size: 16px;
	color: #a0a0a0;
	font-weight: 400;
	text-decoration: line-through;
	margin-left: 8px;
}
.single-product div.summary .price ins,
.single-product .woocommerce-variation-price .price ins {
	text-decoration: none;
	color: #d4af37; /* Luxury Gold for Sale Price */
	font-weight: 600;
}
.ojo-price-prefix {
	font-size: 13px;
	color: #777;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
/* Ensure the variation price injected dynamically looks perfect */
.woocommerce-variation-price {
	margin-top: 20px;
	margin-bottom: 25px;
	border-top: 1px solid #f0f0f0;
	padding-top: 20px;
}
.single-product div.summary .product_title {
	text-align: right;
	font-weight: 700;
	font-size: 28px;
	margin-bottom: 15px;
	color: #000;
}


.tz-mobile-menu .sub-menu {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0 15px 15px 0;
	width: 100%;
	flex-direction: column;
}

.tz-mobile-menu .sub-menu.is-open {
	display: flex;
}

.tz-mobile-menu .sub-menu a {
	font-size: 14px;
	font-weight: 400;
	padding: 8px 0;
	text-transform: none;
}


.tz-mobile-drawer__account {
	margin-top: 10px;
	color: var(--tz-text-muted) !important;
}

/* ==========================================================================
   Ultra Luxury Shop Redesign
   ========================================================================== */

/* Hero Section */
.ojo-ultra-hero {
	position: relative;
	height: 60vh;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	color: #fff;
}

.ojo-ultra-hero__bg {
	position: absolute;
	top: -10%;
	left: 0;
	width: 100%;
	height: 120%; /* For parallax */
	background-size: cover;
	background-position: center;
	z-index: 1;
	transform: translateZ(0);
}

.ojo-ultra-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
	z-index: 2;
}

.ojo-ultra-hero__content {
	position: relative;
	z-index: 3;
	max-width: 800px;
}

.ojo-ultra-hero__title {
	font-size: 3.5rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 20px;
	text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.ojo-ultra-hero__subtitle {
	font-size: 1.2rem;
	font-weight: 300;
	opacity: 0.9;
	line-height: 1.6;
}

/* Categories Scroller */
.ojo-ultra-categories {
	background: var(--tz-body-dim);
	padding: 20px 0;
	border-bottom: 1px solid var(--tz-border);
}

.ojo-ultra-cat-list {
	display: flex;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin: 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
}

.ojo-ultra-cat-list::-webkit-scrollbar {
	display: none;
}

.ojo-ultra-cat-list li {
	flex: 0 0 auto;
}

.ojo-ultra-cat-list a {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--tz-text-muted);
	text-transform: uppercase;
	padding: 10px 5px;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
}

.ojo-ultra-cat-list a:hover,
.ojo-ultra-cat-list a.active {
	color: var(--tz-text-body);
	border-bottom-color: var(--tz-primary);
}

/* Main Shop & Toolbar */
.ojo-ultra-main {
	padding: 24px 40px 60px;
}

@media (max-width: 768px) {
	.ojo-ultra-main {
		padding: 16px 20px 40px;
	}
}

/* ==========================================================================
   Shop Split Toolbar (Filters & Sort)
   ========================================================================== */
.ojo-ultra-toolbar-split {
	display: flex;
	align-items: stretch;
	min-height: 52px;
	border-top: 1px solid var(--tz-border);
	border-bottom: 1px solid var(--tz-border);
	margin: 0 -40px 20px -40px; /* Pull out of the main padding to be edge-to-edge */
	background: #fff;
	box-shadow: none !important;
	position: -webkit-sticky;
	position: sticky;
	top: var(--tz-header-height, 64px);
	z-index: 90;
}

@media (max-width: 768px) {
	.ojo-ultra-toolbar-split {
		margin: 0 -20px 20px -20px; /* Adjust for mobile padding */
	}
}

.ojo-ultra-filter-toggle,
.ojo-ultra-sort-wrap {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 52px;
	padding: 15px 0;
	background: transparent;
	width: 50%;
}

.ojo-ultra-filter-toggle {
	border: none;
	border-left: 1px solid var(--tz-border); /* Middle divider */
	font-family: var(--tz-font-main);
	font-size: 15px;
	color: var(--tz-text-heading);
	cursor: pointer;
	gap: 8px;
	box-shadow: none !important;
}

.ojo-ultra-sort-wrap .woocommerce-ordering {
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	box-shadow: none !important;
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
}

.ojo-ultra-sort-wrap .woocommerce-ordering select {
	border: none !important;
	background: transparent !important;
	font-family: var(--tz-font-main);
	font-size: 15px;
	color: var(--tz-text-heading);
	cursor: pointer;
	outline: none;
	appearance: none;
	padding: 0 20px !important;
	text-align: center;
	text-align-last: center;
	width: 100%;
	background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path fill="none" stroke="%23333" stroke-width="1.5" d="M1 1l4 4 4-4"/></svg>') !important;
	background-repeat: no-repeat !important;
	box-shadow: none !important;
}

html[dir="rtl"] .ojo-ultra-sort-wrap .woocommerce-ordering select {
	background-position: left 20px center !important;
}
html[dir="ltr"] .ojo-ultra-sort-wrap .woocommerce-ordering select {
	background-position: right 20px center !important;
}
html[dir="ltr"] .ojo-ultra-filter-toggle {
	border-left: none;
	border-right: 1px solid var(--tz-border);
}

.ojo-ultra-result-count {
	text-align: center;
	font-size: 15px;
	color: var(--tz-text-body);
	margin: 0 auto 30px;
	display: inline-block;
	font-weight: 400;
}
.ojo-ultra-result-count-wrapper {
	text-align: center;
}

/* Grid Override */
.ojo-ultra-grid {
	display: block;
}

.ojo-ultra-grid ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

/* Off-canvas Filter Drawer */
.ojo-ultra-filter-drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	width: 400px;
	max-width: 85vw;
	background: #fff;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RTL / Arabic */
html[dir="rtl"] .ojo-ultra-filter-drawer {
	right: 0;
	left: auto;
	transform: translateX(100%);
	box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
html[dir="rtl"] .ojo-ultra-filter-drawer.is-open {
	transform: translateX(0);
}

/* LTR / English */
html[dir="ltr"] .ojo-ultra-filter-drawer {
	left: 0;
	right: auto;
	transform: translateX(-100%);
	box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}
html[dir="ltr"] .ojo-ultra-filter-drawer.is-open {
	transform: translateX(0);
}

.ojo-ultra-filter-drawer__header {
	padding: 30px;
	padding-top: max(30px, env(safe-area-inset-top));
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--tz-border);
}

.ojo-ultra-filter-drawer__title {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ojo-ultra-filter-drawer__header h3 {
	margin: 0;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.ojo-ultra-filter-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
}

.ojo-ultra-filter-clear {
	font-size: 13px;
	color: var(--tz-text-muted);
	text-decoration: underline;
	white-space: nowrap;
}

.ojo-ultra-filter-close {
	background: none;
	border: none;
	font-size: 30px;
	color: var(--tz-text-body);
	cursor: pointer;
	line-height: 1;
}

.ojo-ultra-filter-drawer__content {
	padding: 0;
	overflow-y: auto;
	flex-grow: 1;
}

/* Accordion Widgets Styling */
.ojo-ultra-filter-drawer .ojo-widget {
	border-bottom: 1px solid var(--tz-border);
	margin: 0;
	padding: 0;
}

.ojo-ultra-filter-drawer .ojo-widget-title {
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	padding: 20px 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-transform: capitalize;
}

.ojo-ultra-filter-drawer .ojo-widget-title::after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 1.5px solid #000;
	border-bottom: 1.5px solid #000;
	transform: rotate(45deg);
	transition: transform 0.3s;
	margin-top: -3px;
}

.ojo-ultra-filter-drawer .ojo-widget.is-expanded .ojo-widget-title::after {
	transform: rotate(225deg);
	margin-top: 3px;
}

.ojo-ultra-filter-drawer .ojo-widget > *:not(.ojo-widget-title) {
	display: none;
	padding: 0 30px 20px 30px;
}

.ojo-ultra-filter-drawer .ojo-widget.is-expanded > *:not(.ojo-widget-title) {
	display: block;
}

/* Widget Specific Cleansups */
.ojo-ultra-filter-drawer .ojo-widget ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ojo-ultra-filter-drawer .ojo-widget ul li {
	padding: 8px 0;
	display: flex;
	align-items: center;
}
/* Square Checkbox Effect */
.ojo-ultra-filter-drawer .ojo-widget ul li::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #aaa;
    border-radius: 2px;
    margin-inline-end: 10px;
    background: #fff;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.ojo-ultra-filter-drawer .ojo-widget ul li:hover::before {
    border-color: #000;
}
.ojo-ultra-filter-drawer .ojo-widget ul li.chosen::before {
    background: #000;
    border-color: #000;
}
.ojo-ultra-filter-drawer .ojo-widget ul li a {
	color: var(--tz-text-body);
    font-size: 14px;
}

/* Price Slider Enhancements */
.ojo-widget .ui-slider-horizontal {
	background-color: #eee !important;
	height: 4px !important;
	border: none !important;
	margin: 20px 10px !important;
}
.ojo-widget .ui-slider-horizontal .ui-slider-range {
	background-color: #000 !important;
}
.ojo-widget .ui-slider-horizontal .ui-slider-handle {
	background-color: #000 !important;
	border: none !important;
	border-radius: 50% !important;
	width: 16px !important;
	height: 16px !important;
	top: -6px !important;
	cursor: ew-resize !important;
	outline: none !important;
}
.ojo-widget .price_slider_amount {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
    position: relative;
    gap: 20px;
}
/* Show the hidden inputs so users can type */
.ojo-widget .price_slider_amount input[type="text"] {
    display: block !important;
    width: 100%;
    font-size: 13px;
    border: 1px solid #ddd;
    padding: 8px 10px;
    border-radius: 4px;
    text-align: center;
    background: #fff;
    color: #333;
}
/* Hide the button and default static label */
.ojo-widget .price_slider_amount .button,
.ojo-widget .price_label {
	display: none !important;
}
/* Add 'to' text in between inputs */
.ojo-widget .price_slider_amount::before {
    content: 'to';
    font-size: 13px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #333;
    z-index: 1;
}

.ojo-ultra-filter-drawer__footer {
	padding: 20px 30px;
	background: #fff;
	border-top: 1px solid var(--tz-border);
}

.ojo-ultra-filter-submit {
	width: 100%;
	padding: 15px;
	background: #000; /* Black */
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: opacity 0.2s ease;
}

.ojo-ultra-filter-submit.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

/* ==========================================================================
   Custom AJAX Filter Drawer (price slider + attribute checkboxes)
   ========================================================================== */
.ojo-filter-section {
	border-bottom: 1px solid var(--tz-border);
}

.ojo-filter-section__title {
	width: 100%;
	background: none;
	border: none;
	margin: 0;
	padding: 18px 30px;
	font-size: 15px;
	font-weight: 700;
	color: var(--tz-text-body);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	text-align: start;
}

.ojo-filter-chevron {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid #000;
	border-bottom: 1.5px solid #000;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
	margin-top: -3px;
}

.ojo-filter-section.is-expanded .ojo-filter-chevron {
	transform: rotate(225deg);
	margin-top: 3px;
}

.ojo-filter-price-label {
	margin-inline-start: auto;
	font-weight: 400;
	font-size: 13px;
	color: var(--tz-text-muted);
}

.ojo-filter-section__body {
	display: none;
	padding: 0 30px 22px;
}

.ojo-filter-section.is-expanded .ojo-filter-section__body {
	display: block;
}

/* Checkbox rows */
.ojo-filter-check {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	cursor: pointer;
}

.ojo-filter-check input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.ojo-filter-check__box {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	border: 1px solid #aaa;
	border-radius: 2px;
	background: #fff;
	transition: all 0.2s ease;
}

.ojo-filter-check:hover .ojo-filter-check__box {
	border-color: #000;
}

.ojo-filter-check input[type="checkbox"]:checked + .ojo-filter-check__box {
	background: #000;
	border-color: #000;
}

.ojo-filter-check__label {
	font-size: 14px;
	color: var(--tz-text-body);
}

/* Price slider */
.ojo-price-slider {
	position: relative;
	height: 4px;
	margin: 30px 8px 20px;
	background: #eee;
	border-radius: 2px;
}

.ojo-price-slider__range {
	position: absolute;
	top: 0;
	bottom: 0;
	background: #000;
	border-radius: 2px;
}

.ojo-price-slider__handle {
	position: absolute;
	top: 50%;
	width: 18px;
	height: 18px;
	background: #000;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	cursor: grab;
	touch-action: none;
}

.ojo-price-slider__handle:active {
	cursor: grabbing;
}

.ojo-price-inputs {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	font-size: 13px;
	color: var(--tz-text-muted);
}

.ojo-price-input {
	width: 90px;
	padding: 8px 10px;
	border: 1px solid var(--tz-border);
	border-radius: 2px;
	font-family: var(--tz-font-main);
	font-size: 13px;
	text-align: center;
	color: var(--tz-text-body);
	-moz-appearance: textfield;
}

.ojo-price-input::-webkit-outer-spin-button,
.ojo-price-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.ojo-ultra-filter-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	z-index: 999998;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.ojo-ultra-filter-overlay.is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.ojo-ultra-pagination {
	margin-top: 60px;
	display: flex;
	justify-content: center;
}

.ojo-ultra-pagination .woocommerce-pagination ul {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: center !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none !important; /* Overrides WC default */
}

.ojo-ultra-pagination .woocommerce-pagination ul li {
	border: none !important; /* Overrides WC default */
	float: none !important; /* Overrides WC default */
	display: flex;
}

.ojo-ultra-pagination .woocommerce-pagination ul li a,
.ojo-ultra-pagination .woocommerce-pagination ul li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	min-width: 45px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 1px solid var(--tz-border);
	font-weight: 600;
	color: var(--tz-text-body);
	transition: all 0.3s ease;
	margin: 0 5px;
}

.ojo-ultra-pagination .woocommerce-pagination ul li span.current,
.ojo-ultra-pagination .woocommerce-pagination ul li a:hover {
	background: var(--tz-primary);
	color: #fff;
	border-color: var(--tz-primary);
}

@media (max-width: 1024px) {
	.ojo-ultra-grid ul.products { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
	.ojo-ultra-grid ul.products { grid-template-columns: repeat(2, 1fr); }
	.ojo-ultra-hero__title { font-size: 2.5rem; }
	.ojo-about-features { grid-template-columns: 1fr; gap: 40px; }
	.ojo-about-content-wrapper { padding: 40px 20px; }
}

@media (max-width: 576px) {
	/* Mobile Toolbar removed from media query since flex structure is now 50/50 naturally */
}

/* ==========================================================================
   Mobile Bottom Bar
   ========================================================================== */
.ojo-mobile-bar {
	display: none;
}

@media (max-width: 992px) {
	.ojo-mobile-bar {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: #fff;
		border-top: 1px solid var(--tz-border);
		box-shadow: 0 -5px 25px rgba(0,0,0,0.06);
		z-index: 9999;
		padding: 6px 12px;
		padding-bottom: max(6px, env(safe-area-inset-bottom));
		justify-content: space-between;
		align-items: center;
	}

	.ojo-mobile-bar__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		color: #777777;
		text-decoration: none;
		font-size: 10px;
		font-weight: 600;
		gap: 3px;
		flex: 1;
		background: none;
		border: none;
		padding: 4px 0;
		margin: 0;
		border-radius: 12px;
		cursor: pointer;
		font-family: var(--tz-font-main);
		transition: all 0.3s ease;
	}

	.ojo-mobile-bar__item svg {
		width: 20px;
		height: 20px;
		stroke: #777777;
		transition: all 0.3s ease;
	}

	.ojo-mobile-bar__item.active {
		background: #f2f2f2;
	}

	.ojo-mobile-bar__item.active,
	.ojo-mobile-bar__item.active svg,
	.ojo-mobile-bar__item:hover,
	.ojo-mobile-bar__item:hover svg {
		color: #1a1a1a;
		stroke: #1a1a1a;
	}

	.ojo-mobile-bar__cart-icon {
		position: relative;
		display: inline-block;
	}

	.ojo-mobile-bar__cart-icon .tz-cart-count {
		position: absolute;
		top: -6px;
		right: -8px;
		background: var(--tz-primary);
		color: #fff;
		font-size: 10px;
		font-weight: bold;
		width: 18px;
		height: 18px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 2px solid #fff;
	}

	body {
		padding-bottom: 58px !important;
	}
}

/* ==========================================================================
   Page Header (Cart, Checkout, Regular Pages)
   ========================================================================== */
.ojo-page-header {
	padding: 60px 0 30px;
	text-align: center;
	background: var(--tz-body-bg);
}
.ojo-page-header .ojo-eyebrow {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
	color: var(--tz-text-body);
	margin-bottom: 10px;
	font-weight: 700;
}
.ojo-page-header h1 {
	font-family: var(--tz-font-title);
	font-size: 42px;
	color: var(--tz-text-heading);
	margin: 0;
	line-height: 1.2;
}

@media (max-width: 768px) {
	.ojo-page-header {
		padding: 40px 0 20px;
	}
	.ojo-page-header h1 {
		font-size: 28px;
	}
}

/* ==========================================================================
   Luxury Cart Page Design
   ========================================================================== */

/* 1. Base Layout (Two Columns) */
.woocommerce-cart .woocommerce {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 30px 0 60px; /* reduced top margin since header has padding */
	align-items: flex-start; /* So the sidebar doesn't stretch */
}

/* 2. Left Column: Cart Form / Products List */
.woocommerce-cart .woocommerce-cart-form {
	flex: 1 1 65%; /* Take up 65% on desktop */
	min-width: 0;
}

/* Remove default table borders */
.woocommerce-cart .woocommerce-cart-form table.shop_table {
	border: none;
	border-radius: 0;
	border-collapse: collapse;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table th {
	border: none;
	border-bottom: 2px solid var(--tz-border);
	padding: 15px 10px;
	font-family: var(--tz-font-main);
	text-transform: uppercase;
	color: var(--tz-text-muted);
	font-size: 13px;
}

.woocommerce-cart .woocommerce-cart-form table.shop_table td {
	border: none;
	border-bottom: 1px solid var(--tz-border);
	padding: 30px 10px;
	vertical-align: middle;
}

/* Product Image */
.woocommerce-cart table.cart .product-thumbnail img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Product Name */
.woocommerce-cart table.cart .product-name a {
	font-family: var(--tz-font-title);
	font-size: 18px;
	font-weight: 700;
	color: var(--tz-text-heading);
	text-decoration: none;
}

/* Remove Icon (X) */
.woocommerce-cart table.cart a.remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--tz-body-dim);
	color: var(--tz-text-muted) !important;
	font-size: 20px;
	line-height: 1;
	transition: all 0.3s ease;
}

.woocommerce-cart table.cart a.remove:hover {
	background: #ff4757;
	color: #fff !important;
}

/* Quantity Input */
.woocommerce-cart .quantity input.qty {
	width: 60px;
	height: 40px;
	border: 1px solid var(--tz-border);
	border-radius: 5px;
	text-align: center;
	font-family: var(--tz-font-main);
	font-size: 15px;
	background: transparent;
	color: var(--tz-text-body);
}

/* Coupon & Update Cart Row */
.woocommerce-cart .actions {
	padding: 30px 10px !important;
	background: transparent !important;
	border: none !important;
}

.woocommerce-cart .coupon {
	display: flex;
	gap: 10px;
}

.woocommerce-cart .coupon input.input-text {
	width: 250px !important;
	height: 50px;
	border: 1px solid var(--tz-border);
	border-radius: var(--tz-radius);
	padding: 0 15px;
	font-family: var(--tz-font-main);
}

.woocommerce-cart .coupon button.button,
.woocommerce-cart .actions > button.button {
	height: 50px;
	padding: 0 30px;
	background: var(--tz-primary);
	color: #fff;
	border: none;
	border-radius: var(--tz-radius);
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.3s;
}

.woocommerce-cart .coupon button.button:hover,
.woocommerce-cart .actions > button.button:hover {
	background: var(--tz-accent-hover);
}

/* 3. Right Column: Cart Totals (Sticky Sidebar) */
.woocommerce-cart .cart-collaterals {
	flex: 1 1 30%;
	width: 100%;
	margin-top: 0;
	position: sticky;
	top: 100px; /* Sticky offset from top */
}

.woocommerce-cart .cart_totals {
	background: var(--tz-body-dim);
	border: 1px solid var(--tz-border);
	border-radius: var(--tz-radius);
	padding: 40px;
	width: 100% !important;
	float: none !important;
	box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.woocommerce-cart .cart_totals h2 {
	font-size: 22px;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--tz-border);
	font-family: var(--tz-font-title);
	text-transform: uppercase;
}

.woocommerce-cart .cart_totals table.shop_table {
	border: none;
	margin-bottom: 30px;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
	border: none;
	padding: 15px 0;
	border-bottom: 1px solid rgba(0,0,0,0.05);
}

.woocommerce-cart .cart_totals table.shop_table th {
	color: var(--tz-text-muted);
	font-weight: normal;
}

.woocommerce-cart .cart_totals table.shop_table td {
	text-align: left;
	font-weight: 700;
	color: var(--tz-text-heading);
}

.woocommerce-cart .cart_totals table.shop_table tr.order-total th,
.woocommerce-cart .cart_totals table.shop_table tr.order-total td {
	border-bottom: none;
	font-size: 18px;
	color: var(--tz-text-body);
}

/* Proceed to Checkout Button */
.woocommerce-cart .wc-proceed-to-checkout {
	padding: 0;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: block;
	width: 100%;
	text-align: center;
	background: var(--tz-primary) !important;
	color: #fff !important;
	padding: 18px 20px !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	border-radius: var(--tz-radius) !important;
	text-transform: uppercase;
	transition: transform 0.3s, background 0.3s;
	margin-bottom: 15px;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
	background: var(--tz-accent-hover) !important;
	transform: translateY(-2px);
}

/* ==========================================================================
   Luxury Checkout Page & Notices Design
   ========================================================================== */

/* WooCommerce Global Notices (Coupon, Info, Errors) */
.woocommerce-info,
.woocommerce-error,
.woocommerce-message {
	background: #fdfdfd !important;
	border: 1px solid var(--tz-border) !important;
	border-radius: var(--tz-radius) !important;
	padding: 20px !important;
	margin-bottom: 30px !important;
	color: var(--tz-text-body) !important;
	font-family: var(--tz-font-main) !important;
	font-size: 14px !important;
	box-shadow: 0 5px 15px rgba(0,0,0,0.02) !important;
	display: flex !important;
	align-items: center !important;
}
.woocommerce-info::before,
.woocommerce-error::before,
.woocommerce-message::before {
	display: none !important; /* Hide default icons */
}
.woocommerce-info a,
.woocommerce-error a,
.woocommerce-message a {
	color: var(--tz-primary) !important;
	font-weight: 700 !important;
	text-decoration: underline !important;
	margin-right: 10px;
}

/* Coupon Form */
.woocommerce form.checkout_coupon {
	border: 1px solid var(--tz-border) !important;
	border-radius: var(--tz-radius) !important;
	padding: 30px !important;
	margin-bottom: 40px !important;
	background: #fff !important;
}
.woocommerce form.checkout_coupon p.form-row {
	margin-bottom: 0 !important;
	display: flex !important;
	gap: 15px;
}
.woocommerce form.checkout_coupon input.input-text {
	width: 100% !important;
	padding: 15px !important;
	border: 1px solid var(--tz-border) !important;
	border-radius: var(--tz-radius) !important;
	font-family: var(--tz-font-main) !important;
}
.woocommerce form.checkout_coupon button.button {
	background: var(--tz-primary) !important;
	color: #fff !important;
	padding: 15px 30px !important;
	border-radius: var(--tz-radius) !important;
	border: none !important;
	font-weight: 700 !important;
	text-transform: uppercase;
}



.woocommerce-checkout form.checkout {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 30px 0 60px;
	align-items: flex-start;
}

/* 1. Left Column (Billing & Shipping Details) */
.woocommerce-checkout form.checkout .col2-set#customer_details {
	flex: 1 1 55%;
	width: 100%;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
.woocommerce-checkout form.checkout #customer_details .col-1,
.woocommerce-checkout form.checkout #customer_details .col-2 {
	float: none !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 0 30px 0 !important;
}

/* Headings */
.woocommerce-checkout h3 {
	font-family: var(--tz-font-title);
	font-size: 24px;
	color: var(--tz-text-heading);
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--tz-border);
}
.woocommerce-checkout #order_review_heading {
	display: none !important; /* Hide standard heading, we will style the review block directly */
}

/* Form Fields (Inputs) */
.woocommerce form .form-row,
.woocommerce-page form .form-row,
.woocommerce-checkout .form-row,
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce-checkout .form-row-wide {
	float: none !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	margin-bottom: 20px !important;
	padding: 0 !important;
	clear: both !important;
}
.woocommerce-checkout .form-row label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--tz-text-body);
	font-size: 14px;
	text-align: right;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
	width: 100% !important;
	max-width: 100% !important;
	padding: 15px !important;
	border: 1px solid var(--tz-border) !important;
	border-radius: var(--tz-radius) !important;
	background: #fdfdfd !important;
	color: var(--tz-text-heading) !important;
	font-family: var(--tz-font-main) !important;
	font-size: 15px !important;
	transition: all 0.3s ease !important;
	box-sizing: border-box !important;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
	border-color: #000000 !important;
	box-shadow: 0 0 0 1px #000000 !important;
	outline: none !important;
}
.woocommerce-checkout .form-row textarea {
	height: 120px !important;
	resize: vertical !important;
}

/* Select2 / Select boxes */
.woocommerce-checkout .select2-container .select2-selection--single {
	height: 50px !important;
	border: 1px solid var(--tz-border) !important;
	border-radius: var(--tz-radius) !important;
	padding: 10px !important;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 50px !important;
}

/* 2. Right Column (Order Summary & Payment) - Sticky */
.woocommerce-checkout form.checkout #order_review {
	flex: 1 1 35%;
	width: 100%;
	position: sticky;
	top: 100px;
	background: var(--tz-body-dim);
	padding: 40px;
	border-radius: var(--tz-radius);
	border: 1px solid var(--tz-border);
	box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.woocommerce-checkout #order_review::before {
	content: "ملخص الطلب والدفع";
	display: block;
	font-family: var(--tz-font-title);
	font-size: 22px;
	color: var(--tz-text-heading);
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--tz-border);
}

/* Order Review Table */
.woocommerce-checkout table.shop_table {
	border: none;
	border-radius: 0;
	width: 100%;
	margin-bottom: 30px;
}
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
	border: none;
	padding: 15px 0;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	text-align: right;
}
.woocommerce-checkout table.shop_table th {
	font-weight: normal;
	color: var(--tz-text-muted);
}
.woocommerce-checkout table.shop_table td {
	font-weight: 700;
	color: var(--tz-text-heading);
}
.woocommerce-checkout table.shop_table tr.order-total th,
.woocommerce-checkout table.shop_table tr.order-total td {
	border-bottom: none;
	font-size: 18px;
	color: var(--tz-text-body);
}

/* Payment Methods */
.woocommerce-checkout #payment {
	background: transparent;
	border-radius: 0;
	padding: 0;
}
.woocommerce-checkout #payment ul.payment_methods {
	padding: 0;
	border-bottom: 1px solid var(--tz-border);
	margin-bottom: 20px;
}
.woocommerce-checkout #payment ul.payment_methods li {
	list-style: none;
	padding: 15px 0;
	border-top: 1px solid var(--tz-border);
}
.woocommerce-checkout #payment ul.payment_methods li:first-child {
	border-top: none;
}
.woocommerce-checkout #payment ul.payment_methods li label {
	font-weight: 600;
	cursor: pointer;
	color: var(--tz-text-heading);
	margin-right: 10px; /* RTL spacing */
}
.woocommerce-checkout #payment div.payment_box {
	background: #fff;
	padding: 15px;
	border-radius: var(--tz-radius);
	border: 1px solid var(--tz-border);
	font-size: 13px;
	color: var(--tz-text-muted);
	margin-top: 10px;
}
.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: #fff;
}

/* Place Order Button */
.woocommerce-checkout #payment .place-order {
	padding: 0;
	margin: 0;
}
.woocommerce-checkout #payment .place-order button.button {
	display: block;
	width: 100%;
	background: var(--tz-primary) !important;
	color: #fff !important;
	padding: 20px !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	border-radius: var(--tz-radius) !important;
	text-transform: uppercase;
	transition: transform 0.3s, background 0.3s;
	border: none;
}
.woocommerce-checkout #payment .place-order button.button:hover {
	background: var(--tz-accent-hover) !important;
	transform: translateY(-2px);
}

/* Mobile Checkout */
@media (max-width: 992px) {
	.woocommerce-checkout form.checkout {
		flex-direction: column;
	}
	.woocommerce-checkout form.checkout #customer_details,
	.woocommerce-checkout form.checkout #order_review {
		flex: 1 1 100%;
		width: 100%;
	}
	.woocommerce-checkout form.checkout #order_review {
		position: relative;
		top: 0;
		padding: 25px 20px;
	}
	
	/* Fix default WC mobile checkout table styling */
	.woocommerce-checkout table.shop_table_responsive tr {
		display: flex;
		flex-direction: column;
		background: #fff;
		border-radius: var(--tz-radius);
		padding: 15px;
		margin-bottom: 10px;
		border: 1px solid var(--tz-border);
	}
	.woocommerce-checkout table.shop_table_responsive tr td,
	.woocommerce-checkout table.shop_table_responsive tr th {
		display: flex !important;
		justify-content: space-between;
		text-align: left !important;
		padding: 10px 0 !important;
		border-bottom: 1px solid rgba(0,0,0,0.05) !important;
	}
	.woocommerce-checkout table.shop_table_responsive tr td:last-child {
		border-bottom: none !important;
	}
	.woocommerce-checkout table.shop_table_responsive tr td::before {
		content: attr(data-title);
		font-weight: normal;
		color: var(--tz-text-muted);
		float: none;
		font-size: 13px;
	}
}

/* 4. Mobile Adjustments */
@media (max-width: 992px) {
	.woocommerce-cart .woocommerce {
		flex-direction: column;
	}
	.woocommerce-cart .woocommerce-cart-form,
	.woocommerce-cart .cart-collaterals {
		flex: 1 1 100%;
		width: 100%;
	}
	.woocommerce-cart .cart-collaterals {
		position: relative;
		top: 0;
	}
	.woocommerce-cart .coupon {
		flex-direction: column;
	}
	.woocommerce-cart .coupon input.input-text {
		width: 100% !important;
	}
	.woocommerce-cart .actions {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
	.woocommerce-cart .actions > button.button {
		width: 100%;
	}

	/* Overriding WooCommerce Default Mobile Cart Table */
	.woocommerce table.shop_table_responsive tr.cart_item {
		display: flex;
		flex-direction: column;
		position: relative;
		background: #fff;
		border-radius: var(--tz-radius);
		padding: 20px;
		margin-bottom: 20px;
		border: 1px solid var(--tz-border);
		box-shadow: 0 5px 20px rgba(0,0,0,0.03);
	}

	.woocommerce table.shop_table_responsive tr.cart_item td {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		text-align: left !important;
		border: none !important;
		padding: 12px 0 !important;
		border-bottom: 1px solid rgba(0,0,0,0.03) !important;
	}
	.woocommerce table.shop_table_responsive tr.cart_item td:last-child {
		border-bottom: none !important;
	}

	/* Force Image to show */
	.woocommerce-page table.shop_table_responsive tr.cart_item td.product-thumbnail {
		display: block !important;
		text-align: center !important;
		margin-bottom: 15px;
		border-bottom: none !important;
	}
	.woocommerce-page table.shop_table_responsive tr.cart_item td.product-thumbnail::before {
		display: none !important;
	}
	.woocommerce-page table.shop_table_responsive tr.cart_item td.product-thumbnail img {
		width: 120px;
		height: 120px;
		margin: 0 auto;
	}

	/* Remove Button */
	.woocommerce-page table.shop_table_responsive tr.cart_item td.product-remove {
		position: absolute;
		top: 15px;
		left: 15px; /* left side in RTL */
		padding: 0 !important;
		border: none !important;
		display: block !important;
	}
	.woocommerce-page table.shop_table_responsive tr.cart_item td.product-remove::before {
		display: none !important;
	}

	/* Pseudo elements */
	.woocommerce-page table.shop_table_responsive tr.cart_item td::before {
		content: attr(data-title);
		font-weight: normal;
		color: var(--tz-text-muted);
		float: none;
		font-size: 13px;
	}

}

/* ==========================================================================
   Intl Tel Input (Phone Flags Integration)
   ========================================================================== */
.woocommerce-checkout .iti {
	display: block !important;
	width: 100% !important;
}
.woocommerce-checkout .iti--allow-dropdown input,
.woocommerce-checkout .iti--allow-dropdown input[type=text],
.woocommerce-checkout .iti--allow-dropdown input[type=tel] {
	/* In RTL, the flag is on the right. Make room for flag + dial code */
	padding-right: 120px !important;
	padding-left: 15px !important;
	direction: ltr !important; 
}
.woocommerce-checkout .iti__selected-flag {
	background: transparent !important;
	padding: 0 15px 0 15px !important;
}
.woocommerce-checkout .iti__country-list {
	border: 1px solid var(--tz-border) !important;
	border-radius: var(--tz-radius) !important;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
	font-family: var(--tz-font-main) !important;
	direction: rtl !important;
	text-align: right !important;
	margin-top: 5px !important;
	width: 320px !important;
	max-width: 90vw !important;
}
.woocommerce-checkout .iti__country {
	padding: 12px 15px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	gap: 10px !important;
}
.woocommerce-checkout .iti__dial-code {
	color: var(--tz-text-muted) !important;
}

/* ==========================================================================
   Luxury Single Product Page Design
   ========================================================================== */

/* 1. Layout */
.single-product .ojo-products {
	padding-top: 40px; /* Space above product */
}
.single-product div.product {
	display: flex;
	flex-wrap: wrap;
	gap: 5%;
	align-items: flex-start;
}

/* 2. Gallery (Right side in RTL) */
.single-product .woocommerce-product-gallery {
	flex: 1 1 47%;
	max-width: 47%;
	position: sticky;
	top: 100px;
}
.single-product .woocommerce-product-gallery__trigger {
	/* Magnifying glass icon */
	top: 20px !important;
	right: 20px !important; /* Right in RTL */
	background: var(--tz-body-dim) !important;
	border-radius: 50% !important;
	width: 45px !important;
	height: 45px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.single-product .woocommerce-product-gallery__wrapper {
	border-radius: var(--tz-radius);
	overflow: hidden;
}
.single-product .woocommerce-product-gallery__image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--tz-radius);
	box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

/* Flexslider (Thumbnails) */
.single-product .flex-control-thumbs {
	display: flex !important;
	gap: 15px !important;
	margin-top: 15px !important;
	padding: 0 !important;
}
.single-product .flex-control-thumbs li {
	list-style: none !important;
	flex: 1;
	width: auto !important; /* override default WooCommerce inline styles */
}
.single-product .flex-control-thumbs li img {
	width: 100%;
	border-radius: 8px;
	opacity: 0.6;
	cursor: pointer;
	transition: opacity 0.3s;
	border: 1px solid transparent;
}
.single-product .flex-control-thumbs li img.flex-active,
.single-product .flex-control-thumbs li img:hover {
	opacity: 1;
	border-color: var(--tz-primary);
}

/* 3. Summary (Left side in RTL) */
.single-product .summary.entry-summary {
	flex: 1 1 47%;
	max-width: 47%;
	margin-top: 20px;
}
.single-product .product_title {
	font-family: var(--tz-font-title);
	font-size: 42px;
	font-weight: 700;
	color: var(--tz-text-heading);
	margin-bottom: 20px;
	line-height: 1.2;
}
.single-product .summary.entry-summary p.price {
	font-size: 24px !important;
	color: #000000 !important;
	font-weight: 700;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
}
.single-product .summary.entry-summary p.price del {
	font-size: 18px !important;
	color: #555555 !important;
	font-weight: 400;
	opacity: 0.7;
}
.single-product .summary.entry-summary p.price ins {
	text-decoration: none;
	color: #e50000 !important;
}
.single-product .woocommerce-product-details__short-description {
	font-size: 16px;
	color: var(--tz-text-body);
	line-height: 1.8;
	margin-bottom: 40px;
}

/* 4. Cart Form & Add to Cart Button */
.single-product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 40px 0;
	padding-top: 30px;
	border-top: 1px solid var(--tz-border);
}
.single-product .quantity {
	display: flex;
}
.single-product .quantity input.qty {
	width: 75px;
	height: 60px;
	border: 1px solid var(--tz-border);
	border-radius: var(--tz-radius);
	font-size: 18px;
	text-align: center;
	font-family: var(--tz-font-main);
	color: var(--tz-text-heading);
	background: transparent;
}
/* Hide Quantity Input on Single Product Page */
.single-product form.cart .quantity {
    display: none !important;
}
.single-product form.cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

/* Add to Cart Button Styling (White & Black) */
.single-product .single_add_to_cart_button {
	width: 100%;
	height: 48px;
	background: #fff !important;
	color: #000 !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	border: 1px solid #000 !important;
	border-radius: var(--tz-radius) !important;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.single-product .single_add_to_cart_button:hover {
	background: #f5f5f5 !important;
	transform: translateY(-2px);
}
.single-product .single_add_to_cart_button::after {
	display: none !important;
}

/* Buy Now Button Styling (Red) */
.ojo-buy-now-btn {
	width: 100%;
	height: 48px;
	background: #d32f2f !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	border: none !important;
	border-radius: var(--tz-radius) !important;
	transition: all 0.3s;
	cursor: pointer;
}
.ojo-buy-now-btn:hover {
	background: #b71c1c !important;
	transform: translateY(-2px);
}

/* Trust Badges below Add to Cart */
.ojo-ultra-trust-badges {
	display: flex;
	border: 1px solid var(--tz-border);
	border-radius: 8px;
	padding: 20px 0;
	margin: 30px 0;
	background: transparent;
}

.ojo-trust-badge {
	flex: 1;
	text-align: center;
	border-left: 1px solid var(--tz-border);
	padding: 0 10px;
}

.ojo-trust-badge:last-child {
	border-left: none;
}

.ojo-trust-badge__icon {
	color: var(--tz-primary); /* Use theme's primary gold */
	margin-bottom: 12px;
	display: flex;
	justify-content: center;
}

.ojo-trust-badge__icon svg {
	width: 40px;
	height: 40px;
}

.ojo-trust-badge__title {
	font-family: var(--tz-font-main);
	font-weight: 700;
	font-size: 15px;
	color: var(--tz-text-heading);
	margin-bottom: 5px;
}

.ojo-trust-badge__sub {
	font-size: 13px;
	color: var(--tz-text-muted);
}

@media (max-width: 576px) {
	.ojo-ultra-trust-badges {
		padding: 15px 0;
		margin: 20px 0;
	}
	.ojo-trust-badge {
		padding: 0 5px;
	}
	.ojo-trust-badge__icon {
		margin-bottom: 8px;
	}
	.ojo-trust-badge__icon svg {
		width: 28px;
		height: 28px;
	}
	.ojo-trust-badge__title {
		font-size: 11px;
		margin-bottom: 3px;
	}
	.ojo-trust-badge__sub {
		font-size: 9px;
		line-height: 1.2;
	}
}

/* 5. Product Meta */
.single-product .product_meta {
	padding-top: 25px;
	margin-top: 30px;
	border-top: 1px solid var(--tz-border);
	font-size: 14px;
	color: var(--tz-text-muted);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.single-product .product_meta a {
	color: var(--tz-text-heading);
	font-weight: 600;
}
.single-product .product_meta a:hover {
	color: var(--tz-text-body);
}

/* 6. Tabs (Description, Reviews) */
.single-product .woocommerce-tabs {
	width: 100%;
	margin-top: 80px;
	clear: both;
}
.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 40px;
	border-bottom: 2px solid var(--tz-border) !important;
	padding: 0 !important;
	margin-bottom: 40px !important;
	background: transparent !important;
}
.single-product .woocommerce-tabs ul.tabs::before {
	display: none !important;
}
.single-product .woocommerce-tabs ul.tabs li {
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	margin: 0 !important;
	padding: 0 0 15px 0 !important;
}
.single-product .woocommerce-tabs ul.tabs li::before, 
.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}
.single-product .woocommerce-tabs ul.tabs li a {
	font-size: 20px !important;
	font-family: var(--tz-font-title) !important;
	font-weight: 700 !important;
	color: var(--tz-text-muted) !important;
}
.single-product .woocommerce-tabs ul.tabs li.active {
	border-bottom: 3px solid var(--tz-primary) !important;
	margin-bottom: -2px !important;
}
.single-product .woocommerce-tabs ul.tabs li.active a {
	color: var(--tz-text-heading) !important;
}
.single-product .woocommerce-Tabs-panel {
	font-size: 16px;
	line-height: 1.8;
	color: var(--tz-text-body);
}
.single-product .woocommerce-Tabs-panel h2 {
	display: none; /* Hide default "Description" heading inside the tab content */
}

/* Reviews Customization */
#reviews #comments h2 {
	font-size: 24px;
	font-family: var(--tz-font-title);
	margin-bottom: 20px;
}
#reviews .commentlist {
	padding: 0;
}
#reviews .commentlist li {
	list-style: none;
	border-bottom: 1px solid var(--tz-border);
	padding: 20px 0;
	margin: 0;
}
#reviews .commentlist img.avatar {
	border-radius: 50%;
	width: 50px;
	height: 50px;
}
#reviews .comment-text {
	margin-right: 70px; /* RTL */
	border: none !important;
	padding: 0 !important;
}
#reviews .meta {
	font-size: 14px;
	color: var(--tz-text-muted);
}
#reviews .meta strong {
	color: var(--tz-text-heading);
}

/* 7. Related Products */
.single-product .related.products {
	width: 100%;
	margin-top: 80px;
	border-top: 1px solid var(--tz-border);
	padding-top: 60px;
}
.single-product .related.products > h2 {
	font-size: 36px;
	font-family: var(--tz-font-title);
	text-align: center;
	margin-bottom: 50px;
}

/* 8. Mobile Adjustments for Single Product */
@media (max-width: 992px) {
	.single-product div.product {
		flex-direction: column;
		gap: 30px;
	}
	.single-product .woocommerce-product-gallery, 
	.single-product .summary.entry-summary {
		flex: 1 1 100%;
		max-width: 100%;
		position: relative;
	}
	.single-product .woocommerce-product-gallery {
		margin-bottom: 30px !important;
	}
	.single-product .summary.entry-summary {
		margin-top: 20px !important;
		padding-top: 10px !important;
		clear: both !important;
		position: relative !important;
		z-index: 10;
		background: #fff;
		width: 100%;
	}
	.single-product .product_title {
		font-size: 32px;
	}
	.single-product .price {
		font-size: 28px !important;
	}
	.single-product .single_add_to_cart_button {
		width: 100%;
		flex: none; /* Break out of flex so it takes full width */
	}
	.single-product form.cart {
		flex-direction: column;
	}
	.single-product .quantity input.qty {
		width: 100%;
	}
	.single-product .woocommerce-tabs ul.tabs {
		overflow-x: auto;
		white-space: nowrap;
		gap: 20px;
	}
	.single-product .woocommerce-tabs ul.tabs li a {
		font-size: 16px !important;
	}
}

/* ==========================================================================
   Luxury Privacy Policy Page
   ========================================================================== */
.ojo-policy-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	margin: 60px 0 100px;
	align-items: flex-start;
}
.ojo-policy-sidebar {
	flex: 1 1 25%;
	max-width: 25%;
	position: sticky;
	top: 120px;
}
.ojo-policy-sidebar-inner {
	background: var(--tz-body-dim);
	border: 1px solid var(--tz-border);
	border-radius: var(--tz-radius);
	padding: 30px;
}
.ojo-policy-sidebar h3 {
	font-family: var(--tz-font-title);
	font-size: 22px;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--tz-border);
}
.ojo-policy-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* Removed duplicate .single-product .price rule */

.ojo-policy-nav li a {
	color: var(--tz-text-muted);
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s;
	display: block;
}
.ojo-policy-nav li a:hover {
	color: var(--tz-text-body);
	transform: translateX(-5px); /* RTL */
}
.ojo-policy-content {
	flex: 1 1 65%;
	max-width: 70%;
}
.ojo-policy-intro {
	font-size: 18px;
	font-weight: 600;
	color: var(--tz-text-heading);
	margin-bottom: 50px;
	line-height: 1.8;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--tz-border);
}
.ojo-policy-section {
	margin-bottom: 50px;
	scroll-margin-top: 120px; /* Offset for smooth scrolling */
}
.ojo-policy-section h2 {
	font-family: var(--tz-font-title);
	font-size: 26px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 15px;
}
.ojo-policy-num {
	color: var(--tz-text-body);
	font-size: 18px;
	font-weight: 800;
	background: rgba(197, 160, 89, 0.1);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.ojo-policy-section p {
	font-size: 16px;
	line-height: 2;
	color: var(--tz-text-body);
	margin-bottom: 15px;
}
.ojo-policy-section ul {
	margin: 0 0 20px 20px;
	padding: 0 20px;
}
.ojo-policy-section ul li {
	font-size: 16px;
	line-height: 2;
	color: var(--tz-text-body);
	margin-bottom: 10px;
}

@media (max-width: 992px) {
	.ojo-policy-wrapper {
		flex-direction: column;
		gap: 40px;
		margin: 40px 0;
	}
	.ojo-policy-sidebar,
	.ojo-policy-content {
		flex: 1 1 100%;
		max-width: 100%;
		position: static;
	}
	.ojo-policy-sidebar-inner {
		padding: 20px;
	}
}

/* ==========================================================================
   Luxury FAQ Page (Accordion)
   ========================================================================== */
.ojo-faq-wrapper {
	max-width: 800px;
	margin: 80px auto 120px;
	padding: 0 20px;
}
.ojo-faq-header {
	text-align: center;
	margin-bottom: 60px;
}
.ojo-faq-header h2 {
	font-family: var(--tz-font-title);
	font-size: 42px;
	color: var(--tz-text-heading);
	margin-bottom: 20px;
}
.ojo-faq-header p {
	font-size: 16px;
	color: var(--tz-text-muted);
	line-height: 1.8;
	max-width: 600px;
	margin: 0 auto;
}
.ojo-accordion {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.ojo-accordion-item {
	background: var(--tz-body-dim);
	border: 1px solid var(--tz-border);
	border-radius: var(--tz-radius);
	overflow: hidden;
}
.ojo-accordion-header {
	width: 100%;
	background: transparent;
	border: none;
	padding: 25px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--tz-font-title);
	font-size: 20px;
	font-weight: 600;
	color: var(--tz-text-heading);
	text-align: right; /* RTL */
	cursor: pointer;
	transition: all 0.3s;
}
.ojo-accordion-header:hover {
	color: var(--tz-text-body);
}
.ojo-accordion-icon {
	position: relative;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ojo-accordion-icon::before,
.ojo-accordion-icon::after {
	content: '';
	position: absolute;
	background-color: currentColor;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ojo-accordion-icon::before {
	width: 2px;
	height: 16px;
}
.ojo-accordion-icon::after {
	width: 16px;
	height: 2px;
}
/* Active State */
details.ojo-accordion-item[open] .ojo-accordion-header {
	color: var(--tz-text-body);
}
details.ojo-accordion-item[open] .ojo-accordion-icon {
	transform: rotate(180deg);
}

/* Keep gold for icons, borders and controls; all readable content stays dark. */
.tz-collection-card__title,
.tz-product-card__title,
.tz-product-card:hover .tz-product-card__title,
.tz-product-card__price,
.tz-nav-dropdown__menu a:hover,
.tz-footer ul li a:hover,
.tz-mobile-drawer__nav a,
.tz-mobile-drawer__nav a:hover,
.ojo-ultra-cat-list a:hover,
.ojo-ultra-cat-list a.active,
.ojo-ultra-toolbar__right button:hover,
.ojo-page-header .ojo-eyebrow,
.woocommerce-cart .cart_totals table.shop_table tr.order-total th,
.woocommerce-cart .cart_totals table.shop_table tr.order-total td,
.woocommerce-checkout table.shop_table tr.order-total th,
.woocommerce-checkout table.shop_table tr.order-total td,
.woocommerce-info a,
.woocommerce-error a,
.woocommerce-message a,
.single-product .price,
.single-product .product_meta a:hover,
.ojo-policy-num,
.ojo-policy-nav li a:hover,
.ojo-accordion-header:hover,
details.ojo-accordion-item[open] .ojo-accordion-header {
	color: #1a1a1a !important;
}

@media (max-width: 992px) {
	.ojo-mobile-bar__item.active,
	.ojo-mobile-bar__item:hover {
		color: #1a1a1a;
	}
}
details.ojo-accordion-item[open] .ojo-accordion-icon::before {
	transform: rotate(90deg) scaleY(0);
}
details.ojo-accordion-item > summary {
	list-style: none; /* Remove default triangle */
}
details.ojo-accordion-item > summary::-webkit-details-marker {
	display: none; /* Remove default triangle in Safari */
}
.ojo-accordion-content {
	/* When using details/summary, content naturally flows */
	overflow: hidden;
}
.ojo-accordion-content-inner {
	padding: 0 30px 30px 30px;
	color: var(--tz-text-body);
	font-size: 16px;
	line-height: 2;
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.ojo-whatsapp-float {
	position: fixed;
	bottom: 80px;
	left: 16px; /* On the left for RTL sites */
	right: auto;
	width: 48px;
	height: 48px;
	background-color: #25D366;
	color: #FFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	z-index: 9999;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ojo-whatsapp-float svg {
	width: 27px;
	height: 27px;
}
.ojo-whatsapp-float:hover {
	background-color: #128C7E;
	transform: scale(1.1);
	color: #FFF;
}
@media (min-width: 992px) {
	.ojo-whatsapp-float {
		bottom: 30px;
		left: 30px;
	}
}
/* ==========================================================================
   Shopify-Style Checkout Fields (Exact Match)
   ========================================================================== */
.woocommerce-checkout .woocommerce-billing-fields h3 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #000;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row {
	margin-bottom: 12px;
}

/* Hide labels to rely on placeholders like Shopify */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper label {
	display: none !important;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper input.input-text,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper select,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper textarea {
	width: 100%;
	height: 48px;
	padding: 0 14px;
	border: 1px solid #d9d9d9;
	border-radius: 6px;
	background-color: #ffffff;
	font-size: 14px;
	color: #333;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper input.input-text::placeholder,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper textarea::placeholder {
	color: #737373;
	opacity: 1;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper input.input-text:focus,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper select:focus,
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper textarea:focus {
	border-color: #197bbd; /* Shopify typical focus color */
	outline: none;
	box-shadow: 0 0 0 1px #197bbd;
}

/* Save info checkbox styling */
#ojo-save-info-wrapper {
	margin-top: 15px;
}
#ojo-save-info-wrapper label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
#ojo-save-info-wrapper input[type="checkbox"] {
	width: 18px;
	height: 18px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	cursor: pointer;
	accent-color: #000;
}
#ojo-save-info-wrapper span {
	font-size: 14px;
	color: #333;
	font-weight: 400;
}

/* Custom Sale Badge Color */
.woocommerce span.onsale,
.single-product span.onsale {
    background-color: #e50000 !important;
    color: #ffffff !important;
}

/* --- Full Screen Search Overlay --- */
.ojo-search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(8px);
	z-index: 999999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ojo-search-overlay.is-active {
	opacity: 1;
	visibility: visible;
}
.ojo-search-close {
	position: absolute;
	top: 30px;
	left: 30px;
	background: none;
	border: none;
	cursor: pointer;
	color: #000;
	padding: 10px;
	transition: transform 0.3s;
}
.ojo-search-close:hover {
	transform: scale(1.1);
}
.ojo-search-close svg {
	width: 30px;
	height: 30px;
}
.ojo-search-overlay__content {
	width: 90%;
	max-width: 700px;
	text-align: center;
	transform: translateY(20px);
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ojo-search-overlay.is-active .ojo-search-overlay__content {
	transform: translateY(0);
}
.ojo-search-title {
	font-size: 24px;
	font-weight: 600;
	color: #000;
	margin-bottom: 30px;
}
.ojo-search-form {
	width: 100%;
}
.ojo-search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	border-bottom: 2px solid #000;
}
.ojo-search-field {
	width: 100%;
	background: transparent;
	border: none;
	font-size: 20px;
	padding: 15px 15px 15px 50px;
	color: #000;
	outline: none;
	box-shadow: none !important;
}
.ojo-search-field:focus {
	border: none !important;
	box-shadow: none !important;
}
.ojo-search-field::placeholder {
	color: #999;
}
.ojo-search-submit {
	position: absolute;
	left: 5px;
	background: none;
	border: none;
	padding: 10px;
	color: #000;
	cursor: pointer;
}
.ojo-search-submit svg {
	width: 24px;
	height: 24px;
}
@media (max-width: 768px) {
	.ojo-search-title {
		font-size: 20px;
	}
	.ojo-search-field {
		font-size: 16px;
	}
}

/*========================================================================
 * EN LTR Overrides
 *========================================================================*/
html[dir="ltr"] body,
body.lang-en {
    direction: ltr !important;
    text-align: left !important;
}

body.lang-en .tz-header__inner,
body.lang-en .ojo-benefits__grid,
body.lang-en .tz-products .ojo-ultra-grid,
body.lang-en .tz-footer__grid {
    direction: ltr !important;
}

body.lang-en .tz-header__actions {
    margin-left: auto;
    margin-right: 0;
}

body.lang-en .tz-logo {
    text-align: left;
}

body.lang-en .ojo-slide__content,
body.lang-en .tz-split-banner__content,
body.lang-en .ojo-search-overlay__content {
    text-align: left !important;
}

/* Fix Benefits Section in English */
body.lang-en .ojo-benefits__item:not(:last-child)::after {
    left: auto;
    right: 0;
}

@media (max-width: 576px) {
    body.lang-en .ojo-benefits__item h3,
    body.lang-en .ojo-benefits__keep-line {
        white-space: normal;
    }
}

/* Fix Intl Tel Input in English (LTR) */
body.lang-en .woocommerce-checkout .iti--allow-dropdown input,
body.lang-en .woocommerce-checkout .iti--allow-dropdown input[type=text],
body.lang-en .woocommerce-checkout .iti--allow-dropdown input[type=tel] {
    padding-left: 120px !important;
    padding-right: 15px !important;
}

body.lang-en .woocommerce-checkout .iti__country-list {
    direction: ltr !important;
    text-align: left !important;
}

/* Fix Checkout Form Layout & Text Alignment for English */
body.lang-en .woocommerce-checkout #order_review::before {
    content: "Order Summary & Payment" !important;
    text-align: left !important;
}
body.lang-en .woocommerce-checkout table.shop_table th,
body.lang-en .woocommerce-checkout table.shop_table td,
body.lang-en .woocommerce-checkout table.shop_table tbody td,
body.lang-en .woocommerce-checkout table.shop_table tfoot td,
body.lang-en .woocommerce-checkout table.shop_table tfoot th,
body.lang-en .woocommerce-checkout #payment ul.payment_methods li,
body.lang-en .woocommerce-checkout .form-row label,
body.lang-en .woocommerce-checkout .woocommerce-additional-fields h3 {
    text-align: left !important;
}
body.lang-en .woocommerce-checkout #payment div.payment_box::before {
    left: 20px !important;
    right: auto !important;
}
