/**
 * Product Archive & Single Product Styles
 *
 * @package Hello_Elementor_Child
 */

/* Archive page - proper width like homepage (left/right spaces) */


.yakda-archive-page {
	width: 100%;
	max-width: 100%;
}

.yakda-archive-page .yakda-container {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	margin-top:150px;
}

/* Archive title row - SEO title left, search right */
.yakda-archive-title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

.yakda-archive-page-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: #1e3a5f;
	line-height: 1.3;
}

.yakda-archive-title-row .yakda-products-search {
	margin-bottom: 0;
}

/* Product search - search bar with icon */
.yakda-products-search {
	display: block;
	max-width: 700px;
	width: 100%;
	margin-bottom: 28px;
}

/* Underline-style search - bottom border only */
.yakda-products-search--underline .yakda-products-search__field {
	position: relative;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #cfcfcf;
	transition: border-color 0.2s ease;
}

.yakda-products-search--underline .yakda-products-search__field:focus-within {
	border-bottom-color: #000;
}

.yakda-products-search--underline .yakda-products-search__input {
	width: 100%;
	height: 55px;
	padding: 0 40px 0 0;
	border: none;
	background: transparent;
	font-size: 1rem;
	line-height: 1.5;
	color: #333;
	-webkit-appearance: none;
	appearance: none;
}

/* Hide browser default clear (X) button on search input */
.yakda-products-search--underline .yakda-products-search__input::-webkit-search-cancel-button,
.yakda-products-search--underline .yakda-products-search__input::-webkit-search-decoration {
	-webkit-appearance: none;
	appearance: none;
}

.yakda-products-search--underline .yakda-products-search__input::-moz-search-cancel-button {
	display: none;
}

.yakda-products-search--underline .yakda-products-search__input::placeholder {
	color: #9a9a9a;
}

.yakda-products-search--underline .yakda-products-search__input:focus {
	outline: none;
}


.yakda-products-search__action {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	padding: 0;
	background: transparent;
	border: none;
	color: #9a9a9a;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s;
}

.yakda-products-search__action:hover {
	color: #333;
}

.yakda-products-search__action .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.yakda-products-search__action--clear {
	font-family: inherit;
}

/* Fallback for non-underline search (if used elsewhere) */
.yakda-products-search:not(.yakda-products-search--underline) {
	position: relative;
}

.yakda-products-search:not(.yakda-products-search--underline) .yakda-products-search__input {
	padding: 14px 20px 14px 48px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	font-size: 1rem;
	line-height: 1.5;
	color: #1e3a5f;
	background: #fff;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* Category filter buttons - icon + text, links to category archives */
.yakda-category-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 32px;
}

.yakda-category-filter__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	text-decoration: none;
	color: #1e3a5f;
	font-size: 0.9375rem;
	font-weight: 500;
	transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
	box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
}

.yakda-category-filter__item:hover {
	background: #f8fafc;
	border-color: #c9a227;
	box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
}

.yakda-category-filter__item--active {
	background: #09352c;
	border-color: #1e3a5f;
	color: #fff;
	box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}

.yakda-category-filter__item--active:hover {
	background: #2d5a87;
	border-color: #2d5a87;
	color: #fff;
}

.yakda-category-filter__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	overflow: hidden;
	background: #f0f4f8;
	flex-shrink: 0;
}

.yakda-category-filter__item--active .yakda-category-filter__icon {
	background: rgba(255, 255, 255, 0.2);
}

.yakda-category-filter__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.yakda-category-filter__icon .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.yakda-category-filter__item--active .yakda-category-filter__icon .dashicons {
	color: #fff;
}

/* Archive Banner - black overlay + slide-from-top animation */
.yakda-archive-banner__overlay {
	width: 100%;
	background: rgba(0, 0, 0, 0.75);
	animation: yakda-banner-slide-down 0.8s ease-out forwards;
}

.yakda-archive-banner__inner {
	opacity: 0;
	animation: yakda-banner-text-fade 0.6s ease-out 0.3s forwards;
	margin-top:100px;
}

/* Products archives: no dark overlay, no banner animations */
.yakda-products-archive__header .yakda-archive-banner__overlay,
.yakda-category-archive__header .yakda-archive-banner__overlay,
.yakda-category-archive__content.yakda-archive-banner__overlay {
	background: transparent;
	animation: none;
}

.yakda-products-archive__header .yakda-archive-banner__inner,
.yakda-category-archive__header .yakda-archive-banner__inner,
.yakda-category-archive__content.yakda-archive-banner__overlay .yakda-archive-banner__inner {
	opacity: 1;
	animation: none;
}

