/* .woocommerce-page{
	padding-top: 40px;
} */

.price-section {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.price-section .price-note {
	white-space: nowrap;
	align-self: center;
}

.price-section .price-option {
	white-space: normal;
	flex-basis: 100%;
}

.related-products {
	margin-bottom: 60px;
	width: 100vw;
	margin-left: 0;
	padding: 0;
}

.related-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 852px;
}

/* Related Products - Shop Page Style */
.related-product-card {
	background: #fff;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	text-align: left;
	transition: all 0.3s ease;
	position: relative;
}

.related-product-card:hover {
	box-shadow: none;
}

.related-product-image-container {
	position: relative;
	overflow: hidden;
}

.related-product-image {
	width: 100%;
	height: 426px;
	margin: 0;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.related-product-image img {
	width: 100%;
	height: 100%;
	background: #ffffff;
	object-fit: contain;
	transition: transform 0.3s ease;
	padding: 40px;
}

.related-product-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.related-product-card:hover .related-product-info {
	opacity: 1;
	visibility: visible;
}

.related-product-title {
	font-size: 1.1rem;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 8px 0;
	color: #333;
	font-weight: 500;
	line-height: 1.3;
}

.related-product-price {
	color: #b18d51;
	font-size: 1rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	display: block;
	margin: 0;
}

/* Product badges for related products */
.product-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 4px 8px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	z-index: 2;
}

.sale-badge {
	background: #ff6b6b;
	color: white;
}

.featured-badge {
	background: #4ecdc4;
	color: white;
}



@media (max-width: 600px) {
	.related-products-grid {
		grid-template-columns: repeat(2, 1fr);
		height: 1000px;
	}

	.related-product-image {
		height: 250px;
	}
}

/* Full width shop header image box */
.shop-header-image {
	display: flex;
	position: relative;
	height: 400px;
	width: 100vw;
	/* full viewport width */
	max-width: 100vw;
	/* prevent overflow */
	margin-left: calc(-50vw + 50%);
	overflow: hidden;
	/*
	 * Android Chrome may inflate text in this absolutely-positioned header.
	 * Keep the type scale tied to the responsive values below so the title
	 * cannot unexpectedly grow into the breadcrumb.
	 */
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

/* Image styles remain the same */
.shop-header-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.no-image-bg {
	width: 100%;
	height: 100%;
	background-color: #E9E9E9;
	background-image: linear-gradient(to right, #E9E9E9, white);
}

/* Shop title text overlay remains the same */
.shop-title {
	position: absolute;
	font-family: "TOP_LUXURY-Regular", sans-serif;
	top: 59%;
	left: 3.5%;
	color: black;
	font-size: 44px;
	margin: 0;
	padding: 0 1rem;
	text-align: center;
	max-width: 90%;
	text-transform: uppercase;
}


/* Breadcrumb inside shop/category header */
.shop-breadcrumb {
	display: flex;
	position: absolute;
	top: 80%;
	left: 4.5vw;
	gap: 16px;
	/* transform: translateX(-50%); */
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	color: #555;
}

.shop-breadcrumb .crumbs a {
	color: #333;
	text-decoration: underline;
}

.shop-breadcrumb .crumbs a:hover {
	color: #8d6f43;
}

.shop-breadcrumb .crumb-sep {
	margin: 0 8px;
	color: #999;
}

.product-count {
	display: flex;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	align-items: flex-end;
	position: relative;
	min-width: 75px;
	text-align: center;
}

.product-count-mob {
	display: none;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	align-items: flex-end;
	position: relative;
	min-width: 75px;
	text-align: center;
}

.custom-product-grid {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(-50vw + 50%);
	/* padding: 2rem 1rem; */
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	box-sizing: border-box;
}

.custom-product-card {
	background: #fff;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	text-align: left;
	transition: all 0.3s ease;
	/* margin: 5px; */
	position: relative;
}

.custom-product-card:hover {
	box-shadow: none;
}

.custom-product-image-container {
	position: relative;
	overflow: hidden;
}

.custom-product-image {
	width: 100%;
	height: 426px;
	margin: 0;
	background: #FFFFFF;
	/* background: linear-gradient(135deg, rgba(255, 255, 255, 1) 31%, rgba(255, 240, 238, 0.7) 150%); */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.custom-product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
	min-height: 250px;
	padding: 40px;
}

@media (max-width: 767px) {
	.custom-product-image img {
		padding: 1px;
	}
}

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

.wishlist-heart {
	position: absolute;
	top: 12px;
	left: 12px;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 2;
	backdrop-filter: blur(10px);
}

.wishlist-heart__ti,
.wishlist-heart__ti * {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	pointer-events: none;
}

/* Make TI button clickable but visually hidden (keep our SVG icon). */
.wishlist-heart__ti a,
.wishlist-heart__ti button,
.wishlist-heart__ti .tinvwl_add_to_wishlist_button {
	opacity: 0 !important;
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
	pointer-events: auto;
	z-index: 2;
}

.wishlist-heart__ti .tinvwl_add_to_wishlist_text,
.wishlist-heart__ti .tinvwl-tooltip {
	display: none !important;
}

.wishlist-heart .wishlist-heart__icon {
	pointer-events: none;
}

.wishlist-heart:hover {
	transform: scale(1.1);
}

.wishlist-heart svg path {
	transition-duration: 0.6s;
}

.wishlist-heart:hover svg path {
	stroke: #f7b44f !important;
	stroke-width: 2;
	transition-duration: 0.6s;
}

.wishlist-heart.active svg path {
	stroke: #f7b44f !important;
	fill: none;
	stroke-width: 2;
}

/* Active state when TI marks the product already in wishlist. */
.wishlist-heart:has(.tinvwl-product-in-list) svg path,
.wishlist-heart:has(.tinvwl-product-in-list) .wishlist-heart__icon path {
	stroke: #f7b44f !important;
	stroke-width: 2;
}

.custom-product-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	/* background: linear-gradient(transparent, rgba(241, 223, 221, 0.9)); */
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.custom-product-card:hover .custom-product-info {
	opacity: 1;
	visibility: visible;
}

.image-placeholder {
	width: 100%;
	height: 100%;
	color: #999;
	font-size: 0.9rem;
	font-style: italic;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ececec;
	border-radius: 8px;
}

.custom-product-title {
	font-size: 1.1rem;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 8px 0;
	color: #333;
	font-weight: 500;
	line-height: 1.3;
}

.custom-product-price {
	color: #b18d51;
	font-size: 1rem;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	display: block;
	margin: 0;
}

.page-numbers {
	display: flex;
	gap: 16px;
}

.shop-pagination {
	justify-content: center;
	display: flex;
	padding-top: 20px;
	padding-bottom: 32px;
}

.shop-pagination .page-numbers {
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.shop-pagination a.page-numbers,
.shop-pagination span.page-numbers {
	align-items: center;
	border: 1px solid transparent;
	color: #4a4d60;
	display: inline-flex;
	height: 36px;
	justify-content: center;
	min-width: 36px;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shop-pagination span.page-numbers.current {
	background-color: #E6A791;
	border-color: #E6A791;
	color: #ffffff;
}

.shop-pagination a.page-numbers:hover {
	border-color: #E6A791;
	color: #000000;
}

.shop-content--archive {
	padding-top: 10px;
}

.shop-archive-layout {
	display: grid;
	grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px 24px;
	box-sizing: border-box;
}

.shop-archive-layout__filters {
	position: sticky;
	top: 110px;
	align-self: start;
}

.custom-product-grid--archive {
	width: 100%;
	max-width: none;
	margin-left: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	box-sizing: border-box;
}

.shop-archive-layout__products {
	min-width: 0;
}

.shop-filters {
	background: #ffffff;
	border: 1px solid #ece8e3;
	padding: 22px 20px 14px;
}

.shop-filters__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 18px;
	border-bottom: 1px solid #e6e0d8;
	margin-bottom: 4px;
}

.shop-filters__header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.shop-filters__title {
	margin: 0;
	font-family: "TOP_LUXURY-Regular", sans-serif;
	font-size: 26px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1d1d1d;
}

.shop-filters__clear {
	border: 0;
	background: transparent;
	color: #7a7369;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	text-decoration: underline;
	cursor: pointer;
	padding: 0;
}

.shop-filters__close {
	display: none;
	border: 0;
	background: transparent;
	color: #1d1d1d;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
}

.shop-filters__section {
	border-bottom: 1px solid #ece8e3;
	padding: 16px 0;
}

.shop-filters__section-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #222;
	text-align: left;
}

.shop-filters__chevron {
	width: 10px;
	height: 10px;
	border-right: 1.5px solid #222;
	border-bottom: 1.5px solid #222;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	flex: 0 0 auto;
}

.shop-filters__section.is-open .shop-filters__chevron {
	transform: rotate(-135deg);
}

.shop-filters__options {
	display: grid;
	gap: 10px;
	padding-top: 16px;
	overflow: hidden;
	max-height: 1400px;
	opacity: 1;
	transition: max-height 280ms ease, opacity 280ms ease, padding-top 280ms ease;
}

.shop-filters__section:not(.is-open) .shop-filters__options {
	max-height: 0;
	opacity: 0;
	padding-top: 0;
	pointer-events: none;
}

.shop-filters__option {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	line-height: 1.35;
	color: #3d3d3d;
}

.shop-filters__input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.shop-filters__box {
	width: 16px;
	height: 16px;
	border: 1.5px solid #7c7c7c;
	background: #fff;
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}

.shop-filters__input:checked+.shop-filters__box {
	border-color: #111;
}

.shop-filters__input:checked+.shop-filters__box::after {
	content: "";
	position: absolute;
	inset: 3px;
	background: #111;
}

.shop-filters__text {
	min-width: 0;
}

.shop-filters__count {
	color: #8c847a;
	white-space: nowrap;
	font-size: 13px;
}

/* Hierarchical category filter styles */
.shop-filters__category-hierarchical {
	border-bottom: 1px solid #ece8e3;
	padding: 16px 0;
}

.shop-filters__category-group {
	padding-bottom: 20px;
}

.shop-filters__category-group:last-child {
	padding-bottom: 0;
}

.shop-filters__category-heading {
	margin: 0 0 12px 0;
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #222;
	padding: 0;
}

.shop-filters__category-options {
	display: grid;
	gap: 10px;
	padding-left: 12px;
}

.shop-archive-layout .shop-pagination {
	padding-bottom: 0;
}

.shop-content--archive.is-loading .custom-product-grid--archive {
	opacity: 0.65;
	pointer-events: none;
}

.custom-product-grid--archive.is-filter-refreshing .custom-product-card {
	opacity: 0;
	transform: translateY(18px) scale(0.985);
}

.custom-product-grid--archive.is-filter-ready .custom-product-card,
.custom-product-grid--archive:not(.is-filter-refreshing) .custom-product-card.is-revealed {
	opacity: 1;
	transform: translateY(0) scale(1);
	transition:
		opacity 420ms ease,
		transform 420ms ease;
	transition-delay: var(--reveal-delay, 0ms);
}

.shop-content--archive.is-loading .shop-filters__clear,
.shop-content--archive.is-loading .shop-filters__section-toggle,
.shop-content--archive.is-loading .shop-filters__input {
	cursor: progress;
}

.shop-content--archive .no-products {
	padding: 36px 0;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	color: #555;
}

.shop-filters-fab {
	display: none;
}

.page-para {
	font-size: 21px;
	color: #000000;
	font-weight: 300;
	font-family: 'Montserrat';
	text-align: center;
	max-width: 695px;
	margin: 0 auto;
	margin-bottom: 80px;
	line-height: 37px;
}

.coll-cont {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: 0;
	padding: 0;
	overflow: hidden;
	box-sizing: border-box;
}

.coll-cont img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 360px;
}

.coll-text {
	position: absolute;
	top: 46px;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.coll-text h1 {
	color: white;
	font-weight: 400;
	font-size: 44px;
	font-family: "TOP_LUXURY-REGULAR";
	text-transform: uppercase;
}

.coll-text a {
	color: white;
	font-size: 16px;
	padding-top: 14px;
}

.desktop-hide {
	display: none !important;
}

/* Responsive styles */
@media (max-width: 1024px) {
	.custom-product-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.shop-archive-layout {
		grid-template-columns: 1fr;
		padding: 0 16px 20px;
	}

	.shop-archive-layout__filters {
		position: static;
	}

	.custom-product-grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.coll-text h1 {
		font-size: 32px;
		max-width: 200px;
	}

	.coll-text {
		top: 35%;
	}
}

@media (max-width: 600px) {
	.custom-product-image {
		min-height: 250px;
		height: fit-content;
	}

	.custom-product-grid--archive {
		grid-template-columns: 2, 1fr;
	}

	.shop-filters {
		padding: 18px 16px 12px;
	}

	.shop-filters__title {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.shop-filters-fab {
		display: inline-flex;
	}

	.shop-filters__close {
		display: inline-flex;
	}

	.shop-content--archive.is-filters-open .shop-filters-fab {
		display: none;
	}

	.shop-content--archive:not(.is-filters-open) .shop-filters__close {
		display: none;
	}

	.shop-filters-fab {
		position: fixed;
		left: 16px;
		bottom: 32px;
		z-index: 1250;
		align-items: center;
		justify-content: center;
		padding: 14px 20px;
		border: 0;
		border-radius: 999px;
		color: #111;
		background: #fff;
		font-family: "Montserrat", sans-serif;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	}

	.shop-archive-layout__filters {
		position: fixed;
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1240;
		transform: translateY(100%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.32s ease, opacity 0.32s ease;
		background: transparent;
		padding: 0;
	}

	.shop-content--archive.is-filters-open .shop-archive-layout__filters {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.shop-filters {
		width: 100%;
		max-height: min(82vh, 760px);
		overflow: auto;
		border-radius: 24px 24px 0 0;
		box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.16);
		padding-bottom: 22px;
	}

	.shop-filters-backdrop {
		position: fixed;
		inset: 0;
		background: rgba(16, 16, 16, 0.42);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.24s ease;
		z-index: 1230;
	}

	.shop-content--archive.is-filters-open .shop-filters-backdrop {
		opacity: 1;
		pointer-events: auto;
	}

	body.shop-filters-open {
		overflow: hidden;
	}
}


/* Responsive tweaks */
@media (max-width: 1024px) {
	ul.columns-4 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.desktop-hide {
		display: block !important;
	}
}

@media (max-width: 768px) {
	ul.columns-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shop-breadcrumb {
		left: 16px;
		top: auto;
		bottom: 28px;
		gap: 10px;
		max-width: calc(100% - 32px);
		line-height: 1.25;
	}

	.shop-title {
		top: 24px;
		left: 16px;
		right: 16px;
		max-width: none;
		padding: 0;
		font-size: clamp(2rem, 9vw, 2.5rem);
		line-height: 0.95;
		white-space: nowrap;
	}

	.product-count-mob {
		display: flex;
		position: absolute;
		bottom: 28px;
		right: 16px;
		line-height: 1.25;
	}

	.shop-header-image {
		height: 190px;
	}
}

@media (max-width: 480px) {
	ul.columns-4 {
		grid-template-columns: 1fr;
	}

	.shop-archive-layout {
		padding: 0 12px 16px;
	}
}

/* ******************************************************
						FAQ Page CSS
****************************************************** */

/* FAQ Section */
.faq-section {
	padding: 40px 0;
	background: #fff;
}

.faq-title {
	font-family: 'TOP_LUXURY-Regular', serif;
	font-size: 2.5rem;
	margin-bottom: 40px;
	text-align: start;
}

.faq-wrapper {
	position: relative;
}

/* Hide radio buttons */
.category-radio {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.faq-content {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 100px;
	align-items: start;
}

/* FAQ Categories */
.faq-categories {
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: sticky;
	top: 120px;
}

.category-label {
	display: block;
	padding: 15px 0;
	font-family: sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	border-bottom: 1px solid #e0e0e0;
	transition: text-shadow 0.4s ease;
}

.category-label:hover {
	text-shadow:
		0 0 1px currentColor,
		0 0 1px currentColor;
}

/* Active category styling */
#order-shipping:checked~.faq-content .faq-categories label[for="order-shipping"],
#exchanges-returns:checked~.faq-content .faq-categories label[for="exchanges-returns"],
#contact-us:checked~.faq-content .faq-categories label[for="contact-us"],
#my-account:checked~.faq-content .faq-categories label[for="my-account"],
#care-repair:checked~.faq-content .faq-categories label[for="care-repair"],
#warranty:checked~.faq-content .faq-categories label[for="warranty"] {
	color: #000;
	font-weight: 600;
}

/* FAQ Questions Groups */
.faq-questions {
	position: relative;
}

.faq-group {
	display: none;
}

/* Show FAQ groups based on selected category */
#order-shipping:checked~.faq-content .faq-questions .order-shipping-group {
	display: block;
}

#exchanges-returns:checked~.faq-content .faq-questions .exchanges-returns-group {
	display: block;
}

#contact-us:checked~.faq-content .faq-questions .contact-us-group {
	display: block;
}

#my-account:checked~.faq-content .faq-questions .my-account-group {
	display: block;
}