@keyframes yakda-banner-slide-down {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes yakda-banner-text-fade {
	to {
		opacity: 1;
	}
}

/* Products Archive Header */
.yakda-products-archive__header {
	min-height: 360px;
	margin-bottom: 48px;
	background: linear-gradient(60deg, #254740 0%, #52cbd4 100%);
	display: flex;
	align-items: center;
	overflow: hidden;
}

.yakda-products-archive__header .yakda-archive-banner__overlay {
	padding: 100px 0;
	background: transparent;
	animation: none;
}

.yakda-products-archive__header .yakda-archive-banner__inner {
	opacity: 1;
	animation: none;
}

/* @media (min-width: 768px) {
	.yakda-products-archive__header {
		min-height: 420px;
	}

	.yakda-products-archive__header .yakda-archive-banner__overlay {
		padding: 120px 0;
	}
} */

.yakda-products-archive__title {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
}

.yakda-products-archive__desc {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
}

.yakda-products-archive__grid-wrap {
	padding-bottom: 48px;
}

/* Archive layout with sidebar */
.yakda-products-archive__layout {
	display: grid;
	gap: 32px;
	align-items: start;
	padding-bottom: 50px;
}

@media (min-width: 992px) {
	.yakda-products-archive__layout {
		grid-template-columns: 1fr 360px;
	}
}

.yakda-products-sidebar {
	position: relative;
}

.yakda-products-sidebar__card {
	background: #fff;
	border-radius: 14px;
	padding: 18px 18px;
	border: 1px solid rgba(30, 58, 95, 0.08);
	box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
	margin-bottom: 18px;
}

.yakda-products-sidebar__title {
	margin: 0 0 10px;
	color: #1e3a5f;
	font-size: 1.05rem;
	font-weight: 700;
}

.yakda-products-sidebar__text {
	margin: 0;
	color: #4a5568;
	font-size: 0.95rem;
	line-height: 1.6;
}

.yakda-products-sidebar__muted {
	margin: 0;
	color: #6b7280;
	font-size: 0.95rem;
}

.yakda-products-sidebar__recent-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.yakda-products-sidebar__recent-link {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 12px;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.yakda-products-sidebar__recent-thumb {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	object-fit: cover;
	background: #f0f4f8;
	border: 1px solid rgba(30, 58, 95, 0.08);
}

.yakda-products-sidebar__recent-thumb--placeholder {
	display: block;
}

.yakda-products-sidebar__recent-name {
	color: #1e3a5f;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.3;
}

.yakda-products-sidebar__recent-link:hover .yakda-products-sidebar__recent-name {
	color: #09352c;
	text-decoration: underline;
}

.yakda-products-sidebar__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.yakda-products-sidebar__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	color: #1e3a5f;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.yakda-products-sidebar__social-icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.yakda-products-sidebar__social-icon img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	display: block;
}

.yakda-products-sidebar__social-icon:hover {
	transform: translateY(-2px);
	border-color: #9bcd2c;
	box-shadow: 0 10px 18px rgba(30, 58, 95, 0.14);
}

.yakda-products-sidebar__social-icon:focus {
	outline: 2px solid #9bcd2c;
	outline-offset: 2px;
}

/* Optional per-network accent on hover */
.yakda-products-sidebar__social-icon--facebook:hover { background: rgba(24, 119, 242, 0.10); color: #1877f2; border-color: rgba(24, 119, 242, 0.35); }
.yakda-products-sidebar__social-icon--instagram:hover { background: rgba(228, 64, 95, 0.10); color: #e4405f; border-color: rgba(228, 64, 95, 0.35); }
.yakda-products-sidebar__social-icon--youtube:hover { background: rgba(255, 0, 0, 0.10); color: #ff0000; border-color: rgba(255, 0, 0, 0.35); }
.yakda-products-sidebar__social-icon--linkedin:hover { background: rgba(10, 102, 194, 0.10); color: #0a66c2; border-color: rgba(10, 102, 194, 0.35); }

.yakda-products-sidebar__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 12px;
	width: 100%;
	padding: 12px 14px;
	border-radius: 10px;
	background: #9bcd2c;
	color: #1e3a5f;
	text-decoration: none;
	font-weight: 700;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.yakda-products-sidebar__cta:hover {
	background: #1e3a5f;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(30, 58, 95, 0.25);
}

@media (min-width: 992px) {
	.yakda-products-sidebar {
		position: sticky;
		top: 110px;
	}
}

/* Category Archive Header - image only when has image, proper height */
.yakda-category-archive__header {
	position: relative;
	min-height: 360px;
	padding: 100px 0;
	margin-bottom: 48px;
	display: flex;
	align-items: flex-end;
	background: linear-gradient(60deg, #254740 0%, #52cbd4 100%);
}

.yakda-category-archive__header--has-image {
	background: transparent;
	min-height: 400px;
	padding: 0;
	align-items: flex-end;
}

@media (min-width: 768px) {
	.yakda-category-archive__header {
		min-height: 420px;
		padding: 120px 0;
	}

	.yakda-category-archive__header--has-image {
		min-height: 500px;
	}
}

.yakda-category-archive__content {
	position: relative;
	z-index: 2;
	width: 100%;
	align-self: flex-end;
}

.yakda-category-archive__header {
	overflow: hidden;
}

.yakda-category-archive__content {
	background: rgba(0, 0, 0, 0.6);
	padding: 48px 0 40px;
}

.yakda-category-archive__header--has-image .yakda-category-archive__content {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.yakda-category-archive__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center!important;
	background-repeat: repeat-x!important;
}

.yakda-category-archive__header--has-image .yakda-category-archive__bg {
	opacity: 1;
	background: #09352c;
}

.yakda-category-archive__title {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
}

.yakda-category-archive__desc {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	line-height: 1.6;
	max-width: 640px;
}

/* Products Grid (Archive) */
.yakda-category-archive__products {
	padding-bottom: 48px;
}
/* Products archive: tighten category cards section spacing */
.post-type-archive-products .yakda-product-categories {
	margin-top: 0;
	padding-top: 0;
}
.yakda-product-categories__header
{
    display :none;
}
.yakda-archive-page .yakda-container
{
    margin-top :0px!important;
    padding:0px!important;
}
.yakda-products-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}
/* Pagination (the_posts_pagination) */
.yakda-archive-page .navigation.pagination {
	margin: 40px 0 0;
	display: flex;
	justify-content: center;
}

/* Pagination styling (numbers, dots, prev/next) */
.yakda-archive-page .nav-links,
.post-type-archive-products .nav-links,
.tax-product_category .nav-links,
.yakda-products-archive .nav-links,
.yakda-category-archive .nav-links {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.yakda-archive-page .page-numbers,
.post-type-archive-products .page-numbers,
.tax-product_category .page-numbers,
.yakda-products-archive .page-numbers,
.yakda-category-archive .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	color: #1e3a5f;
	background: #fff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.yakda-archive-page .page-numbers.prev,
.yakda-archive-page .page-numbers.next,
.post-type-archive-products .page-numbers.prev,
.post-type-archive-products .page-numbers.next,
.tax-product_category .page-numbers.prev,
.tax-product_category .page-numbers.next,
.yakda-products-archive .page-numbers.prev,
.yakda-products-archive .page-numbers.next,
.yakda-category-archive .page-numbers.prev,
.yakda-category-archive .page-numbers.next {
	padding: 0 14px;
}

.yakda-archive-page .page-numbers:hover,
.post-type-archive-products .page-numbers:hover,
.tax-product_category .page-numbers:hover,
.yakda-products-archive .page-numbers:hover,
.yakda-category-archive .page-numbers:hover {
	background: #f8fafc;
	border-color: #9bcd2c;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(30, 58, 95, 0.12);
}

.yakda-archive-page .page-numbers.current,
.post-type-archive-products .page-numbers.current,
.tax-product_category .page-numbers.current,
.yakda-products-archive .page-numbers.current,
.yakda-category-archive .page-numbers.current {
	background: #1e3a5f;
	border-color: #1e3a5f;
	color: #fff;
	box-shadow: 0 8px 18px rgba(30, 58, 95, 0.25);
}

.yakda-archive-page .page-numbers.dots,
.post-type-archive-products .page-numbers.dots,
.tax-product_category .page-numbers.dots,
.yakda-products-archive .page-numbers.dots,
.yakda-category-archive .page-numbers.dots {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	min-width: auto;
	padding: 0 6px;
	transform: none;
}

@media (min-width: 576px) {
	.yakda-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.yakda-products-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 28px;
	}
}

/* Related products: 4 cards per row on desktop */
@media (min-width: 992px) {
	.yakda-related-products .yakda-products-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.yakda-product-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(30, 58, 95, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
}

.yakda-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(30, 58, 95, 0.12);
}

.yakda-product-card__link {
	display: block;
	text-decoration: none;
}

.yakda-product-card__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.yakda-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.yakda-product-card:hover .yakda-product-card__image img {
	transform: scale(1.05);
}

.yakda-product-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f4f8;
	color: #1e3a5f;
}

.yakda-product-card__placeholder .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
}

.yakda-product-card__content {
	padding: 20px;
}

.yakda-product-card__title {
	margin: 0 0 8px;
	color: #1e3a5f;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.3;
}

.yakda-product-card__desc {
	margin: 0 0 12px;
	color: #4a5568;
	font-size: 0.875rem;
	line-height: 1.5;
}

.yakda-product-card__btn {
	font-size: 0.875rem;
	font-weight: 600;
	color: #c9a227;
}

/* Single Product - proper margin like homepage */
.yakda-single-product-page .yakda-container {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	margin-top:200px
}

.yakda-single-product__top-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

}

.yakda-breadcrumb {
	font-size: 0.9rem;
	color: #4a5568;
}

.yakda-breadcrumb a {
	color: #1e3a5f;
	text-decoration: none;
	font-weight: 500;
}

.yakda-breadcrumb a:hover {
	text-decoration: underline;
}

.yakda-breadcrumb__sep {
	margin: 0 6px;
	color: #9ca3af;
}

.yakda-breadcrumb__current {
	color: #6b7280;
	font-weight: 500;
}

.yakda-products-search--single {
	max-width: 420px;
	margin-left: auto;
}

/* Category nav row (top of single product) */
.yakda-product-cats-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 50px;
	font-size: 0.95rem;
	justify-content: center;
	
}

.yakda-product-cats-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #1e3a5f;
	text-decoration: none;
	font-weight: 500;
}

.yakda-product-cats-nav__caret {
	font-size: 0.7rem;
	color: #6b7280;
}

/* Product tags nav on single page */
.yakda-product-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 28px;
	font-size: 0.95rem;
}

.yakda-product-tags__link {
	position: relative;
	color: #1e3a5f;
	text-decoration: none;
	font-weight: 500;
	padding-bottom: 6px;
}

.yakda-product-tags__link::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: #e11d48; /* subtle red underline similar to screenshot */
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.yakda-product-tags__link:hover::after {
	transform: scaleX(1);
}

/* Single Product Banner - same structure/spacing as archive banners */
.yakda-single-product__banner {
	min-height: 360px;
	margin-bottom: 48px;
	background: linear-gradient(60deg, #254740 0%, #52cbd4 100%);
	display: flex;
	align-items: center;
	overflow: hidden;
}

.yakda-single-product__banner .yakda-archive-banner__overlay {
	width: 100%;
	padding: 100px 0;
	margin-top:100px;
}

@media (min-width: 768px) {
	.yakda-single-product__banner {
		min-height: 420px;
	}

	.yakda-single-product__banner .yakda-archive-banner__overlay {
		padding: 120px 0;
	}
}

.yakda-single-product__categories {
	margin-bottom: 8px;
}

.yakda-single-product__categories a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	margin-right: 12px;
}

.yakda-single-product__categories a:hover {
	text-decoration: underline;
	color: #c9a227;
}

.yakda-single-product__banner-title {
	margin: 0;
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.25;
}