#care-repair:checked~.faq-content .faq-questions .care-repair-group {
	display: block;
}

#warranty:checked~.faq-content .faq-questions .warranty-group {
	display: block;
}

/* FAQ Items using Details/Summary */
.faq-item {
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 0;
}

.faq-item summary {
	list-style: none;
	padding: 20px 0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #333;
	transition: all 0.3s;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary:hover {
	color: #000;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-family: sans-serif;
}

.chevron {
	width: 16px;
	height: 16px;
	transition: transform 0.3s;
	flex-shrink: 0;
}

.faq-item[open] .chevron {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 0 20px 0;
	animation: fadeIn 0.3s ease-in-out;
}

.faq-answer p {
	font-family: sans-serif;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

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

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

/* Collections Section */
.collections-section {
	padding-top: 80px;
	background: #f8f8f8;
}

.related-title {
	font-family: 'TOP_LUXURY-Regular', serif;
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 60px;
	text-transform: uppercase;
}

.related-mob-title {
	font-family: 'TOP_LUXURY-Regular', serif;
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 20px;
	display: none;
	text-transform: uppercase;
}

.collections-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 8px;
}

.collection-item {
	position: relative;
	overflow: hidden;
	/* border-radius: 8px; */
	height: 860px;
}

/* .collection-item:hover img{
	transform: scale(1.1);
} */

.collection-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* transition: transform 0.5s ease; */
}

.collection-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	padding: 40px 30px;
	text-align: center;
}

.collection-overlay h3 {
	font-family: 'TOP_LUXURY-Regular', serif;
	font-size: 1.8rem;
	margin-bottom: 8px;
}

.collection-overlay a {
	color: white;
}