/* Related Products */
.yakda-related-products {
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid #e2e8f0;
}

.yakda-related-products__title {
	margin: 0 0 24px;
	color: #1e3a5f;
	font-size: 1.5rem;
	font-weight: 700;
}

/* Single Product */
.yakda-single-product {
	padding: 0 0 80px;
}

/* Give single product page a light grey canvas so white cards stand out */
.yakda-single-product-page {
	background: #f8f9fb;
}

.yakda-single-product-page .yakda-container {
	padding-top: 32px;
}

.yakda-product {
	display: grid;
	gap: 48px;
}

/* Product info card */
.yakda-product__info {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	border: 1px solid rgba(30, 58, 95, 0.08);
	box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
}

/* Default: no sticky on small screens */
.yakda-product__gallery {
	position: static;
}

/* Desktop: make gallery sticky while scrolling */
@media (min-width: 992px) {
	.yakda-product {
		grid-template-columns: 1.1fr 1.2fr;
	}

	.yakda-product__gallery {
		position: sticky;
		top: 100px;
	}
}

.yakda-product__main-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	cursor: zoom-in;
}

/* Product image lightbox */
.yakda-product-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	overflow: auto;
}

.yakda-product-lightbox__inner {
	max-width: 80vw;
}

.yakda-product-lightbox__inner img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.yakda-product-lightbox__close {
	position: absolute;
	top: 20px;
	right: 24px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	color: #1e293b;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.yakda-product-lightbox__close:hover {
	background: #ffffff;
}

.yakda-product-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	color: #1e293b;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.yakda-product-lightbox__nav--prev {
	left: 20px;
}

.yakda-product-lightbox__nav--next {
	right: 20px;
}

.yakda-product-lightbox__nav:hover {
	background: #ffffff;
}

.yakda-product__thumbs {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.yakda-product__thumb {
	cursor: pointer;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid transparent;
}

.yakda-product__thumb img {
	display: block;
	width: 80px;
	height: 80px;
	object-fit: cover;
}

.yakda-product__placeholder {
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f4f8;
	border-radius: 12px;
	color: #1e3a5f;
}

.yakda-product__placeholder .dashicons {
	font-size: 80px;
	width: 80px;
	height: 80px;
}

.yakda-product__categories {
	margin-bottom: 12px;
}

.yakda-product__categories a {
	font-size: 0.875rem;
	color: #c9a227;
	text-decoration: none;
	margin-right: 8px;
}

.yakda-product__categories a:hover {
	text-decoration: underline;
}

.yakda-product__title {
	margin: 0 0 16px;
	color: #1e3a5f;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
}

.yakda-product__short-desc {
	margin: 0 0 20px;
	color: #4a5568;
	font-size: 1.125rem;
	line-height: 1.6;
}

.yakda-product__full-desc,
.yakda-product__specs {
	margin-bottom: 24px;
	color: #4a5568;
	line-height: 1.7;
}

.yakda-product__specs h3 {
	margin: 0 0 12px;
	color: #1e3a5f;
	font-size: 1.25rem;
}

.yakda-product__pdf-btn,
.yakda-product__inquiry-btn {
	display: inline-block;
	padding: 12px 24px;
	margin-right: 12px;
	margin-bottom: 12px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.yakda-product__pdf-btn {
	background: #1e3a5f;
	color: #fff;
}

.yakda-product__inquiry-btn {
	background: #25D366;
	color: #fff;
}

.yakda-product__pdf-btn:hover,
.yakda-product__inquiry-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
	.yakda-product {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
	.yakda-product__gallery {
	position: unset;

}
}
@media (max-width: 992px) {

	.yakda-product__gallery {
	position: unset;

}
}
/**
 * Product Archive & Single Product Styles
 *
 * @package Hello_Elementor_Child
 */

/* Archive page - proper width like homepage (left/right spaces) */
.yakda-archive-page {
	width: 100%;
	max-width: 100%;
}

.yakda-archive-page .yakda-container {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	margin-top:150px;
}

/* Archive title row - SEO title left, search right */
.yakda-archive-title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
}

.yakda-archive-page-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: #1e3a5f;
	line-height: 1.3;
}

.yakda-archive-title-row .yakda-products-search {
	margin-bottom: 0;
}

/* Product search - search bar with icon */
.yakda-products-search {
	display: block;
	max-width: 700px;
	width: 100%;
	margin-bottom: 28px;
}

/* Underline-style search - bottom border only */
.yakda-products-search--underline .yakda-products-search__field {
	position: relative;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #cfcfcf;
	transition: border-color 0.2s ease;
}

.yakda-products-search--underline .yakda-products-search__field:focus-within {
	border-bottom-color: #000;
}

.yakda-products-search--underline .yakda-products-search__input {
	width: 100%;
	height: 55px;
	padding: 0 40px 0 0;
	border: none;
	background: transparent;
	font-size: 1rem;
	line-height: 1.5;
	color: #333;
	-webkit-appearance: none;
	appearance: none;
}

/* Hide browser default clear (X) button on search input */
.yakda-products-search--underline .yakda-products-search__input::-webkit-search-cancel-button,
.yakda-products-search--underline .yakda-products-search__input::-webkit-search-decoration {
	-webkit-appearance: none;
	appearance: none;
}

.yakda-products-search--underline .yakda-products-search__input::-moz-search-cancel-button {
	display: none;
}

.yakda-products-search--underline .yakda-products-search__input::placeholder {
	color: #9a9a9a;
}

.yakda-products-search--underline .yakda-products-search__input:focus {
	outline: none;
}

.yakda-products-search__action {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	padding: 0;
	background: transparent;
	border: none;
	color: #9a9a9a;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s;
}

.yakda-products-search__action:hover {
	color: #333;
}

.yakda-products-search__action .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.yakda-products-search__action--clear {
	font-family: inherit;
}

/* Fallback for non-underline search (if used elsewhere) */
.yakda-products-search:not(.yakda-products-search--underline) {
	position: relative;
}

.yakda-products-search:not(.yakda-products-search--underline) .yakda-products-search__input {
	padding: 14px 20px 14px 48px;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	font-size: 1rem;
	line-height: 1.5;
	color: #1e3a5f;
	background: #fff;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* Category filter buttons - icon + text, links to category archives */
.yakda-category-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 32px;
}

.yakda-category-filter__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	text-decoration: none;
	color: #1e3a5f;
	font-size: 0.9375rem;
	font-weight: 500;
	transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
	box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
}

.yakda-category-filter__item:hover {
	background: #f8fafc;
	border-color: #c9a227;
	box-shadow: 0 4px 12px rgba(201, 162, 39, 0.15);
}

.yakda-category-filter__item--active {
	background: #09352c;
	border-color: #1e3a5f;
	color: #fff;
	box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}

.yakda-category-filter__item--active:hover {
	background: #2d5a87;
	border-color: #2d5a87;
	color: #fff;
}

.yakda-category-filter__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 8px;
	overflow: hidden;
	background: #f0f4f8;
	flex-shrink: 0;
}

.yakda-category-filter__item--active .yakda-category-filter__icon {
	background: rgba(255, 255, 255, 0.2);
}

.yakda-category-filter__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.yakda-category-filter__icon .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.yakda-category-filter__item--active .yakda-category-filter__icon .dashicons {
	color: #fff;
}

/* Archive Banner - black overlay + slide-from-top animation */
.yakda-archive-banner__overlay {
	width: 100%;
	background: rgba(0, 0, 0, 0.75);
	animation: yakda-banner-slide-down 0.8s ease-out forwards;
	margin-top: 100px;
}

.yakda-archive-banner__inner {
	opacity: 0;
	animation: yakda-banner-text-fade 0.6s ease-out 0.3s forwards;
	margin-top:100px;
}

/* Products archives: no dark overlay, no banner animations */
.yakda-products-archive__header .yakda-archive-banner__overlay,
.yakda-category-archive__header .yakda-archive-banner__overlay,
.yakda-category-archive__content.yakda-archive-banner__overlay {
	background: transparent;
	animation: none;
}

.yakda-products-archive__header .yakda-archive-banner__inner,
.yakda-category-archive__header .yakda-archive-banner__inner,
.yakda-category-archive__content.yakda-archive-banner__overlay .yakda-archive-banner__inner {
	opacity: 1;
	animation: none;
}