/* Focus and Accessibility */
button:focus-visible,
input:focus-visible,
a:focus-visible,
summary:focus-visible,
label:focus-visible {
	outline: 2px solid gray;
	outline-offset: 2px;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Animation for FAQ items */
.faq-item {
	transition: all 0.3s ease;
}

.faq-item:hover {
	background-color: #fafafa;
}

/* Focus styles for radio buttons */
#order-shipping:focus-visible~.faq-content .faq-categories label[for="order-shipping"],
#exchanges-returns:focus-visible~.faq-content .faq-categories label[for="exchanges-returns"],
#contact-us:focus-visible~.faq-content .faq-categories label[for="contact-us"],
#my-account:focus-visible~.faq-content .faq-categories label[for="my-account"],
#care-repair:focus-visible~.faq-content .faq-categories label[for="care-repair"],
#warranty:focus-visible~.faq-content .faq-categories label[for="warranty"] {
	outline: 2px solid gray;
	outline-offset: 2px;
}


/* ******************************************************
				Craftsmenship Page CSS
****************************************************** */

/* ===== HERO SECTION ===== */
.craft-hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

.craft-hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

.craft-hero-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(0deg,
			rgba(49, 48, 50, 1) 0%,
			rgba(49, 48, 50, 0.3) 37%,
			rgba(49, 48, 50, 0) 100%);
}

.craft-hero-content {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: #fff;
	z-index: 2;
}

.craft-hero-title {
	font-family: 'TOP_LUXURY-REGULAR', sans-serif;
	font-size: 44px;
	font-weight: 400;
	margin-bottom: 30px;
	letter-spacing: 2px;
}


/* ===== CRAFTSMANSHIP SECTION ===== */

.craftsmanship {
	padding-bottom: 100px;
	background: #fff;
	position: relative;
}

.section-title {
	font-family: 'TOP_LUXURY-REGULAR', sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 400;
	text-align: center;
	margin: 100px 0 60px 0;
	letter-spacing: 3px;
}

.section-description {
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.8;
	text-align: center;
	max-width: 900px;
	margin: 0 auto 80px;
	color: #333;
}

/* Craftsmanship Gallery - Exact Figma Layout */
.craftsmanship-gallery {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
}

.gallery-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gallery-column-center {
	padding-top: 90px;
	position: relative;
}

/* Decorative line above center column */
.gallery-column-center::before {
	content: '';
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 95px;
	background: #898989;
}

.gallery-item {
	aspect-ratio: 1;
	overflow: hidden;
	position: relative;
	background: #f7f3ee;
	/* border-radius: 8px; */
	/* box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: transform 0.5s ease; */
}

/* .gallery-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gallery-item-video {
	cursor: pointer;
}

.craft-gallery-video,
.craft-video-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.craft-gallery-video {
	z-index: 1;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.craft-video-poster {
	z-index: 2;
	transition: opacity 0.25s ease;
}

.craft-video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	width: 62px;
	height: 62px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	background: rgba(49, 48, 50, 0.45);
	backdrop-filter: blur(3px);
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: background 0.25s ease, opacity 0.25s ease;
}

.craft-video-play-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 53%;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid #fff;
	transform: translate(-50%, -50%);
}

.gallery-item-video:hover .craft-video-play-button {
	background: rgba(49, 48, 50, 0.65);
}

.gallery-item-video.is-playing .craft-gallery-video {
	z-index: 2;
	opacity: 1;
	pointer-events: auto;
}

.gallery-item-video.is-playing .craft-video-poster,
.gallery-item-video.is-playing .craft-video-play-button {
	opacity: 0;
	pointer-events: none;
}


/* ===== QUOTE SECTION ===== */
.quote-section {
	position: relative;
	padding: 200px 0 300px 0;
	overflow: hidden;
}

.quote-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

.quote-content {
	position: relative;
	z-index: 2;
	text-align: right;
	max-width: 80%;
	margin: 0 auto;
	padding: 0 20px;
}

.quote-text {
	font-family: 'TOP_LUXURY-REGULAR', sans-serif;
	font-size: clamp(1.5rem, 4vw, 3.5rem);
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 40px;
	color: #000;
}

.quote-author {
	font-family: 'TOP_LUXURY-REGULAR', sans-serif;
	font-size: clamp(1rem, 3vw, 2.3rem);
	font-weight: 400;
	color: #666;
	font-style: italic;
}