@keyframes yakda-banner-slide-down {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes yakda-banner-text-fade {
	to {
		opacity: 1;
	}
}

/* Products Archive Header */
.yakda-products-archive__header {
	min-height: 360px;
	margin-bottom: 48px;
	background: linear-gradient(60deg, #254740 0%, #52cbd4 100%);
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-top: 100px;
}

.yakda-products-archive__header .yakda-archive-banner__overlay {
	padding: 100px 0;
	background: transparent;
	animation: none;
	margin-top:100px;
}

.yakda-products-archive__header .yakda-archive-banner__inner {
	opacity: 1;
	animation: none;
}

/* @media (min-width: 768px) {
	.yakda-products-archive__header {
		min-height: 420px;
	}

	.yakda-products-archive__header .yakda-archive-banner__overlay {
		padding: 120px 0;
	}
} */

.yakda-products-archive__title {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
}

.yakda-products-archive__desc {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
}

.yakda-products-archive__grid-wrap {
	padding-bottom: 48px;
}

/* Archive layout with sidebar */
.yakda-products-archive__layout {
	display: grid;
	gap: 32px;
	align-items: start;
}

@media (min-width: 992px) {
	.yakda-products-archive__layout {
		grid-template-columns: 1fr 360px;
	}
}

.yakda-products-sidebar {
	position: relative;
}

.yakda-products-sidebar__card {
	background: #fff;
	border-radius: 14px;
	padding: 18px 18px;
	border: 1px solid rgba(30, 58, 95, 0.08);
	box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
	margin-bottom: 18px;
}

.yakda-products-sidebar__title {
	margin: 0 0 10px;
	color: #1e3a5f;
	font-size: 1.05rem;
	font-weight: 700;
}

.yakda-products-sidebar__text {
	margin: 0;
	color: #4a5568;
	font-size: 0.95rem;
	line-height: 1.6;
}

.yakda-products-sidebar__muted {
	margin: 0;
	color: #6b7280;
	font-size: 0.95rem;
}

.yakda-products-sidebar__recent-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.yakda-products-sidebar__recent-link {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 12px;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.yakda-products-sidebar__recent-thumb {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	object-fit: cover;
	background: #f0f4f8;
	border: 1px solid rgba(30, 58, 95, 0.08);
}

.yakda-products-sidebar__recent-thumb--placeholder {
	display: block;
}

.yakda-products-sidebar__recent-name {
	color: #1e3a5f;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.3;
}

.yakda-products-sidebar__recent-link:hover .yakda-products-sidebar__recent-name {
	color: #09352c;
	text-decoration: underline;
}

.yakda-products-sidebar__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.yakda-products-sidebar__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	color: #1e3a5f;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.yakda-products-sidebar__social-icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.yakda-products-sidebar__social-icon img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	display: block;
}

.yakda-products-sidebar__social-icon:hover {
	transform: translateY(-2px);
	border-color: #9bcd2c;
	box-shadow: 0 10px 18px rgba(30, 58, 95, 0.14);
}

.yakda-products-sidebar__social-icon:focus {
	outline: 2px solid #9bcd2c;
	outline-offset: 2px;
}

/* Optional per-network accent on hover */
.yakda-products-sidebar__social-icon--facebook:hover { background: rgba(24, 119, 242, 0.10); color: #1877f2; border-color: rgba(24, 119, 242, 0.35); }
.yakda-products-sidebar__social-icon--instagram:hover { background: rgba(228, 64, 95, 0.10); color: #e4405f; border-color: rgba(228, 64, 95, 0.35); }
.yakda-products-sidebar__social-icon--youtube:hover { background: rgba(255, 0, 0, 0.10); color: #ff0000; border-color: rgba(255, 0, 0, 0.35); }
.yakda-products-sidebar__social-icon--linkedin:hover { background: rgba(10, 102, 194, 0.10); color: #0a66c2; border-color: rgba(10, 102, 194, 0.35); }

.yakda-products-sidebar__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 12px;
	width: 100%;
	padding: 12px 14px;
	border-radius: 10px;
	background: #9bcd2c;
	color: #1e3a5f;
	text-decoration: none;
	font-weight: 700;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.yakda-products-sidebar__cta:hover {
	background: #1e3a5f;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(30, 58, 95, 0.25);
}

@media (min-width: 992px) {
	.yakda-products-sidebar {
		position: sticky;
		top: 110px;
	}
}

/* Category Archive Header - image only when has image, proper height */
.yakda-category-archive__header {
	position: relative;
	min-height: 360px;
	padding: 100px 0;
	margin-bottom: 48px;
	display: flex;
	align-items: flex-end;
	background: linear-gradient(60deg, #254740 0%, #52cbd4 100%);
}

.yakda-category-archive__header--has-image {
	background: transparent;
	min-height: 400px;
	padding: 0;
	align-items: flex-end;
}

@media (min-width: 768px) {
	.yakda-category-archive__header {
		min-height: 420px;
		padding: 120px 0;
	}

	.yakda-category-archive__header--has-image {
		min-height: 500px;
	}
}

.yakda-category-archive__content {
	position: relative;
	z-index: 2;
	width: 100%;
	align-self: flex-end;
}

.yakda-category-archive__header {
	overflow: hidden;
}

.yakda-category-archive__content {
	background: rgba(0, 0, 0, 0.6);
	padding: 48px 0 40px;
}

.yakda-category-archive__header--has-image .yakda-category-archive__content {
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}

.yakda-category-archive__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center!important;
	background-repeat: repeat-x!important;
}

.yakda-category-archive__header--has-image .yakda-category-archive__bg {
	opacity: 1;
	background: #09352c;
}

.yakda-category-archive__title {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
}

.yakda-category-archive__desc {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	line-height: 1.6;
	max-width: 640px;
}

/* Products Grid (Archive) */
.yakda-category-archive__products {
	padding-bottom: 48px;
}

.yakda-products-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}
/* Pagination (the_posts_pagination) */
.yakda-archive-page .navigation.pagination {
	margin: 40px 0 0;
	display: flex;
	justify-content: center;
}

/* Pagination styling (numbers, dots, prev/next) */
.yakda-archive-page .nav-links,
.post-type-archive-products .nav-links,
.tax-product_category .nav-links,
.yakda-products-archive .nav-links,
.yakda-category-archive .nav-links {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}

.yakda-archive-page .page-numbers,
.post-type-archive-products .page-numbers,
.tax-product_category .page-numbers,
.yakda-products-archive .page-numbers,
.yakda-category-archive .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	color: #1e3a5f;
	background: #fff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.yakda-archive-page .page-numbers.prev,
.yakda-archive-page .page-numbers.next,
.post-type-archive-products .page-numbers.prev,
.post-type-archive-products .page-numbers.next,
.tax-product_category .page-numbers.prev,
.tax-product_category .page-numbers.next,
.yakda-products-archive .page-numbers.prev,
.yakda-products-archive .page-numbers.next,
.yakda-category-archive .page-numbers.prev,
.yakda-category-archive .page-numbers.next {
	padding: 0 14px;
}

.yakda-archive-page .page-numbers:hover,
.post-type-archive-products .page-numbers:hover,
.tax-product_category .page-numbers:hover,
.yakda-products-archive .page-numbers:hover,
.yakda-category-archive .page-numbers:hover {
	background: #f8fafc;
	border-color: #9bcd2c;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(30, 58, 95, 0.12);
}

.yakda-archive-page .page-numbers.current,
.post-type-archive-products .page-numbers.current,
.tax-product_category .page-numbers.current,
.yakda-products-archive .page-numbers.current,
.yakda-category-archive .page-numbers.current {
	background: #1e3a5f;
	border-color: #1e3a5f;
	color: #fff;
	box-shadow: 0 8px 18px rgba(30, 58, 95, 0.25);
}

.yakda-archive-page .page-numbers.dots,
.post-type-archive-products .page-numbers.dots,
.tax-product_category .page-numbers.dots,
.yakda-products-archive .page-numbers.dots,
.yakda-category-archive .page-numbers.dots {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	min-width: auto;
	padding: 0 6px;
	transform: none;
}

@media (min-width: 576px) {
	.yakda-products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.yakda-products-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 28px;
	}
}

/* Related products: 4 cards per row on desktop */
@media (min-width: 992px) {
	.yakda-related-products .yakda-products-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.yakda-product-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(30, 58, 95, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
}

.yakda-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(30, 58, 95, 0.12);
}

.yakda-product-card__link {
	display: block;
	text-decoration: none;
}

.yakda-product-card__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.yakda-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s;
}

.yakda-product-card:hover .yakda-product-card__image img {
	transform: scale(1.05);
}

.yakda-product-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f4f8;
	color: #1e3a5f;
}

.yakda-product-card__placeholder .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
}

.yakda-product-card__content {
	padding: 20px;
}

.yakda-product-card__title {
	margin: 0 0 8px;
	color: #1e3a5f;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.3;
}

.yakda-product-card__desc {
	margin: 0 0 12px;
	color: #4a5568;
	font-size: 0.875rem;
	line-height: 1.5;
}

.yakda-product-card__btn {
	font-size: 0.875rem;
	font-weight: 600;
	color: #c9a227;
}

/* Single Product - proper margin like homepage */
.yakda-single-product-page .yakda-container {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	margin-top:200px
}

.yakda-single-product__top-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

}

.yakda-breadcrumb {
	font-size: 0.9rem;
	color: #4a5568;
}

.yakda-breadcrumb a {
	color: #1e3a5f;
	text-decoration: none;
	font-weight: 500;
}

.yakda-breadcrumb a:hover {
	text-decoration: underline;
}

.yakda-breadcrumb__sep {
	margin: 0 6px;
	color: #9ca3af;
}

.yakda-breadcrumb__current {
	color: #6b7280;
	font-weight: 500;
}

.yakda-products-search--single {
	max-width: 420px;
	margin-left: auto;
}

/* Category nav row (top of single product) */


.yakda-product-cats-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #1e3a5f;
	text-decoration: none;
	font-weight: 500;
}

.yakda-product-cats-nav__caret {
	font-size: 0.7rem;
	color: #6b7280;
}

/* Product tags nav on single page */
.yakda-product-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 28px;
	font-size: 0.95rem;
}

.yakda-product-tags__link {
	position: relative;
	color: #1e3a5f;
	text-decoration: none;
	font-weight: 500;
	padding-bottom: 6px;
}

.yakda-product-tags__link::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: #e11d48; /* subtle red underline similar to screenshot */
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.yakda-product-tags__link:hover::after {
	transform: scaleX(1);
}

/* Single Product Banner - same structure/spacing as archive banners */
.yakda-single-product__banner {
	min-height: 360px;
	margin-bottom: 48px;
	background: linear-gradient(60deg, #254740 0%, #52cbd4 100%);
	display: flex;
	align-items: center;
	overflow: hidden;
}

.yakda-single-product__banner .yakda-archive-banner__overlay {
	width: 100%;
	padding: 100px 0;
	margin-top:100px;
}

@media (min-width: 768px) {
	.yakda-single-product__banner {
		min-height: 420px;
	}

	.yakda-single-product__banner .yakda-archive-banner__overlay {
		padding: 120px 0;
	}
}

.yakda-single-product__categories {
	margin-bottom: 8px;
}

.yakda-single-product__categories a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	margin-right: 12px;
}