/* Responsive Design */
@media (max-width: 1024px) {
	.faq-content {
		grid-template-columns: 250px 1fr;
		gap: 40px;
	}

	.collections-grid {
		grid-template-columns: 1fr;
	}

	.experience-content,
	.newsletter-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.craftsmanship-gallery {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.faq-section {
		padding: 24px 0 40px;
	}

	.faq-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.faq-categories {
		position: sticky;
		top: 0;
		z-index: 2;
		background: #fff;
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 10px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding: 8px 15px 12px;
		margin: 0 -15px 10px;
		scrollbar-width: none;
	}

	.faq-categories::-webkit-scrollbar {
		display: none;
	}

	.category-label {
		flex: 0 0 auto;
		border: 1px solid #e0e0e0;
		border-radius: 999px;
		padding: 10px 14px;
		font-size: 13px;
		line-height: 1;
		text-align: center;
		white-space: nowrap;
	}

	#order-shipping:checked~.faq-content .faq-categories label[for="order-shipping"],
	#exchanges-returns:checked~.faq-content .faq-categories label[for="exchanges-returns"],
	#contact-us:checked~.faq-content .faq-categories label[for="contact-us"],
	#my-account:checked~.faq-content .faq-categories label[for="my-account"],
	#care-repair:checked~.faq-content .faq-categories label[for="care-repair"],
	#warranty:checked~.faq-content .faq-categories label[for="warranty"] {
		background: #111;
		border-color: #111;
		color: #fff;
		font-weight: 600;
	}

	.faq-item summary {
		padding: 16px 0;
		align-items: flex-start;
		font-size: 15px;
		line-height: 1.4;
	}

	.faq-question {
		gap: 12px;
		align-items: flex-start;
	}

	.chevron {
		margin-top: 2px;
	}

	.faq-answer p {
		font-size: 14px;
	}

	.section-title {
		font-size: 2rem;
	}

	.faq-title {
		font-size: 2rem;
		margin-bottom: 20px;
	}

	.craft-hero {
		min-height: 500px;
	}

	.craft-hero-content {
		bottom: 15%;
		padding: 0 20px;
	}

	.craftsmanship {
		padding: 60px 0;
	}

	/* Mobile Gallery Layout */
	.craftsmanship-gallery {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.gallery-column-center {
		padding-top: 0;
	}

	.gallery-column-center::before {
		display: none;
	}

	.quote-section {
		padding: 80px 0;
	}

	.quote-content {
		max-width: 100%;
	}

	.related-title {
		display: none;
	}

	.related-mob-title {
		display: block;
	}

}

@media (max-width: 480px) {

	.section-description {
		font-size: 16px;
	}

	.craftsmanship-gallery {
		padding: 0 15px;
	}
}


/* ******************************************************
				Contact us Page CSS
****************************************************** */

.contact-container {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 0;
	/* max-width: 1280px;
	gap: 24px; */
}

/* Main Section */
.image-section {
	min-width: 290px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 40px;
}

.image-section img {
	max-width: 1280px;
	width: 623px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
	background: #f4efe9;
	height: auto;
}

.contact-section {
	text-align: center;
	flex: 1 1 420px;
	padding: 24px 24px 36px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-section h2 {
	font-family: 'TOP_LUXURY-REGULAR', sans-serif;
	font-size: 2.2rem;
	font-weight: 400;
	margin-bottom: 16px;
	letter-spacing: 0.02rem;
}

.contact-section p {
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	max-width: 595px;
	text-align: center;
	justify-content: center;
	margin: 0 auto 70px auto;
	color: #000000;
	line-height: 1.8;
}

.contact-options {
	margin: 0 auto 120px auto;
	width: 100%;
	max-width: 640px;
	padding: 0 12px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
}

.contact-action-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.contact-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	background: #ffffff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	text-decoration: none;
	color: inherit;
	width: 100%;
	max-width: 540px;
	box-sizing: border-box;
}

.contact-action>.contact-icon,
.contact-action>svg.contact-icon {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	display: inline-block;
	color: #262626;
}

.contact-action .contact-text {
	flex: 1 1 auto;
	font-family: "Montserrat";
	font-size: 0.95rem;
	font-weight: 600;
	margin-left: 12px;
	text-align: left;
	color: #222;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-transform: uppercase;
}

.contact-action img {
	width: 25px;
	height: 23px;
}

.contact-action .arrow-ico {
	width: 7px;
	height: 11px;
}

.contact-dropdown {
	width: 100%;
}

/* Hide checkbox */
.dropdown-toggle {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.contact-action {
	cursor: pointer;
}

/* Arrow animation */
.arrow-ico {
	transition: transform 0.35s cubic-bezier(.2, .8, .2, 1);
}

.dropdown-toggle:checked+.contact-action .arrow-ico {
	transform: rotate(90deg);
}

/* Dropdown animation */
.dropdown-contact {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-6px);
	transition:
		max-height 0.5s cubic-bezier(.2, .8, .2, 1),
		opacity 0.3s ease,
		transform 0.3s ease;
	width: 100%;
	box-sizing: border-box;
}

/* When open */
.dropdown-toggle:checked~.dropdown-contact {
	max-height: 600px;
	/* enough for content */
	opacity: 1;
	transform: translateY(0);
}

/* Content styling */
.dropdown-contact {
	background: #fff;
	border-radius: 12px;
	font-family: "Montserrat", sans-serif;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	padding: 0 6px 10px;
}

.dropdown-contact ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	column-gap: 16px;
	row-gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.dropdown-contact li {
	padding: 12px 0;
	border-top: 1px solid #eee;
	line-height: 20px;
}

.dropdown-contact li:first-child {
	border-top: none;
}

.dropdown-contact h5 {
	margin: 0 0 4px;
	font-size: 14px;
	font-weight: 600;
}

.dropdown-contact a {
	font-size: 14px;
	text-decoration: none;
}


/* arrow on the right */
.contact-action .contact-arrow {
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	color: #aaa;
	min-width: 16px;
}

.contact-option-list {
	list-style: none;
}

.contact-option-list li {
	display: flex;
	align-items: center;
	padding: 13px 0;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	transition: background 0.11s;
}

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

.contact-icon {
	font-size: 1.35rem;
	margin-right: 22px;
	min-width: 32px;
	text-align: center;
	color: #262626;
}

.contact-text {
	font-size: 1rem;
	font-weight: 500;
	flex: 1;
	transition: color 0.15s;
}

.contact-option-list li:hover .contact-text {
	color: #8d6f43;
}

.contact-arrow {
	font-size: 1.08rem;
	margin-left: 18px;
	color: #aaa;
}

/* FAQ Section */
.con-faq-section {
	font-family: sans-serif;
	width: 100%;
	text-align: center;
	margin: 30px 0 120px 0;
}

.con-faq-section a {
	color: #282626;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	font-weight: 500;
}

/* Newsletter Section */
.con-newsletter-section {
	width: 100%;
	text-align: center;
	padding: 45px 20px 70px 20px;
}

.con-newsletter-section h3 {
	font-family: "Montserrat", sans-serif;
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 72px;
}

.con-newsletter-form {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	max-width: 600px;
	margin: 0 auto;
}

.con-newsletter-form input[type="email"] {
	padding: 8px 0px;
	font-size: 1rem;
	width: 375px;
	border: none;
	border-bottom: 1px solid #000;
	outline: none;
	font-family: "Montserrat";
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.con-newsletter-form input[type="email"]::placeholder {
	color: #D9D9D9;
	opacity: 1;
}

.con-newsletter-form button {
	background: #222;
	color: #fff;
	border: none;
	padding: 10px 44px;
	font-family: "Montserrat", sans-serif;
	font-size: 0.95rem;
	font-weight: 400;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	transition: background 0.18s;
}

.con-newsletter-form button:hover {
	background: #8d6f43;
	color: #fff;
}

/* Responsive Styles */
@media (max-width: 1180px) {
	.contact-container {
		flex-direction: column;
		align-items: center;
		padding: 24px 16px 0 16px;
		gap: 12px;
	}

	.image-section,
	.contact-section {
		width: 100%;
		padding: 0;
	}

	.image-section img {
		max-width: 640px;
	}

	.contact-options {
		margin-bottom: 80px;
	}
}

@media (max-width: 900px) {
	.mobile-hide {
		display: none !important;
	}

	.contact-section {
		padding: 12px 12px 24px 12px;
	}

	.contact-options {
		margin-bottom: 70px;
		max-width: 520px;
	}

	.contact-action {
		padding: 12px 14px;
		max-width: 100%;
	}

	.contact-section h2 {
		font-size: 1.9rem;
	}
}

@media (max-width: 768px) {
	.contact-container {
		padding: 18px 10px 0 10px;
	}

	.contact-section h2 {
		font-size: 1.6rem;
	}

	.contact-section p {
		font-size: 0.95rem;
		line-height: 1.6;
		margin-bottom: 40px;
	}

	.contact-options {
		margin: 0 auto 60px;
		padding: 0 6px;
		max-width: 100%;
	}

	.contact-action {
		padding: 12px 14px;
		gap: 10px;
	}

	.contact-action .contact-text {
		font-size: 0.9rem;
		margin-left: 10px;
	}

	.dropdown-contact {
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
	}

	.dropdown-contact ul {
		grid-template-columns: 1fr;
	}

	.con-newsletter-form {
		flex-direction: column;
		gap: 10px;
	}

	.con-newsletter-form input[type="email"] {
		width: 100%;
	}

	.con-newsletter-form button {
		width: 100%;
		border-radius: 4px;
	}
}

@media (max-width: 550px) {
	.contact-section h2 {
		font-size: 1.4rem;
	}

	.contact-section p {
		font-size: 0.93rem;
	}

	.contact-options {
		margin-bottom: 50px;
	}
}


/* ==========================================
	Owl Carousel custom styles
	- Product gallery (.owl-gallery)
	- Category grid (.owl-categories)
========================================== */
.owl-gallery {
	position: relative;
	padding: 0 56px;
}

.owl-gallery .owl-nav {
	position: absolute;
	top: 25%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	pointer-events: none;
	opacity: 0.3;
	z-index: 3;
}

.owl-gallery .owl-nav button.owl-prev,
.owl-gallery .owl-nav button.owl-next {
	position: absolute;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #cecece !important;
	color: #fff !important;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: auto;
}

.owl-gallery .owl-nav button.owl-prev {
	left: 25px;
}

.owl-gallery .owl-nav button.owl-next {
	right: 65px;
}

.owl-gallery .owl-nav button span {
	font-size: 22px;
	line-height: 1;
}

/* Keep nav visible even when Owl would disable it */
.owl-gallery .owl-nav.disabled {
	display: block !important;
}

/* Center gallery images within each slide */
.owl-gallery .woocommerce-product-gallery__image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.owl-gallery .woocommerce-product-gallery__image img {
	width: auto;
	max-width: 60%;
	height: auto;
	max-height: 85vh;
}

.owl-carousel .owl-item img[src*="Diosa-bw.svg"] {
	width: 500px;
	height: 500px;
	object-fit: contain;
	justify-self: center;
}

/* Thumbnails under product gallery */
.product-thumbs {
	display: flex;
	gap: 10px;
	margin-top: -12px;
	flex-wrap: nowrap;
	overflow-x: auto;
	z-index: 10;
}

.product-thumb {
	border: 2px solid transparent;
	padding: 0;
	background: none;
	cursor: pointer;
	width: 180px;
	height: 105px;
	display: flex;
	align-items: center;
	justify-content: center;
	object-fit: contain;
}

.product-thumb img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.product-thumb.is-active {
	border-color: #bdbdbd;
}

.owl-categories {
	position: relative;
	padding: 0 60px;
	/* Increased padding for better spacing */
	width: 100vw !important;
	/* Force full viewport width */
	max-width: none !important;
	/* Remove any max-width constraints */
	margin-left: calc(-50vw + 50%);
	/* Full width centering */
}

/* Remove arrow navigation completely */
.owl-categories .owl-nav {
	display: none !important;
}

/* Enhanced dot navigation styles */
.owl-categories .owl-dots {
	text-align: center;
	padding: 0 20px;
	display: block !important;
	/* Force dots to always be visible */
	visibility: visible !important;
	opacity: 1 !important;
}

.owl-categories .owl-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #4A4D60;
	/* Inactive dot color */
	margin: 0 8px;
	/* Increased spacing between dots */
	transition: all 0.4s ease;
	cursor: pointer;
	opacity: 0.7;
}

.owl-categories .owl-dot.active {
	background: #E6A791;
	/* Active dot color */
	transform: scale(1.3);
	opacity: 1;
	box-shadow: 0 2px 8px rgba(230, 167, 145, 0.4);
}

.owl-categories .owl-dot:hover {
	background: #E6A791;
	transform: scale(1.2);
	opacity: 0.9;
}

/* Category carousel styling for center mode and active slide with 5-slide layout */
.owl-categories .category-item {
	padding: 0 10px;
	/* Max 20px gap between slides (10px each side) */
	box-sizing: border-box;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0.4;
	/* More dramatic opacity difference for 5 slides */
	/* transform: scale(0.75); */
	/*Non-active slides are smaller */
}

.owl-categories .category-item:hover {
	opacity: 0.7;
}

/* Active slide styling - 20% larger and fully visible */
.owl-categories .owl-item.center .category-item {
	opacity: 1;
	transform: scale(1.2);
	/* Active slide is 20% larger */
	z-index: 3;
}

/* Center slide (no scale change) handled elsewhere if needed */
.owl-categories .owl-item.slide-prev .category-item,
.owl-categories .owl-item.slide-next .category-item {
	/* opacity: 0.7; */
	transform: scale(0.85);
	z-index: 2;
}

.owl-categories .owl-item.slide-prev2 .category-item,
.owl-categories .owl-item.slide-next2 .category-item {
	/* opacity: 0.5; */
	transform: scale(0.75);
	z-index: 1;
}

/* Stage for proper center alignment */
.owl-categories .owl-stage {
	display: flex;
	align-items: center;
	padding: 20px 0;
	/* Extra padding for the larger active item */
}

/* Force dots to always be visible - override Owl Carousel defaults */
.owl-categories .owl-dots,
.owl-categories .owl-carousel .owl-dots {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	text-align: center !important;
	padding: 0 20px !important;
}

/* Ensure individual dots are visible */
.owl-categories .owl-dot,
.owl-categories .owl-carousel .owl-dot {
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Override any disabled state for dots */
.owl-categories .owl-dots.disabled,
.owl-categories .owl-carousel .owl-dots.disabled {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Lightbox styles */
.dp-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.dp-lightbox.is-open {
	display: flex;
	align-items: flex-start;
}

.dp-lightbox-image {
	max-width: 95vw;
	max-height: 95vh;
}

.dp-lightbox-close {
	position: absolute;
	top: 16px;
	right: 20px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 28px;
	cursor: pointer;
}

.dp-no-scroll {
	overflow: hidden;
}

/* Hide Woo default zoom/search icon if present */
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	display: none !important;
}

@media (max-width:1024px) {
	.product-thumb {
		width: unset;
		height: unset;
	}

	.owl-nav {
		top: 35%;
	}

	.owl-gallery .owl-nav button.owl-prev {
		left: 0;
	}

	.owl-gallery .owl-nav button.owl-next {
		right: 0;
	}

	.dp-lightbox.is-open {
		padding-top: 100px;
	}
}

.woocommerce-product-gallery__image {
	overflow: hidden;
	position: relative;
}

.woocommerce-product-gallery__image img {
	transition: transform .25s ease-out;
	transform-origin: 50% 50%;
	will-change: transform;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: block;
	max-width: none;
	/* ensure transform behaves consistently */
}

@media (hover: hover) and (pointer: fine) {
	.woocommerce-product-gallery__image img.zoom-enabled {
		cursor: zoom-in;
	}
}

@media (max-width: 768px) {
	.woocommerce-product-gallery__image img {
		transition: none;
		transform: none !important;
	}
}


/* ===========================
		About Us Page
	=========================== */
.about-hero {
	position: relative;
	height: 915px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.about-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-title {
	position: relative;
	z-index: 1;
	font-family: "TOP_LUXURY-REGULAR", sans-serif;
	font-size: 69px;
	color: white;
	letter-spacing: 0;
	line-height: 1;
	text-align: center;
}

/* ===========================
	About Section
	=========================== */
.about-section {
	position: relative;
	padding: 100px 20px;
	min-height: 1281px;
	background: linear-gradient(309deg, rgba(255, 255, 255, 1) 0%, rgba(247, 236, 234, 1) 100%);
	overflow: hidden;
}

.about-gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(309deg, rgba(255, 255, 255, 1) 0%, rgba(247, 236, 234, 1) 100%);
	z-index: 0;
}

.founder-img {
	float: right;
	width: 51.75%;
	max-width: 1056px;
	height: auto;
	margin: 0 0 36px 56px;
	z-index: 1;
	opacity: 0.8;
	shape-outside: inset(0);
}

.seal-img {
	display: block;
	width: min(407px, 100%);
	height: auto;
	margin: 0 auto;
}

.about-content {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.about-text {
	max-width: none;
	margin-bottom: 100px;
}

.about-text::after {
	content: "";
	display: block;
	clear: both;
}

.about-description {
	font-family: 'TOP_LUXURY-REGULAR', sans-serif;
	font-size: 24px;
	line-height: 42px;
	letter-spacing: 0;
	margin: 0 0 34px;
	color: #000;
}

.about-description:last-of-type {
	margin-bottom: 0;
}

.about-description.is-revealing {
	color: #000;
}

.about-description .highlight {
	color: black;
}

.about-description.muted,
.about-description .muted {
	color: #000;
}

.founder-card {
	text-align: center;
	max-width: 407px;
	margin: 0 auto;
}


/* ===========================
	Milestones Section
	=========================== */
.milestones-section {
	position: relative;
	min-height: 757px;
	padding: 150px 20px;
	margin-top: 120px;
	overflow: hidden;
}

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

.milestones-bg-container {
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	height: 100%;
}

.milestones-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s ease;
}

#milestone-2015:checked~.milestones-bg-container .milestone-bg-2015,
#milestone-2017:checked~.milestones-bg-container .milestone-bg-2017,
#milestone-2019:checked~.milestones-bg-container .milestone-bg-2019,
#milestone-2022:checked~.milestones-bg-container .milestone-bg-2022,
#milestone-2025:checked~.milestones-bg-container .milestone-bg-2025 {
	opacity: 1;
}

.milestones-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	top: 13%;
	width: 100%;
	height: 274px;
	background: linear-gradient(180deg,
			rgba(49, 48, 50, 1) 0%,
			rgba(49, 48, 50, 0.3) 37%,
			rgba(49, 48, 50, 0) 100%);
	pointer-events: none;
}

.milestones-container {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
}

.milestones-title {
	position: absolute;
	z-index: 2;
	left: 50%;
	transform: translateX(-50%);
	font-family: "TOP_LUXURY-REGULAR", sans-serif;
	top: 0px;
	text-align: center;
	color: #222;
	background: transparent;
	font-size: 2.8rem;
	letter-spacing: 0.05em;
}

.milestones-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 60px;
}

.milestone-info-container {
	/* position: relative; */
	max-width: 497px;
	flex: 1;
	min-height: 250px;
}

.milestone-info {
	position: absolute;
	top: 60%;
	left: 0;
	width: 100%;
	max-width: 497px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

#milestone-2015:checked~.milestones-container .milestone-info-2015,
#milestone-2017:checked~.milestones-container .milestone-info-2017,
#milestone-2019:checked~.milestones-container .milestone-info-2019,
#milestone-2022:checked~.milestones-container .milestone-info-2022,
#milestone-2025:checked~.milestones-container .milestone-info-2025 {
	opacity: 1;
	visibility: visible;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(8px);
	padding: 8px;
	border-radius: 4px;
}

.milestone-year-label {
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
}

.milestone-heading {
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	line-height: 45px;
}

.milestone-description {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0;
	padding-top: 20px;
	border-top: 1px solid var(--color-primary);
}

.milestone-years {
	display: flex;
	position: absolute;
	font-family: "Montserrat", sans-serif;
	gap: 20px;
	top: 0;
	flex-shrink: 0;
	justify-content: center;
	width: 100%;
}

.milestone-btn {
	font-weight: 600;
	font-size: 20px;
	line-height: 45px;
	color: white;
	padding: 10px 20px;
	transition: all 0.3s ease;
	position: relative;
	cursor: pointer;
	display: block;
}

.milestone-btn::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: white;
	transition: width 0.3s ease;
}

.milestone-btn:hover::after {
	width: 100%;
}

#milestone-2015:checked~.milestones-container .milestone-years label[for="milestone-2015"],
#milestone-2017:checked~.milestones-container .milestone-years label[for="milestone-2017"],
#milestone-2019:checked~.milestones-container .milestone-years label[for="milestone-2019"],
#milestone-2022:checked~.milestones-container .milestone-years label[for="milestone-2022"],
#milestone-2025:checked~.milestones-container .milestone-years label[for="milestone-2025"] {
	font-weight: 700;
}

#milestone-2015:checked~.milestones-container .milestone-years label[for="milestone-2015"]::after,
#milestone-2017:checked~.milestones-container .milestone-years label[for="milestone-2017"]::after,
#milestone-2019:checked~.milestones-container .milestone-years label[for="milestone-2019"]::after,
#milestone-2022:checked~.milestones-container .milestone-years label[for="milestone-2022"]::after,
#milestone-2025:checked~.milestones-container .milestone-years label[for="milestone-2025"]::after {
	width: 100%;
}

/* ===========================
	Responsive Design
	=========================== */
@media (max-width: 1200px) {
	.hero-title {
		font-size: 56px;
	}

	.about-decoration {
		width: 80%;
		opacity: 0.5;
	}

	.milestones-content {
		flex-direction: column;
	}

	.milestone-years {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.navbar {
		padding: 0 20px;
	}

	.logo img {
		height: 50px;
	}

	.nav-icons {
		gap: 15px;
	}

	.nav-icons img {
		height: 18px;
	}


	.hero-title {
		font-size: 36px;
	}

	.about-hero {
		height: 60vh;
		height: 60svh;
	}

	.about-title {
		font-size: 44px;
	}

	.about-section {
		padding: 60px 20px;
		min-height: auto;
	}

	.about-content {
		display: block;
		gap: 0;
	}

	.about-text {
		max-width: none;
		margin-bottom: 48px;
	}

	.founder-img {
		display: none;
	}

	.about-description {
		font-size: 20px;
		line-height: 32px;
		margin-bottom: 28px;
	}

	.founder-card {
		max-width: 240px;
		margin-top: 32px;
	}

	.seal-img {
		margin-top: 0;
	}

	.founder-name {
		font-size: 36px;
	}

	.milestones-section {
		padding: 60px 20px;
	}

	.milestones-title {
		font-size: 28px;
	}

	.milestone-btn {
		font-size: 16px;
		padding: 8px 15px;
	}
}

@media (max-width: 480px) {
	body[class*="about-us-page"] {
		padding: 0;
	}

	.hero-title {
		font-size: 28px;
	}

	.about-description {
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 24px;
	}

	.founder-card {
		max-width: 176px;
		margin-top: 28px;
	}

	.founder-name {
		font-size: 28px;
	}

	.milestones-title {
		font-size: 24px;
	}

	.milestone-years {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
	}
}


/* ******************************************************
				Login Page CSS
****************************************************** */

.login-info {
	position: relative;
	width: 100%;
	max-width: 583px;
	min-height: 937px;
	background-color: #ffffff;
	padding: 20px;
	margin: 0 auto;
}

.log-rectangle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: -1;
}

.log-div {
	margin-top: 13px;
	margin-left: 28px;
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 20px;
	letter-spacing: 0;
	line-height: 20px;
}

.log-text-wrapper {
	margin-top: 31px;
	margin-left: 25px;
	margin-bottom: 25px;
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 20px;
	letter-spacing: 0;
	line-height: 20px;
}