.yakda-single-product__categories a:hover {
	text-decoration: underline;
	color: #c9a227;
}

.yakda-single-product__banner-title {
	margin: 0;
	color: #fff;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.25;
}

/* Related Products */
.yakda-related-products {
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid #e2e8f0;
}

.yakda-related-products__title {
	margin: 0 0 24px;
	color: #1e3a5f;
	font-size: 1.5rem;
	font-weight: 700;
}

/* Single Product */
.yakda-single-product {
	padding: 0 0 80px;
}

/* Give single product page a light grey canvas so white cards stand out */
.yakda-single-product-page {
	background: #f8f9fb;
}

.yakda-single-product-page .yakda-container {
	padding-top: 32px;
}

.yakda-product {
	display: grid;
	gap: 48px;
}

/* Product info card */
.yakda-product__info {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	border: 1px solid rgba(30, 58, 95, 0.08);
	box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
}

/* Default: no sticky on small screens */
.yakda-product__gallery {
	position: static;
}

/* Desktop: make gallery sticky while scrolling */
@media (min-width: 992px) {
	.yakda-product {
		grid-template-columns: 1.1fr 1.2fr;
	}

	.yakda-product__gallery {
		position: sticky;
		top: 100px;
	}
}

.yakda-product__main-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	cursor: zoom-in;
}

/* Product image lightbox */
.yakda-product-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	overflow: auto;
}

.yakda-product-lightbox__inner {
	max-width: 80vw;
}

.yakda-product-lightbox__inner img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.yakda-product-lightbox__close {
	position: absolute;
	top: 20px;
	right: 24px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	color: #1e293b;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.yakda-product-lightbox__close:hover {
	background: #ffffff;
}

.yakda-product-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	color: #1e293b;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.yakda-product-lightbox__nav--prev {
	left: 20px;
}

.yakda-product-lightbox__nav--next {
	right: 20px;
}

.yakda-product-lightbox__nav:hover {
	background: #ffffff;
}

.yakda-product__thumbs {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}

.yakda-product__thumb {
	cursor: pointer;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid transparent;
}

.yakda-product__thumb img {
	display: block;
	width: 80px;
	height: 80px;
	object-fit: cover;
}

.yakda-product__placeholder {
	aspect-ratio: 4 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f4f8;
	border-radius: 12px;
	color: #1e3a5f;
}

.yakda-product__placeholder .dashicons {
	font-size: 80px;
	width: 80px;
	height: 80px;
}

.yakda-product__categories {
	margin-bottom: 12px;
}

.yakda-product__categories a {
	font-size: 0.875rem;
	color: #c9a227;
	text-decoration: none;
	margin-right: 8px;
}

.yakda-product__categories a:hover {
	text-decoration: underline;
}

.yakda-product__title {
	margin: 0 0 16px;
	color: #1e3a5f;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.25;
}

.yakda-product__short-desc {
	margin: 0 0 20px;
	color: #4a5568;
	font-size: 1.125rem;
	line-height: 1.6;
}

.yakda-product__full-desc,
.yakda-product__specs {
	margin-bottom: 24px;
	color: #4a5568;
	line-height: 1.7;
}

.yakda-product__specs h3 {
	margin: 0 0 12px;
	color: #1e3a5f;
	font-size: 1.25rem;
}

.yakda-product__pdf-btn,
.yakda-product__inquiry-btn {
	display: inline-block;
	padding: 12px 24px;
	margin-right: 12px;
	margin-bottom: 12px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}

.yakda-product__pdf-btn {
	background: #1e3a5f;
	color: #fff;
}

.yakda-product__inquiry-btn {
	background: #25D366;
	color: #fff;
}

.yakda-product__pdf-btn:hover,
.yakda-product__inquiry-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
	.yakda-product {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
	.yakda-product__gallery {
	position: unset;

}
}
@media (max-width: 992px) {

	.yakda-product__gallery {
	position: unset;

}
}