.log-line-2 {
	position: absolute;
	top: 66px;
	left: 0;
	width: 100%;
	height: 2.2px;
	background: #000000;
	object-fit: cover;
}

.log-line-3 {
	border: 1px solid #E0E0E0;
	height: 0;
	width: 100%;
	position: relative;
	top: 16px;
}

.log-p {
	margin: 0 25px 46px;
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 16px;
	letter-spacing: 0;
	line-height: 21.8px;
}

.login-form {
	position: relative;
	margin: 0 25px;
}

.log-form-group {
	position: relative;
	margin-bottom: 36px;
}

.log-form-group label {
	display: block;
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #bcbcbc;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 19px;
	margin-bottom: 8px;
}

.log-form-group input {
	width: 100%;
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 19px;
	border: none;
	background: transparent;
	outline: none;
	padding: 8px 0;
}

.log-form-group input::placeholder {
	color: #bcbcbc;
}

.log-form-group .img,
.log-form-group .line-3 {
	width: 100%;
	height: 1px;
	margin-top: 8px;
	object-fit: cover;
}

.log-text-wrapper-6 {
	display: inline-block;
	margin: 13px 0 19px;
	font-family: "Montserrat", Helvetica;
	font-weight: 600;
	color: #000000;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 19px;
}

.log-text-wrapper-6:hover {
	text-decoration: underline;
}

.log-rememebr-mee {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
}

.log-group-9 {
	position: relative;
	width: 16px;
	height: 15.33px;
}

.log-rectangle-3 {
	position: absolute;
	top: 3px;
	left: 0;
	width: 13px;
	height: 13px;
	border-radius: 4px;
	border: 1px solid #000000;
	appearance: none;
	background-color: transparent;
	cursor: pointer;
	margin: 0;
}

.log-rectangle-3:checked {
	background-color: #000000;
}

.log-rectangle-3:checked::after {
	content: "";
	position: absolute;
	left: 3px;
	top: 0;
	width: 5px;
	height: 8px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.log-rectangle-4 {
	position: absolute;
	top: 0;
	left: 15px;
	width: 1px;
	height: 2px;
	background-color: #d9d9d9;
	border-radius: 4px;
}

.log-text-wrapper-12 {
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 19px;
	cursor: pointer;
}

.log-in {
	display: flex;
	width: 229px;
	height: 48px;
	align-items: center;
	justify-content: center;
	margin: 0 auto 33px;
	background-color: #000000;
	border: 1px solid #000000;
	cursor: pointer;
	transition: background-color 0.2s;
}

.login-success {
	padding: 0px 4.5%;
	color: #f7b44f !important;
}

.log-in:hover {
	background-color: #333333;
}

.log-text-wrapper-7 {
	font-family: "Raleway", Helvetica;
	font-weight: 400;
	color: #ffffff;
	font-size: 18px;
	letter-spacing: 0;
	line-height: normal;
}

.log-line {
	width: 100%;
	max-width: 429px;
	height: 1px;
	margin: 0 auto 26px;
	display: block;
	object-fit: cover;
}

.log-group {
	margin: 0 57px 60px;
}

.log-text-wrapper-9 {
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 16px;
	letter-spacing: 0;
	line-height: 21.8px;
	margin-bottom: 36px;
}

.log-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.log-group-2,
.log-group-3,
.log-group-4,
.log-group-6 {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-family: "Montserrat", Helvetica;
}

.log-frame {
	display: flex;
	align-items: center;
	width: 23px;
	height: 22px;
}

.HEART {
	width: 23px;
	height: 22px;
	object-fit: cover;
}

.log-create-your-wishlist,
.log-div-wrapper,
.log-early-releases {
	display: flex;
	align-items: center;
	padding: 10px;
}

.log-text-wrapper-10 {
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 16px;
	letter-spacing: 0;
	line-height: 21.8px;
}

.log-frame-2 {
	width: 19px;
	height: 19px;
}

.log-group-5 {
	width: 25px;
	height: 24px;
}

.log-group-wrapper {
	display: flex;
	align-items: center;
}

.log-group-7 {
	width: 21.37px;
	display: flex;
}

.log-group-8 {
	width: 23.37px;
	height: 23.24px;
	position: relative;
}

.log-rectangle-2 {
	position: absolute;
	width: 91.44%;
	top: 8px;
	left: 0;
	height: 16px;
}

.log-ellipse {
	position: absolute;
	width: 26.89%;
	height: 15.47%;
	top: -2.15%;
	left: 30.13%;
}

.log-text-wrapper-11 {
	position: absolute;
	top: 9px;
	left: 9px;
	width: 5px;
	font-family: "Montagu Slab", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 10px;
	letter-spacing: 0;
	line-height: 13.6px;
}

.log-craete-account {
	width: 229px;
	height: 48px;
	margin: 0 auto 48px;
}

.log-create-account {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	border: 1px solid #000000;
	background-color: transparent;
	transition: background-color 0.2s;
}

.log-create-account:hover {
	background-color: #f5f5f5;
}

.log-text-wrapper-8 {
	font-family: "Raleway", Helvetica;
	font-weight: 500;
	color: #000000;
	font-size: 18px;
	letter-spacing: 0;
	line-height: normal;
}

.log-cross {
	position: absolute;
	top: 22px;
	right: 20px;
	width: 31px;
	height: 31px;
	background-color: #ffffff;
	border: none;
	cursor: pointer;
	padding: 0;
}

.log-cross:hover {
	opacity: 0.7;
}

.log-rectangle-5 {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #ffffff;
}

.log-line-4,
.log-line-5 {
	width: 38.78%;
	height: 38.78%;
	position: absolute;
	object-fit: cover;
}

.log-line-4 {
	top: 30.65%;
	left: 31.29%;
}

.log-line-5 {
	top: 30.58%;
	left: 28.99%;
}

@media (max-width: 768px) {
	.log-login-info {
		max-width: 100%;
		padding: 15px;
		min-height: auto;
	}

	.login-success {
		padding: 0px 2.5%;
	}

	.log-div,
	.log-text-wrapper {
		font-size: 18px;
		margin-left: 15px;
	}

	.log-p {
		margin: 0 15px 60px;
		font-size: 15px;
	}

	.login-form {
		margin: 0 15px;
	}

	.log-group {
		margin: 0 30px 60px;
	}

	.log-text-wrapper-9,
	.log-text-wrapper-10 {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.login-info {
		padding: 10px;
	}

	.log-div,
	.log-text-wrapper {
		font-size: 16px;
		margin-left: 10px;
	}

	.log-p {
		margin: 0 10px 40px;
		font-size: 14px;
	}

	.login-form {
		margin: 0 10px;
	}

	.log-form-group {
		margin-bottom: 28px;
	}

	.log-in {
		width: 120px;
		height: 42px;
	}

	.log-text-wrapper-7 {
		font-size: 16px;
	}

	.log-group {
		margin: 0 20px 50px;
	}

	.log-text-wrapper-9,
	.log-text-wrapper-10 {
		font-size: 14px;
	}

	.log-craete-account {
		width: 200px;
		height: 42px;
	}

	.log-text-wrapper-8 {
		font-size: 16px;
	}

	.log-cross {
		top: 15px;
		right: 15px;
		width: 25px;
		height: 25px;
	}
}

/* ------------------------------
   TI WooCommerce Wishlist (/wishlist)
   ------------------------------ */
.tinvwl-table-manage-list {
	width: 100%;
	border-collapse: collapse;
	color: #313032;
}

.tinvwl-table-manage-list thead th {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	padding: 14px 12px;
	border-bottom: 1px solid rgba(49, 48, 50, 0.18);
	vertical-align: middle;
}

.tinvwl-table-manage-list tbody td,
.tinvwl-table-manage-list tfoot td {
	padding: 14px 12px;
	border-bottom: 1px solid rgba(49, 48, 50, 0.12);
	vertical-align: middle;
	font-size: 15px;
}

.tinvwl-table-manage-list .product-thumbnail img {
	width: 84px;
	height: 84px;
	object-fit: cover;
	display: block;
}

.tinvwl-table-manage-list .product-name a {
	color: #313032;
	font-weight: 500;
}

.tinvwl-table-manage-list .product-name a:hover {
	opacity: 0.85;
}

.tinvwl-table-manage-list .product-price .amount {
	font-weight: 500;
}

.tinvwl-table-manage-list .product-stock .stock {
	margin: 0;
	font-size: 14px;
}

.tinvwl-table-manage-list .product-remove button {
	background: transparent;
	border: 1px solid rgba(49, 48, 50, 0.25);
	color: #313032;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.tinvwl-table-manage-list .product-remove button:hover {
	background: rgba(49, 48, 50, 0.06);
	border-color: rgba(49, 48, 50, 0.4);
}

.tinvwl-table-manage-list .button,
.tinvwl-table-manage-list button.button,
.tinvwl-table-manage-list input.button,
.tinvwl-table-manage-list .tinvwl-input-group-btn button,
.tinvwl-table-manage-list .tinvwl-to-right button {
	background: #313032;
	color: #ffffff;
	border: 1px solid #313032;
	padding: 10px 14px;
	border-radius: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.2;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.tinvwl-table-manage-list .button:hover,
.tinvwl-table-manage-list button.button:hover,
.tinvwl-table-manage-list input.button:hover,
.tinvwl-table-manage-list .tinvwl-input-group-btn button:hover,
.tinvwl-table-manage-list .tinvwl-to-right button:hover {
	background: #6b6b6b;
	border-color: #6b6b6b;
}

.tinvwl-table-manage-list select,
.tinvwl-table-manage-list input[type="text"],
.tinvwl-table-manage-list input[type="number"],
.tinvwl-table-manage-list input[type="email"] {
	padding: 10px 12px;
	border: 1px solid rgba(49, 48, 50, 0.25);
	background: #fff;
	color: #313032;
	font-size: 14px;
}

@media (max-width: 768px) {
	.tinvwl-table-manage-list thead {
		display: none;
	}

	.tinvwl-table-manage-list tbody tr {
		display: grid;
		grid-template-columns: 80px 1fr;
		gap: 10px 12px;
		padding: 12px 0;
		border-bottom: 1px solid rgba(49, 48, 50, 0.12);
	}

	.tinvwl-table-manage-list tbody td {
		border: none;
		padding: 0 12px;
	}

	.tinvwl-table-manage-list .product-thumbnail {
		grid-row: 1 / span 4;
	}

	.tinvwl-table-manage-list .product-remove {
		grid-column: 2;
		justify-self: end;
	}

	.tinvwl-table-manage-list .product-action,
	.tinvwl-table-manage-list .product-price,
	.tinvwl-table-manage-list .product-stock,
	.tinvwl-table-manage-list .product-date {
		grid-column: 2;
	}
}

/* TI Wishlist "already in wishlist" modal */
.tinv-modal-inner {
	background: #ffffff;
	color: #313032;
	border: 1px solid rgba(49, 48, 50, 0.18);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
	padding: 22px 18px;
	max-width: 520px;
	width: calc(100% - 40px);
}

.tinv-modal-inner .tinv-txt {
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 400;
	margin: 0 0 16px;
}

.tinv-modal-inner .tinvwl-buttons-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.tinv-modal-inner .tinvwl-buttons-group .button {
	background: #313032;
	color: #ffffff;
	border: 1px solid #313032;
	padding: 10px 14px;
	border-radius: 0;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.2;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.tinv-modal-inner .tinvwl-buttons-group .button:hover {
	background: #6b6b6b;
	border-color: #6b6b6b;
}

.tinv-modal-inner .tinvwl-buttons-group .button i {
	margin-right: 8px;
}

@media (max-width: 480px) {
	.tinv-modal-inner {
		padding: 18px 14px;
	}

	.tinv-modal-inner .tinvwl-buttons-group .button {
		width: 100%;
		justify-content: center;
	}
}

/* ******************************************************
				Store Locator Page CSS
****************************************************** */

/* Plugin embed wrapper (prevents page-level horizontal overflow on mobile) */
.store-locator-embed {
	background: #fff;
	padding: 40px 0;
}

.store-locator-embed-inner {
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 20px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* Hero Header */
.store-header {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.hero-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.store-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.store-title {
	position: absolute;
	bottom: 4rem;
	left: 2rem;
	color: #FFFFFF;
	font-family: 'TOP_LUXURY-REGULAR', serif;
	font-size: clamp(28px, 5vw, 40px);
	font-weight: 400;
	z-index: 1;
}

/* Stores Section */
.stores-section {
	background-color: #F5F5F5;
	padding: 8rem 2rem;
}

.stores-container {
	max-width: 1024px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 4rem;
	justify-items: stretch;
}

.store-card {
	background-color: #FFFFFF;
	font-family: "Montserrat", Helvetica;
	padding: 2rem;
	min-height: 200px;
	width: 100%;
	max-width: 468px;
	justify-self: center;
}

.store-name {
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.store-type {
	font-size: 11px;
	font-weight: 400;
	color: #000000;
	margin-bottom: 4rem;
	text-transform: capitalize;
}

.store-address {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.location-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 2px;
}

.store-address p {
	font-size: 11px;
	font-weight: 300;
	line-height: 1.5;
	color: #000000;
	overflow-wrap: anywhere;
}

@media (max-width: 768px) {
	.store-title {
		left: 1rem;
		bottom: 2.5rem;
	}

	.store-locator-embed-inner {
		padding: 0 15px;
	}

	.stores-section {
		padding: 4rem 1rem;
	}

	.stores-container {
		gap: 1.25rem;
	}

	.store-card {
		max-width: 100%;
		min-height: 0;
		height: auto;
		padding: 1.25rem;
	}

	.store-type {
		margin-bottom: 1.25rem;
	}
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
	background: #575757;
}

/* --- CATEGORY SLIDER: EVEN GAPS FOR SCALED CENTER ITEM --- */
.owl-categories .category-item {
	margin-left: 6px;
	margin-right: 6px;
}

/* Center slide gets extra margin to balance increased visual size due to scaling (scale: 1.2, width: 194px, add ~25px each side) */
.owl-categories .owl-item.slide-center .category-item {
	margin-left: 25px;
	margin-right: 25px;
}

/* --- CATEGORY SLIDER: 9:16 RECTANGULAR IMAGE SIZE --- */
.owl-categories .category-image-container {
	width: 246px;
	height: 338px;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	/* removed border-radius! */
	background: #f8f8f8;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.owl-categories .category-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.25s ease;
}

.owl-categories .owl-item.center .category-image-container img,
.owl-categories .owl-item.slide-center .category-image-container img {
	filter: none;
}

@media (max-width: 750px) {
	.owl-categories .category-image-container {
		width: 65px;
		height: 115px;
		min-width: 48px;
	}
}


/* ******************************************************
				Craftsmenship Page CSS
****************************************************** */

/* ===== HERO SECTION ===== */
.craft-hero {
	position: relative;
	height: 100vh;
	min-height: 600px;
	overflow: hidden;
}

.craft-hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

.craft-hero-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(0deg,
			rgba(49, 48, 50, 1) 0%,
			rgba(49, 48, 50, 0.3) 37%,
			rgba(49, 48, 50, 0) 100%);
}

.craft-hero-content {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: #fff;
	z-index: 2;
}

.craft-hero-title {
	font-family: 'TOP_LUXURY-REGULAR', sans-serif;
	font-size: 44px;
	font-weight: 400;
	margin-bottom: 30px;
	letter-spacing: 2px;
}



/* Craftsmanship Gallery - Exact Figma Layout */
.craftsmanship-gallery {
	max-width: 100vw;
	margin: 0 auto;
	padding: 0 0;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 12px;
}

.gallery-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gallery-column-center {
	padding-top: 90px;
	position: relative;
}

/* Decorative line above center column */
.gallery-column-center::before {
	content: '';
	position: absolute;
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 95px;
	background: #898989;
}

.gallery-item {
	aspect-ratio: 1;
	overflow: hidden;
	/* border-radius: 8px; */
	/* box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: transform 0.5s ease; */
}

/* .gallery-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

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


/* ===== QUOTE SECTION ===== */
.quote-section {
	position: relative;
	padding: 200px 0 300px 0;
	overflow: hidden;
}

.quote-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

.quote-content {
	position: relative;
	z-index: 2;
	text-align: right;
	max-width: 80%;
	margin: 0 auto;
	padding: 0 20px;
}

.quote-text {
	font-family: 'TOP_LUXURY-REGULAR', sans-serif;
	font-size: clamp(1.5rem, 4vw, 3.5rem);
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 40px;
	color: #000;
}

.quote-author {
	font-family: 'TOP_LUXURY-REGULAR', sans-serif;
	font-size: clamp(1rem, 3vw, 2.3rem);
	font-weight: 400;
	color: #666;
	font-style: italic;
}


/* Responsive Design */
@media (max-width: 1024px) {
	.collections-grid {
		grid-template-columns: 1fr;
	}

	.experience-content,
	.newsletter-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.craftsmanship-gallery {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.navbar {
		padding: 0 20px;
	}

	.logo img {
		height: 50px;
	}

	.nav-icons {
		gap: 15px;
	}

	.nav-icons img {
		height: 18px;
	}


	.hero-title {
		font-size: 36px;
	}

	.about-title {
		font-size: 44px;
	}

	.about-section {
		padding: 60px 20px;
		min-height: auto;
	}

	.about-description {
		font-size: 20px;
		line-height: 32px;
	}

	.founder-name {
		font-size: 36px;
	}

	.milestones-section {
		padding: 60px 20px;
	}

	.milestones-title {
		font-size: 28px;
	}

	.milestone-btn {
		font-size: 16px;
		padding: 8px 15px;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 28px;
	}

	.about-description {
		font-size: 16px;
		line-height: 26px;
	}

	.founder-name {
		font-size: 28px;
	}

	.milestones-title {
		font-size: 24px;
	}

	.milestone-years {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		margin-top: 50px;
	}

	.milestone-info {
		top: 100%;
	}
}


/* ******************************************************
				Login Page CSS
****************************************************** */

.login-info {
	position: relative;
	width: 100%;
	max-width: 583px;
	min-height: 937px;
	background-color: #ffffff;
	padding: 20px;
	margin: 0 auto;
}

.log-rectangle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: -1;
}

.log-div {
	margin-top: 13px;
	margin-left: 28px;
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 20px;
	letter-spacing: 0;
	line-height: 20px;
}

.log-text-wrapper {
	margin-top: 31px;
	margin-left: 25px;
	margin-bottom: 25px;
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 20px;
	letter-spacing: 0;
	line-height: 20px;
}

.log-line-2 {
	position: absolute;
	top: 66px;
	left: 0;
	width: 100%;
	height: 2.2px;
	background: #000000;
	object-fit: cover;
}

.log-line-3 {
	border: 1px solid #E0E0E0;
	height: 0;
	width: 100%;
	position: relative;
	top: 16px;
}

.log-p {
	margin: 0 25px 46px;
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 16px;
	letter-spacing: 0;
	line-height: 21.8px;
}

.login-form {
	position: relative;
	margin: 0 25px;
}

.log-form-group {
	position: relative;
	margin-bottom: 36px;
}

.log-form-group label {
	display: block;
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #bcbcbc;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 19px;
	margin-bottom: 8px;
}

.log-form-group input {
	width: 100%;
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 19px;
	border: none;
	background: transparent;
	outline: none;
	padding: 8px 0;
}

.log-form-group input::placeholder {
	color: #bcbcbc;
}

.log-form-group .img,
.log-form-group .line-3 {
	width: 100%;
	height: 1px;
	margin-top: 8px;
	object-fit: cover;
}

.log-text-wrapper-6 {
	display: inline-block;
	margin: 13px 0 19px;
	font-family: "Montserrat", Helvetica;
	font-weight: 600;
	color: #000000;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 19px;
}

.log-text-wrapper-6:hover {
	text-decoration: underline;
}

.log-rememebr-mee {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
}

.log-group-9 {
	position: relative;
	width: 16px;
	height: 15.33px;
}

.log-rectangle-3 {
	position: absolute;
	top: 3px;
	left: 0;
	width: 13px;
	height: 13px;
	border-radius: 4px;
	border: 1px solid #000000;
	appearance: none;
	background-color: transparent;
	cursor: pointer;
	margin: 0;
}

.log-rectangle-3:checked {
	background-color: #000000;
}

.log-rectangle-3:checked::after {
	content: "";
	position: absolute;
	left: 3px;
	top: 0;
	width: 5px;
	height: 8px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.log-rectangle-4 {
	position: absolute;
	top: 0;
	left: 15px;
	width: 1px;
	height: 2px;
	background-color: #d9d9d9;
	border-radius: 4px;
}

.log-text-wrapper-12 {
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 19px;
	cursor: pointer;
}

.log-in {
	display: flex;
	width: 229px;
	height: 48px;
	align-items: center;
	justify-content: center;
	margin: 0 auto 33px;
	background-color: #000000;
	border: 1px solid #000000;
	cursor: pointer;
	transition: background-color 0.2s;
}

.login-success {
	padding: 0px 4.5%;
	color: #f7b44f !important;
}

.log-in:hover {
	background-color: #333333;
}

.log-text-wrapper-7 {
	font-family: "Raleway", Helvetica;
	font-weight: 400;
	color: #ffffff;
	font-size: 18px;
	letter-spacing: 0;
	line-height: normal;
}

.log-line {
	width: 100%;
	max-width: 429px;
	height: 1px;
	margin: 0 auto 26px;
	display: block;
	object-fit: cover;
}

.log-group {
	margin: 0 57px 60px;
}

.log-text-wrapper-9 {
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 16px;
	letter-spacing: 0;
	line-height: 21.8px;
	margin-bottom: 36px;
}

.log-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.log-group-2,
.log-group-3,
.log-group-4,
.log-group-6 {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-family: "Montserrat", Helvetica;
}

.log-frame {
	display: flex;
	align-items: center;
	width: 23px;
	height: 22px;
}

.HEART {
	width: 23px;
	height: 22px;
	object-fit: cover;
}

.log-create-your-wishlist,
.log-div-wrapper,
.log-early-releases {
	display: flex;
	align-items: center;
	padding: 10px;
}

.log-text-wrapper-10 {
	font-family: "Montserrat", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 16px;
	letter-spacing: 0;
	line-height: 21.8px;
}

.log-frame-2 {
	width: 19px;
	height: 19px;
}

.log-group-5 {
	width: 25px;
	height: 24px;
}

.log-group-wrapper {
	display: flex;
	align-items: center;
}

.log-group-7 {
	width: 21.37px;
	display: flex;
}

.log-group-8 {
	width: 23.37px;
	height: 23.24px;
	position: relative;
}

.log-rectangle-2 {
	position: absolute;
	width: 91.44%;
	top: 8px;
	left: 0;
	height: 16px;
}

.log-ellipse {
	position: absolute;
	width: 26.89%;
	height: 15.47%;
	top: -2.15%;
	left: 30.13%;
}

.log-text-wrapper-11 {
	position: absolute;
	top: 9px;
	left: 9px;
	width: 5px;
	font-family: "Montagu Slab", Helvetica;
	font-weight: 400;
	color: #000000;
	font-size: 10px;
	letter-spacing: 0;
	line-height: 13.6px;
}

.log-craete-account {
	width: 229px;
	height: 48px;
	margin: 0 auto 48px;
}

.log-create-account {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	border: 1px solid #000000;
	background-color: transparent;
	transition: background-color 0.2s;
}

.log-create-account:hover {
	background-color: #f5f5f5;
}

.log-text-wrapper-8 {
	font-family: "Raleway", Helvetica;
	font-weight: 500;
	color: #000000;
	font-size: 18px;
	letter-spacing: 0;
	line-height: normal;
}

.log-cross {
	position: absolute;
	top: 22px;
	right: 20px;
	width: 31px;
	height: 31px;
	background-color: #ffffff;
	border: none;
	cursor: pointer;
	padding: 0;
}

.log-cross:hover {
	opacity: 0.7;
}

.log-rectangle-5 {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #ffffff;
}

.log-line-4,
.log-line-5 {
	width: 38.78%;
	height: 38.78%;
	position: absolute;
	object-fit: cover;
}

.log-line-4 {
	top: 30.65%;
	left: 31.29%;
}

.log-line-5 {
	top: 30.58%;
	left: 28.99%;
}

@media (max-width: 768px) {
	.log-login-info {
		max-width: 100%;
		padding: 15px;
		min-height: auto;
	}

	.login-success {
		padding: 0px 2.5%;
	}

	.log-div,
	.log-text-wrapper {
		font-size: 18px;
		margin-left: 15px;
	}

	.log-p {
		margin: 0 15px 60px;
		font-size: 15px;
	}

	.login-form {
		margin: 0 15px;
	}

	.log-group {
		margin: 0 30px 60px;
	}

	.log-text-wrapper-9,
	.log-text-wrapper-10 {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.login-info {
		padding: 10px;
	}

	.log-div,
	.log-text-wrapper {
		font-size: 16px;
		margin-left: 10px;
	}

	.log-p {
		margin: 0 10px 40px;
		font-size: 14px;
	}

	.login-form {
		margin: 0 10px;
	}

	.log-form-group {
		margin-bottom: 28px;
	}

	.log-in {
		width: 120px;
		height: 42px;
	}

	.log-text-wrapper-7 {
		font-size: 16px;
	}

	.log-group {
		margin: 0 20px 50px;
	}

	.log-text-wrapper-9,
	.log-text-wrapper-10 {
		font-size: 14px;
	}

	.log-craete-account {
		width: 200px;
		height: 42px;
	}

	.log-text-wrapper-8 {
		font-size: 16px;
	}

	.log-cross {
		top: 15px;
		right: 15px;
		width: 25px;
		height: 25px;
	}
}

/* Portrait ratio for craftsmanship gallery videos/images */
.craftsmanship-gallery .gallery-item {
	aspect-ratio: 1 / 1;
}

.craftsmanship-gallery .gallery-item-mobile-only {
	display: none;
}

/* Mobile-only craftsmanship gallery: images left, videos right */
@media (max-width: 768px) {
	.craftsmanship-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.craftsmanship-gallery .gallery-column {
		display: contents;
	}

	.craftsmanship-gallery .gallery-column-center {
		padding-top: 0;
	}

	.craftsmanship-gallery .gallery-column-center::before {
		display: none;
	}

	.craftsmanship-gallery .gallery-item-mobile-only {
		display: block;
	}

	.craftsmanship-gallery .gallery-item-mobile-extra {
		display: none;
	}

	.craftsmanship-gallery .gallery-item-image {
		grid-column: 1;
		grid-row: var(--craft-mobile-row);
	}

	.craftsmanship-gallery .gallery-item-video {
		grid-column: 2;
		grid-row: var(--craft-mobile-row);
	}
}

@media (max-width: 768px) {
	.craftsmanship-gallery {
		padding-left: 0;
		padding-right: 0;
	}

	.craftsmanship-gallery .gallery-item-video {
		transform: translateY(80px);
	}
}

/* Craftsmanship reading layout: protect narrow mobile viewports from clipping. */
@media (max-width: 768px) {
	.craftsmanship {
		padding: 52px 0 64px;
	}

	.craftsmanship .section-title {
		width: auto;
		max-width: calc(100% - 40px);
		margin: 0 auto 32px;
		font-size: clamp(1.35rem, 7.4vw, 2rem);
		letter-spacing: 0.08em;
		line-height: 1.15;
		white-space: nowrap;
	}

	.craftsmanship .section-description {
		box-sizing: border-box;
		width: 100%;
		max-width: 44rem;
		margin: 0 auto 52px;
		padding: 0 24px;
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.7;
		text-align: left;
	}
}


.collection-description-content {
	font-size: 1.3rem;
	line-height: 2.3rem;
	padding: 20px 0;
	color: #000000;
	font-weight: 300;
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	max-width: 1200px;
	justify-self: center;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.collection-additional-content-coll .collection-additional-content {
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 768px) {
	.navbar {
		padding: 0 0px;
	}

	.menu-left {
		padding: 0px;
	}

	.hamburger-menu {
		padding-left: 0px;
	}
}
