@font-face {
	font-family: "irsans";
	src: url("../fonts/IRANSans.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--yc-text-font: "irsans", Tahoma, Arial, Helvetica, sans-serif;
	--yc-text-color: #767676;
	--yc-title-color: #242424;
	--yc-nav-color: #333333;
	--yc-primary: #83b735;
	--yc-primary-dark: #74a32f;
	--yc-link: rgb(131, 183, 53);
	--yc-link-hover: rgb(82, 145, 1);
	--yc-green-bar: #82b735;
	--yc-green-border: #007c0c;
	--yc-card-border: #039a00;
	--yc-gray-100: #f7f7f7;
	--yc-gray-200: #f5f5f5;
	--yc-gray-300: #bbb;
	--yc-gray-500: #a5a5a5;
	--yc-gray-800: #333;
	--yc-footer-bg: #f7f7f7;
	--yc-footer-bar: #515352;
	--yc-brands-bg: #b1b1b1;
	--yc-container: 1400px;
	--yc-container-narrow: 1140px;
	--yc-shop-container: 1222px;
	--yc-gutter: 15px;
	--yc-space-xs: 8px;
	--yc-space-sm: 12px;
	--yc-space-md: 20px;
	--yc-space-lg: 32px;
	--yc-gap-sm: 10px;
	--yc-gap-md: 16px;
	--yc-gap-lg: 24px;
	--yc-pad-card: 14px;
	--yc-section-space: clamp(28px, 3.5vw, 48px);
	--yc-border: #e6e6e6;
	--yc-border-strong: #d4d4d4;
	--yc-radius-sm: 6px;
	--yc-radius-md: 10px;
	--yc-radius: 10px;
	--yc-shadow-soft: 0 1px 2px rgba(36, 36, 36, 0.04), 0 6px 18px rgba(36, 36, 36, 0.06);
	--yc-focus: var(--yc-primary);
	--yc-duration: 0.2s;
	--yc-form-height: 46px;
	--yc-header-top: 42px;
	--yc-header-main: 104px;
	--yc-header-bottom: 50px;
	--yc-header-main-sm: 60px;
	--yc-star: #eabe12;
}

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

html {
	direction: rtl;
	scroll-behavior: auto;
	-webkit-text-size-adjust: 100%;
}

html,
body {
	margin: 0;
	padding: 0;
	max-width: 100%;
	overflow-x: hidden;
}

body {
	font-family: var(--yc-text-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--yc-text-color);
	background: #fff;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: middle;
}

a {
	color: var(--yc-link);
	text-decoration: none;
}

a:hover {
	color: var(--yc-link-hover);
}

button,
input,
select {
	font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--yc-text-font);
	font-weight: 600;
	color: var(--yc-title-color);
	line-height: 1.3;
	margin: 0 0 12px;
}

p {
	margin: 0 0 10px;
}

p:last-child {
	margin-bottom: 0;
}

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.yc-skip-link {
	position: absolute;
	right: 8px;
	top: -40px;
	z-index: 100000;
	padding: 8px 12px;
	background: #000;
	color: #fff;
}

.yc-skip-link:focus {
	top: 8px;
}

.yc-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.yc-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.yc-container,
.yc-container-narrow {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: var(--yc-gutter);
	padding-left: var(--yc-gutter);
}

.yc-container {
	max-width: var(--yc-container);
}

.yc-container-narrow {
	max-width: var(--yc-container-narrow);
}

.yc-center {
	text-align: center;
}

/* Buttons */
.yc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 5px 20px;
	border: 0;
	border-radius: var(--yc-radius-sm);
	background: var(--yc-gray-100);
	color: #333;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	text-decoration: none;
	transition: background-color var(--yc-duration) ease, color var(--yc-duration) ease;
}

.yc-btn:hover {
	background: #efefef;
	color: #333;
}

.yc-btn-green {
	background: var(--yc-primary);
	color: #fff;
}

.yc-btn-green:hover {
	background: var(--yc-primary-dark);
	color: #fff;
}

.yc-btn:focus-visible {
	outline: 2px solid var(--yc-focus);
	outline-offset: 2px;
}

.yc-btn-semi {
	border-radius: var(--yc-radius-sm);
}

.yc-btn-round {
	border-radius: 35px;
}

.yc-btn-rect {
	border-radius: 0;
}

.yc-btn-icon-left {
	flex-direction: row-reverse;
}

.yc-btn .yc-icon-arrow-left-circle svg {
	width: 18px;
	height: 18px;
}

/* Header */
.yc-header {
	position: relative;
	z-index: 390;
	background: #fff;
}

.yc-header.is-stuck .yc-topbar {
	display: none;
}

.yc-header.is-stuck .yc-header-main,
.yc-header.is-stuck .yc-header-bottom {
	position: relative;
}

.yc-header.is-stuck {
	position: sticky;
	top: 0;
	box-shadow: var(--yc-shadow-soft);
}

.admin-bar .yc-header.is-stuck {
	top: 32px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px dotted var(--yc-focus);
	outline-offset: 2px;
}

.yc-topbar {
	height: var(--yc-header-top);
	background: var(--yc-green-bar);
	color: #fff;
	font-size: 12px;
	line-height: 1.2;
}

.yc-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--yc-header-top);
}

.yc-topbar a {
	color: #fff;
}

.yc-topbar a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.yc-social {
	display: flex;
	align-items: center;
	gap: 6px;
}

.yc-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 14px;
}

.yc-social-light a {
	color: #fff;
	width: auto;
	height: auto;
	min-width: 24px;
	padding: 5px;
}

.yc-social-colored a {
	width: 30px;
	height: 30px;
	border-radius: 5px;
	color: #fff;
}

.yc-social-colored .yc-social-whatsapp {
	background: #1ebea5;
}

.yc-social-colored .yc-social-telegram {
	background: #37aee2;
}

.yc-header-main {
	height: var(--yc-header-main);
	border-bottom: 1px solid rgba(129, 129, 129, 0.2);
}

.yc-header-main-inner {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 10px;
}

.yc-logo {
	flex: 0 0 auto;
	padding: 0 10px;
}

.yc-logo img {
	display: block;
	max-width: 250px;
	width: auto;
	max-height: 90px;
	padding-top: 5px;
	padding-bottom: 5px;
	object-fit: contain;
}

.yc-mobile-toggle {
	display: none;
	align-items: center;
	gap: 6px;
	height: 40px;
	padding: 0 10px;
	border: 0;
	background: transparent;
	color: #333;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.yc-mobile-toggle .yc-icon {
	font-size: 20px;
}

.yc-search {
	position: relative;
	flex: 1 1 auto;
	max-width: 100%;
	padding: 0 10px;
}

.yc-search-input {
	width: 100%;
	height: var(--yc-form-height);
	padding: 0 20px 0 56px;
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 35px;
	background: #fff;
	color: #767676;
	font-size: 14px;
	outline: none;
}

.yc-search-input:focus {
	border-color: rgba(0, 0, 0, 0.15);
}

.yc-search-submit {
	position: absolute;
	top: 0;
	left: 10px;
	width: var(--yc-form-height);
	height: var(--yc-form-height);
	border: 0;
	background: transparent;
	color: #767676;
	cursor: pointer;
	font-size: 20px;
}

.yc-search-submit:hover {
	opacity: 0.7;
}

.yc-header-bottom {
	height: var(--yc-header-bottom);
}

.yc-header-bottom-inner {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 10px;
}

.yc-cats {
	position: relative;
	margin-inline: 10px;
	height: 100%;
}

.yc-cats-opener {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 270px;
	max-width: 320px;
	height: 100%;
	padding: 10px 15px;
	border: 0;
	border-top-left-radius: var(--yc-radius);
	border-top-right-radius: var(--yc-radius);
	background: var(--yc-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.yc-cats-opener .yc-icon-menu {
	font-size: 18px;
}

.yc-cats-caret {
	margin-inline-start: auto;
	font-size: 11px;
}

.yc-cats-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 400;
	min-width: 270px;
	background: #fff;
	border: 1px solid var(--yc-border);
	border-top: 0;
	border-radius: 0 0 var(--yc-radius) var(--yc-radius);
	box-shadow: var(--yc-shadow-soft);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.yc-cats:hover .yc-cats-dropdown,
.yc-cats:focus-within .yc-cats-dropdown,
.yc-cats.is-open .yc-cats-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.yc-cats-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 5px 18px;
	color: var(--yc-nav-color);
	font-size: 14px;
	font-weight: 500;
	border-bottom: 1px solid #f1f1f1;
}

.yc-cats-menu > li:last-child > a {
	border-bottom: 0;
}

.yc-cats-menu > li > a:hover,
.yc-cats-menu > li:hover > a {
	background: #f7f7f7;
	color: var(--yc-primary);
}

.yc-cats-menu > .menu-item-has-children > a::after {
	content: "";
	width: 6px;
	height: 6px;
	margin-inline-start: auto;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.yc-cats-menu .sub-menu {
	position: absolute;
	top: 0;
	right: 100%;
	min-width: 200px;
	background: #fff;
	border: 1px solid var(--yc-border);
	border-radius: var(--yc-radius);
	box-shadow: var(--yc-shadow-soft);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.yc-cats-menu > li:hover > .sub-menu,
.yc-cats-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.yc-cats-menu .sub-menu a {
	display: block;
	padding: 8px 16px;
	color: var(--yc-nav-color);
	font-size: 13px;
	white-space: nowrap;
}

.yc-cats-menu .sub-menu a:hover {
	background: #f7f7f7;
	color: var(--yc-primary);
}

.yc-main-nav {
	flex: 1 1 auto;
	min-width: 0;
}

.yc-primary-menu {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	height: 50px;
	gap: 4px;
}

.yc-primary-menu > li {
	position: relative;
	height: 100%;
}

.yc-primary-menu > li > a {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 12px;
	color: var(--yc-nav-color);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.yc-primary-menu > li > a:hover,
.yc-primary-menu > .current-menu-item > a {
	color: var(--yc-primary);
}

.yc-primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 4px);
	right: 0;
	z-index: 400;
	min-width: 220px;
	padding: 8px 0;
	background: #fff;
	border-radius: var(--yc-radius);
	box-shadow: var(--yc-shadow-soft);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.yc-primary-menu > li:hover > .sub-menu,
.yc-primary-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: none;
}

.yc-primary-menu .sub-menu a {
	display: block;
	padding: 8px 18px;
	color: var(--yc-nav-color);
	font-size: 13px;
	font-weight: 400;
}

.yc-primary-menu .sub-menu a:hover {
	color: var(--yc-primary);
	background: #f7f7f7;
}

.yc-header-cta {
	flex: 0 0 auto;
	padding: 0 10px;
}

/* Main */
.yc-main {
	overflow: hidden;
}

.yc-hero {
	margin-top: -50px;
}

.yc-hero img {
	display: block;
	width: 100%;
	height: auto;
}

.yc-intro {
	margin-top: var(--yc-space-lg);
}

.yc-intro-box {
	max-width: 59.333%;
	margin: 0 auto;
	padding: var(--yc-space-md);
	background: #fff;
	border-style: solid;
	border-width: 1px 0 2px;
	border-color: var(--yc-green-border);
	border-radius: var(--yc-radius);
	box-shadow: var(--yc-shadow-soft);
	text-align: center;
}

.yc-section {
	margin-top: var(--yc-section-space);
}

.yc-section-title {
	margin-bottom: var(--yc-space-md);
	text-align: center;
}

.yc-section-title h2 {
	display: inline-block;
	margin: 0;
	font-size: 22px;
	font-weight: 600;
	color: var(--yc-title-color);
}

.yc-title-underlined h2 {
	font-size: 17px;
	color: #000;
	padding-bottom: 10px;
	margin-bottom: -2px;
	border-bottom: 2px solid var(--yc-primary);
}

.yc-title-underlined {
	border-bottom: 2px solid #e1e1e1;
}

.yc-brand-banners {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.yc-brand-banner img {
	display: block;
	width: 100%;
	border-radius: var(--yc-radius);
}

.yc-part-cats {
	margin-top: var(--yc-section-space);
}

.yc-part-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 20px;
}

.yc-part-card {
	text-align: center;
}

.yc-part-card img {
	display: block;
	width: 100%;
	margin: 0 auto 3px;
	border-style: solid;
	border-width: 1px 0 0;
	border-color: var(--yc-card-border);
	border-radius: 20px;
	box-shadow: var(--yc-shadow-soft);
	transition: transform var(--yc-duration) ease, box-shadow var(--yc-duration) ease;
}

.yc-part-card a:hover img {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(36, 36, 36, 0.1);
}

.yc-part-card h3 {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--yc-nav-color);
}

.yc-part-card a:hover h3 {
	color: var(--yc-primary);
}

.yc-faq-consult {
	margin-top: var(--yc-section-space);
}

.yc-faq-consult-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	align-items: start;
}

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

.yc-accordion-item {
	border-radius: var(--yc-radius);
	box-shadow: var(--yc-shadow-soft);
	background: #fff;
	overflow: hidden;
}

.yc-accordion-title {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 20px;
	border: 0;
	background: transparent;
	color: var(--yc-title-color);
	font-size: 16px;
	font-weight: 600;
	text-align: right;
	cursor: pointer;
}

.yc-accordion-title .yc-icon {
	color: var(--yc-gray-300);
	font-size: 10px;
	transition: transform 0.25s ease;
}

.yc-accordion-item.is-open .yc-accordion-title .yc-icon,
.yc-accordion-title:hover {
	color: var(--yc-primary);
}

.yc-accordion-item.is-open .yc-accordion-title .yc-icon {
	transform: rotate(180deg);
}

.yc-accordion-content {
	padding: 0 20px 20px;
	color: var(--yc-text-color);
	font-size: 14px;
}

.yc-survey {
	position: relative;
	min-height: 480px;
}

.yc-testimonials {
	margin-top: 50px;
	padding: 20px 0 10px;
	background: #f5f5f5;
}

.yc-carousel {
	position: relative;
}

.yc-carousel-viewport {
	overflow: hidden;
}

.yc-carousel-track {
	display: flex;
	transition: transform 0.35s ease;
}

.yc-carousel-slide {
	flex: 0 0 calc(100% / 3);
	padding: 0 15px;
	min-width: 0;
}

.yc-posts-carousel .yc-carousel-slide {
	flex-basis: 25%;
	padding: 0 10px;
}

.yc-carousel-prev,
.yc-carousel-next {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
	color: #333;
	cursor: pointer;
	transform: translateY(-50%);
}

.yc-carousel-prev {
	right: -8px;
}

.yc-carousel-next {
	left: -8px;
}

.yc-carousel-next .yc-icon {
	transform: scaleX(-1);
}

.yc-carousel-prev.is-disabled,
.yc-carousel-next.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}

.yc-testimonial {
	text-align: center;
}

.yc-testimonial-avatar {
	margin-bottom: 15px;
}

.yc-testimonial-avatar img {
	width: 90px;
	height: 90px;
	min-width: 60px;
	max-width: 100px;
	border-radius: 50%;
	object-fit: cover;
}

.yc-stars {
	display: flex;
	justify-content: center;
	gap: 2px;
	margin-bottom: 10px;
	color: var(--yc-star);
	font-size: 14px;
	letter-spacing: 2px;
}

.yc-testimonial footer {
	margin-top: 15px;
	color: #242424;
	font-weight: 600;
}

.yc-testimonial footer span {
	color: var(--yc-gray-500);
	font-weight: 400;
}

.yc-testimonial footer span::before {
	content: " - ";
}

.yc-all-products {
	margin: var(--yc-section-space) 0;
	padding: var(--yc-space-md) 0;
	background: #fff;
}

.yc-blog {
	margin: var(--yc-section-space) 0;
}

.yc-post-inner {
	position: relative;
	border-radius: var(--yc-radius);
	overflow: hidden;
}

.yc-post-thumb {
	position: relative;
	overflow: hidden;
	border-radius: var(--yc-radius);
}

.yc-post-thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0, 0, 0.44, 1.18);
}

.yc-post-card:hover .yc-post-thumb img {
	transform: scale(1.1);
}

.yc-post-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.yc-post-date {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 2;
	display: inline-flex;
	flex-direction: column;
	gap: 5px;
	min-width: 53px;
	padding: 7px;
	text-align: center;
	line-height: 1;
	border-radius: var(--yc-radius-sm);
	background: #fff;
	box-shadow: var(--yc-shadow-soft);
	color: var(--yc-gray-800);
}

.yc-post-day {
	font-size: 22px;
}

.yc-post-month {
	font-weight: 600;
	font-size: 12px;
}

.yc-post-title {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 2;
	margin: 0;
	padding: 50px 25px 15px;
	font-size: 16px;
	font-weight: 500;
	background: linear-gradient(to bottom, transparent 5%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.8) 100%);
	pointer-events: none;
}

.yc-post-title a {
	color: #fff;
	pointer-events: auto;
}

.yc-post-title a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.yc-blog-more {
	margin-top: 30px;
}

.yc-seo {
	margin: 0 0 var(--yc-section-space);
}

.yc-seo-box {
	position: relative;
	padding: 10px 15px 10px 10px;
	border: 1px solid var(--yc-border);
	border-radius: var(--yc-radius);
	overflow: hidden;
	max-height: 600px;
}

.yc-seo-box.is-open {
	max-height: none;
}

.yc-seo-content {
	text-align: right;
}

.yc-seo-content h1 {
	font-size: 22px;
}

.yc-seo-content h2 {
	font-size: 18px;
	margin-top: 18px;
}

.yc-seo-content h3 {
	font-size: 16px;
	margin-top: 14px;
}

.yc-seo-box:not(.is-open)::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 10;
	height: 100px;
	background: linear-gradient(to bottom, transparent 0, #fff 45px);
	pointer-events: none;
}

.yc-seo-more {
	position: absolute;
	inset-inline: 10px;
	bottom: 10px;
	z-index: 11;
	text-align: center;
}

.yc-seo-box.is-open .yc-seo-more {
	position: static;
	margin-top: 16px;
}

.yc-seo-box.is-open::after {
	display: none;
}

/* Footer */
.yc-footer {
	background: #fff;
}

.yc-footer-features {
	background: var(--yc-footer-bg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 15px 0;
}

.yc-footer-features-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.yc-info-box {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 20px;
}

.yc-info-icon img {
	width: 50px;
	height: 50px;
}

.yc-info-title {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--yc-title-color);
	line-height: 1.3;
}

.yc-info-content p {
	margin-top: 10px;
}

.yc-footer-main {
	background: var(--yc-footer-bg);
	padding: 25px 15px 0;
}

.yc-footer-main-inner {
	display: grid;
	grid-template-columns: 25% 20% 16.758% 38.242%;
}

.yc-footer-col {
	padding: 0 10px 30px;
}

.yc-footer-logo {
	margin-bottom: 16px;
	text-align: center;
}

.yc-footer-about p {
	font-size: 13px;
	line-height: 22px;
	color: var(--yc-text-color);
}

.yc-footer-heading {
	display: block;
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 600;
	color: var(--yc-primary);
}

.yc-footer-menu > li > ul a {
	display: block;
	padding: 4px 0;
	color: #696969;
	font-size: 14px;
}

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

.yc-contact-list li {
	margin-bottom: 10px;
}

.yc-contact-list a {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #363636;
}

.yc-contact-list .yc-icon {
	color: var(--yc-primary);
	font-size: 14px;
	margin-top: 3px;
	flex: 0 0 auto;
}

.yc-footer-contact .yc-social {
	margin-top: 12px;
}

.yc-footer-brands-wrap {
	background: var(--yc-footer-bg);
	padding: 0 0 15px;
}

.yc-footer-brands {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 10px;
	max-width: 500px;
	margin: 0 auto 15px;
	padding: 20px 16px;
	background: var(--yc-brands-bg);
	border-radius: var(--yc-radius);
}

.yc-footer-brands a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 10px;
	padding: 6px 8px;
}

.yc-footer-brands a:nth-child(2) {
	background: transparent;
	padding: 0;
	max-width: 150px;
}

.yc-footer-brands img {
	display: block;
	max-height: 40px;
	width: auto;
}

.yc-footer-copy {
	background: var(--yc-footer-bar);
	padding: 2px 0;
	text-align: center;
}

.yc-footer-copy p {
	margin: 8px 0;
	color: #f0f0f0;
	font-size: 11px;
}

/* Overlay / mobile nav */
.yc-overlay {
	position: fixed;
	inset: 0;
	z-index: 500;
	background: rgba(0, 0, 0, 0.45);
}

.yc-overlay[hidden] {
	display: none;
}

.yc-mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 520;
	display: flex;
	flex-direction: column;
	width: min(360px, 88vw);
	height: 100%;
	background: #fff;
	box-shadow: -4px 0 24px rgba(36, 36, 36, 0.08);
	overflow: auto;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

.yc-mobile-nav.is-open {
	transform: none;
}

.yc-mobile-nav[hidden] {
	display: flex;
	visibility: hidden;
}

.yc-mobile-nav.is-open[hidden] {
	visibility: visible;
}

.yc-nav-open {
	overflow: hidden;
}

.yc-mobile-search {
	position: relative;
	box-shadow: 0 -1px 9px rgba(0, 0, 0, 0.17);
}

.yc-mobile-search input {
	width: 100%;
	height: 70px;
	padding: 0 20px 0 70px;
	border: 0;
	font-size: 14px;
	font-weight: 600;
	color: #a5a5a5;
	outline: none;
}

.yc-mobile-search button {
	position: absolute;
	top: 0;
	left: 0;
	width: 70px;
	height: 70px;
	border: 0;
	background: transparent;
	color: #a5a5a5;
	font-size: 22px;
	cursor: pointer;
}

.yc-mobile-tabs {
	display: flex;
	border-bottom: 1px solid #e1e1e1;
	background: rgba(0, 0, 0, 0.04);
}

.yc-mobile-tabs li {
	flex: 1 0 50%;
}

.yc-mobile-tab {
	width: 100%;
	padding: 18px 15px;
	border: 0;
	background: transparent;
	color: rgba(51, 51, 51, 0.5);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.yc-mobile-tab.is-active {
	color: #333;
	background: rgba(0, 0, 0, 0.09);
	box-shadow: inset 0 -2px 0 var(--yc-primary);
}

.yc-mobile-menu > li,
.yc-mobile-menu .sub-menu > li {
	display: flex;
	flex-wrap: wrap;
}

.yc-mobile-menu a {
	display: flex;
	align-items: center;
	flex: 1 1 0%;
	min-height: 50px;
	padding: 5px 20px;
	color: var(--yc-nav-color);
	border-bottom: 1px solid #e1e1e1;
}

.yc-mobile-menu a:hover {
	color: var(--yc-primary);
}

.yc-nav-opener {
	width: 50px;
	border: 0;
	border-right: 1px solid #e1e1e1;
	border-bottom: 1px solid #e1e1e1;
	background: transparent;
	color: #333;
	cursor: pointer;
	position: relative;
}

.yc-nav-opener::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	margin: 0 auto;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
}

.yc-nav-opener[aria-expanded="true"] {
	background: var(--yc-primary);
	color: #fff;
}

.yc-nav-opener[aria-expanded="true"]::after {
	transform: rotate(135deg);
}

.yc-mobile-menu .sub-menu {
	display: none;
	flex: 1 1 100%;
	background: #fafafa;
}

.yc-mobile-menu .is-open > .sub-menu {
	display: block;
}

.yc-toolbar {
	display: none;
}

.yc-float-cta {
	position: fixed;
	right: 20px;
	bottom: 30px;
	z-index: 999999;
}

.yc-float {
	position: relative;
	display: flex;
	align-items: center;
	width: 54px;
	height: 54px;
}

.yc-float-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 95px;
	z-index: 999999;
	width: 54px;
	height: 54px;
}

.yc-float-phone {
	position: fixed;
	right: 20px;
	bottom: 30px;
	z-index: 999999;
	width: 54px;
	height: 54px;
}

.yc-float svg {
	width: 54px;
	height: 54px;
	display: block;
}

.yc-float-label {
	position: absolute;
	right: 48px;
	bottom: 15px;
	width: max-content;
	padding: 5px 10px;
	border-radius: 5px 0 0 5px;
	color: #fff;
	font-size: 14px;
	line-height: 1em;
	white-space: nowrap;
	user-select: none;
}

.yc-float-label-wa {
	background: linear-gradient(90deg, #075e54, #25d366);
}

.yc-float-label-phone {
	width: 105px;
	text-align: center;
	background: linear-gradient(90deg, #0061b6, #1e88e5);
}

.yc-scrolltop {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 350;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.17);
	color: #333;
	font-size: 16px;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-100%);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.yc-scrolltop.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}

.yc-fallback {
	padding: 40px 0 80px;
}

.yc-fallback-title {
	font-size: 24px;
}

@media (min-width: 1400px) {
	.yc-hero img {
		width: 100%;
	}
}

@media (max-width: 1024px) {
	.yc-topbar {
		height: 40px;
	}

	.yc-topbar-inner {
		height: 40px;
		justify-content: center;
	}

	.yc-topbar-social,
	.yc-search,
	.yc-header-bottom,
	.yc-header-cta {
		display: none;
	}

	.yc-header-main {
		height: var(--yc-header-main-sm);
	}

	.yc-header-main-inner {
		justify-content: space-between;
	}

	.yc-mobile-toggle {
		display: inline-flex;
		flex: 1 1 0%;
		justify-content: flex-start;
	}

	.yc-logo {
		flex: 1 1 auto;
		display: flex;
		justify-content: center;
	}

	.yc-logo img {
		max-width: 200px;
		max-height: 50px;
	}

	.yc-hero {
		display: none;
	}

	.yc-intro {
		margin-top: 20px;
	}

	.yc-intro-box {
		max-width: 100%;
	}

	.yc-part-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.yc-faq-consult-inner,
	.yc-footer-features-inner,
	.yc-footer-main-inner {
		grid-template-columns: 1fr 1fr;
	}

	.yc-section-title h2,
	.yc-title-underlined h2 {
		font-size: 22px;
	}

	.yc-toolbar {
		position: fixed;
		inset-inline: 0;
		bottom: 0;
		z-index: 350;
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 55px;
		padding: 5px;
		background: #fff;
		box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
	}

	.yc-toolbar-item {
		flex: 1 0 20%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: 45px;
		padding-bottom: 15px;
		color: #333;
		position: relative;
		font-size: 20px;
	}

	.yc-toolbar-item span {
		position: absolute;
		inset-inline: 10px;
		bottom: 3px;
		font-size: 11px;
		font-weight: 600;
		line-height: 1;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		text-align: center;
	}

	body {
		padding-bottom: 55px;
	}

	.yc-float-whatsapp {
		bottom: 130px;
		width: 50px;
		height: 50px;
	}

	.yc-float-phone {
		bottom: 70px;
		width: 50px;
		height: 50px;
	}

	.yc-float svg {
		width: 50px;
		height: 50px;
	}

	.yc-scrolltop {
		left: 12px;
		bottom: 67px;
		width: 40px;
		height: 40px;
	}

	.admin-bar .yc-header.is-stuck {
		top: 46px;
	}

	.yc-carousel-prev,
	.yc-carousel-next {
		display: none;
	}
}

@media (max-width: 767px) {
	:root {
		--yc-pad-card: 10px;
	}

	.yc-hide-mobile {
		display: none !important;
	}

	.yc-intro {
		margin-top: 16px;
	}

	.yc-brand-banners,
	.yc-faq-consult-inner,
	.yc-footer-features-inner,
	.yc-footer-main-inner {
		grid-template-columns: 1fr;
	}

	.yc-part-grid {
		grid-template-columns: 1fr 1fr;
	}

	.yc-carousel-slide,
	.yc-posts-carousel .yc-carousel-slide {
		flex-basis: 100%;
	}

	.yc-section-title h2 {
		font-size: 20px;
	}

	.yc-seo-content h1 {
		font-size: 20px;
	}

	.yc-float-label {
		display: none;
	}

	.yc-footer-col {
		margin-bottom: 10px;
	}

	.yc-footer-brands {
		flex-wrap: wrap;
		margin-inline: 15px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.yc-carousel-slide {
		flex-basis: calc(100% / 3);
	}

	.yc-posts-carousel .yc-carousel-slide {
		flex-basis: 25%;
	}
}

/* ==========================================================================
   Blog
   ========================================================================== */

.yc-page-title {
	background: #f3f3f3;
	padding: 15px 0;
	text-align: center;
}

.yc-page-title-text {
	margin: 0;
	font-size: 36px;
	line-height: 1.2;
	color: var(--yc-title-color);
	overflow-wrap: anywhere;
}

.yc-breadcrumbs {
	margin-top: 10px;
	font-size: 13px;
	color: #777;
	line-height: 1.6;
}

.yc-breadcrumbs a {
	color: #777;
}

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

.yc-crumb-sep {
	margin: 0 6px;
}

.yc-blog-main,
.yc-single-main {
	padding: var(--yc-section-space) 0 clamp(36px, 5vw, 52px);
}

.yc-archive-desc {
	margin-bottom: 20px;
	text-align: center;
}

.yc-blog-layout,
.yc-single-layout {
	display: grid;
	gap: 20px;
}

.yc-blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.yc-blog-card {
	height: 100%;
	margin: 0;
}

.yc-blog-card-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--yc-border);
	border-radius: var(--yc-radius);
	box-shadow: var(--yc-shadow-soft);
	transition: box-shadow var(--yc-duration) ease, border-color var(--yc-duration) ease;
}

.yc-blog-card-inner:hover {
	border-color: var(--yc-border-strong);
	box-shadow: 0 4px 18px rgba(36, 36, 36, 0.08);
}

.yc-blog-card-media {
	position: relative;
	display: block;
	width: 100%;
	min-height: 120px;
	overflow: hidden;
	background: #f0f0f0;
}

.yc-blog-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 75%);
	opacity: 1;
	transition: opacity 0.3s ease-out;
	pointer-events: none;
}

.yc-blog-card-inner:hover .yc-blog-card-media::after {
	opacity: 0.5;
}

.yc-blog-card-media img {
	display: block;
	width: 100%;
	height: auto;
}

.yc-blog-card-badge {
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	z-index: 1;
	margin: 20px;
	padding: 0.6em 1.2em;
	border-radius: 999px;
	background: #69727d;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
}

.yc-blog-card-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 20px 30px 0;
	text-align: center;
}

.yc-blog-card-title {
	margin: 0 0 25px;
	font-size: 16px;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

.yc-blog-card-title a {
	color: var(--yc-title-color);
}

.yc-blog-card-title a:hover {
	color: var(--yc-primary);
}

.yc-blog-card-more {
	display: inline-block;
	align-self: center;
	margin-bottom: 20px;
	margin-top: auto;
	font-size: 12px;
	font-weight: 700;
	color: var(--yc-title-color);
}

.yc-blog-card-more:hover {
	color: var(--yc-primary);
}

.yc-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 25px;
	text-align: center;
}

.yc-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	padding: 4px 8px;
	color: var(--yc-title-color);
	line-height: 1;
}

.yc-pagination .page-numbers:hover,
.yc-pagination .page-numbers.current {
	color: var(--yc-primary);
}

.yc-pagination .page-numbers:focus-visible,
.yc-toc-toggle:focus-visible,
.yc-toc-link:focus-visible,
.yc-blog-card-title a:focus-visible {
	outline: 2px solid var(--yc-focus);
	outline-offset: 2px;
}

.yc-blog-sidebar {
	min-width: 0;
}

.yc-sidebar-posts {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 10px;
}

.yc-sidebar-posts .yc-blog-card-badge,
.yc-related .yc-blog-card-badge {
	margin: 5px;
}

.yc-sidebar-posts .yc-blog-card-body {
	padding: 10px 16px 0;
}

.yc-sidebar-posts .yc-blog-card-title {
	margin-bottom: 10px;
	font-size: 15px;
	color: #363636;
}

.yc-blog-cats {
	padding: 0;
}

.yc-single-main .yc-blog-cats {
	padding: 10px;
	border: 1px solid var(--yc-border);
	border-radius: var(--yc-radius);
}

.yc-blog-cats-title {
	margin: 0 0 12px;
	font-size: 16px;
	color: var(--yc-title-color);
}

.yc-blog-cats li {
	margin: 0;
	padding: 6px 0;
	border-bottom: 1px solid #eee;
	color: var(--yc-text-color);
}

.yc-blog-cats li:last-child {
	border-bottom: 0;
}

.yc-blog-cats a {
	color: var(--yc-nav-color);
}

.yc-blog-cats a:hover,
.yc-blog-cats .current-cat > a {
	color: var(--yc-primary);
}

.yc-empty {
	text-align: center;
	padding: 40px 15px;
}

.yc-empty-title {
	font-size: 22px;
	color: var(--yc-title-color);
	font-weight: 600;
}

.yc-empty-search {
	display: flex;
	gap: 8px;
	max-width: 350px;
	margin: 20px auto 0;
}

.yc-empty-search input {
	flex: 1;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid var(--yc-border);
	border-radius: var(--yc-radius-sm);
	font-family: inherit;
}

.yc-empty-search button {
	min-height: 42px;
	padding: 5px 16px;
	border: 0;
	border-radius: var(--yc-radius-sm);
	background: var(--yc-primary);
	color: #fff;
	font-family: inherit;
	font-weight: 600;
	cursor: pointer;
}

.yc-single-article {
	min-width: 0;
	padding: 20px;
	border: 1px solid var(--yc-border);
	border-radius: var(--yc-radius);
	box-shadow: var(--yc-shadow-soft);
}

.yc-single-header {
	text-align: center;
}

.yc-single-title {
	margin: 0 0 16px;
	font-size: 28px;
	line-height: 3rem;
	overflow-wrap: anywhere;
}

.yc-single-terms {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 4px;
	color: #696969;
	font-size: 14px;
}

.yc-single-terms-icon {
	display: inline-flex;
	width: 14px;
	height: 14px;
	color: #696969;
}

.yc-single-terms-icon .yc-icon,
.yc-single-terms-icon svg {
	width: 14px;
	height: 14px;
}

.yc-single-terms a {
	color: #696969;
}

.yc-single-terms a:hover {
	color: var(--yc-primary);
}

.yc-single-divider {
	width: 50%;
	height: 0;
	margin: 16px auto;
	border: 0;
	border-top: 1px dashed #d5d5d5;
}

.yc-single-thumb {
	margin: 0 0 20px;
	text-align: center;
}

.yc-single-thumb img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	border: 1px solid var(--yc-border);
	border-radius: var(--yc-radius);
	box-shadow: var(--yc-shadow-soft);
}

.yc-toc {
	margin: 0 0 20px;
	border: 1px solid var(--yc-border-strong);
	border-radius: var(--yc-radius-sm);
	overflow: hidden;
	background: #fff;
}

.yc-toc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--yc-border-strong);
}

.yc-toc.is-collapsed .yc-toc-header {
	border-bottom: 0;
}

.yc-toc-title {
	margin: 0;
	flex: 1;
	font-size: 18px;
	font-weight: 600;
	color: var(--yc-title-color);
	text-align: start;
}

.yc-toc-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #333;
	cursor: pointer;
}

.yc-toc-toggle .yc-icon,
.yc-toc-toggle svg {
	width: 14px;
	height: 14px;
	transition: transform 0.2s;
}

.yc-toc.is-collapsed .yc-toc-toggle .yc-icon,
.yc-toc.is-collapsed .yc-toc-toggle svg {
	transform: rotate(180deg);
}

.yc-toc-body {
	max-height: 50vh;
	overflow-y: auto;
	padding: 16px 20px;
}

.yc-toc.is-collapsed .yc-toc-body {
	display: none;
}

.yc-toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: yc-toc;
}

.yc-toc-list .yc-toc-list {
	margin-top: 0.5em;
	margin-inline-start: 1em;
}

.yc-toc-item {
	margin-bottom: 0.5em;
	counter-increment: yc-toc;
}

.yc-toc-link {
	color: var(--yc-text-color);
}

.yc-toc-link:hover {
	color: var(--yc-title-color);
	text-decoration: underline;
}

.yc-toc-link::before {
	content: counters(yc-toc, ".") ". ";
}

.yc-entry {
	overflow-x: auto;
	overflow-wrap: anywhere;
}

.yc-entry > *:last-child {
	margin-bottom: 0;
}

.yc-entry h2,
.yc-entry h3,
.yc-entry h4,
.yc-entry h5,
.yc-entry h6 {
	margin: 1.4em 0 0.6em;
	scroll-margin-top: 90px;
}

.yc-entry p {
	margin: 0 0 1em;
}

.yc-entry ul,
.yc-entry ol {
	margin: 0 0 1em;
	padding-inline-start: 1.6em;
}

.yc-entry ul {
	list-style: disc;
}

.yc-entry ol {
	list-style: decimal;
}

.yc-entry li {
	margin: 0 0 0.4em;
}

.yc-entry li ul {
	list-style: circle;
	margin: 0.4em 0 0;
}

.yc-entry a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.yc-entry img {
	height: auto;
	border-radius: 6px;
}

.yc-entry figure,
.yc-entry .wp-caption {
	margin: 1em auto;
	max-width: 100%;
}

.yc-entry figcaption,
.yc-entry .wp-caption-text {
	margin-top: 8px;
	font-size: 13px;
	color: #888;
	text-align: center;
}

.yc-entry blockquote {
	margin: 1em 0;
	padding: 12px 20px;
	border-inline-start: 3px solid var(--yc-primary);
	background: #fafafa;
	color: #555;
}

.yc-entry table {
	width: 100%;
	margin: 1em 0;
	border-collapse: collapse;
}

.yc-entry th,
.yc-entry td {
	padding: 8px 10px;
	border: 1px solid #ddd;
	text-align: start;
}

.yc-entry th {
	background: #f7f7f7;
	color: var(--yc-title-color);
}

.yc-entry pre,
.yc-entry code {
	font-family: Consolas, Monaco, monospace;
	font-size: 13px;
}

.yc-entry pre {
	padding: 12px;
	overflow-x: auto;
	background: #f5f5f5;
	border-radius: 6px;
}

.yc-entry iframe,
.yc-entry video,
.yc-entry embed {
	max-width: 100%;
}

.yc-entry .wp-block-embed,
.yc-entry .wp-video {
	margin: 1em 0;
}

.yc-single-tags {
	margin: 20px 0 0;
	color: #696969;
}

.yc-share {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
	padding-top: 8px;
}

.yc-share-label {
	font-size: 13px;
	color: var(--yc-text-color);
}

.yc-share a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--yc-primary);
	color: #fff;
}

.yc-share a:hover {
	background: var(--yc-primary-dark);
	color: #fff;
}

.yc-share .yc-icon,
.yc-share svg {
	width: 16px;
	height: 16px;
}

.yc-author-box {
	margin-top: 25px;
	padding: var(--yc-pad-card);
	border: 1px solid var(--yc-border);
	border-radius: var(--yc-radius);
	box-shadow: var(--yc-shadow-soft);
}

.yc-author-box-name {
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 600;
	color: var(--yc-title-color);
}

.yc-author-box-bio {
	font-size: 14px;
}

.yc-related {
	margin-top: var(--yc-section-space);
}

.yc-related-title {
	margin: 0 0 var(--yc-space-md);
	font-size: 22px;
	text-align: center;
}

.yc-related-grid {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 15px;
	row-gap: 35px;
}

.comments-area {
	margin-top: var(--yc-section-space);
}

.comments-area :is(.comments-title, .comment-reply-title) {
	font-size: 22px;
	color: var(--yc-title-color);
}

.comments-area .comment-list {
	margin: 0 0 50px;
	padding: 0;
	list-style: none;
	line-height: 1.6;
}

.comments-area .comment-list .children {
	margin: 30px 0 0;
	margin-inline-start: 30px;
	padding: 0;
	list-style: none;
	border-top: 1px solid #ddd;
}

.comments-area .comment {
	padding: 30px 0;
	border-bottom: 1px solid #ddd;
}

.comments-area .comment-body {
	position: relative;
	padding-inline-start: 95px;
}

.comments-area .comment-author img,
.comments-area .avatar {
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	width: 74px;
	max-width: 74px;
	height: 74px;
	border-radius: 50%;
}

.comments-area .comment-author .fn {
	font-weight: 600;
	font-style: normal;
	color: var(--yc-title-color);
}

.comments-area .comment-metadata {
	margin-bottom: 15px;
	text-align: end;
}

.comments-area .comment-metadata a {
	color: #bbb;
}

.comments-area .reply {
	margin-top: 15px;
}

.comments-area .reply a {
	color: var(--yc-primary);
	font-weight: 600;
}

.comments-area .reply a:hover {
	opacity: 0.7;
}

.comment-form {
	display: flex;
	flex-wrap: wrap;
	margin-inline: -10px;
}

.comment-form > p {
	flex: 1 1 max(400px, 50%);
	margin-bottom: 15px;
	padding-inline: 10px;
}

.comment-form .comment-notes,
.comment-form .comment-form-comment,
.comment-form .form-submit,
.comment-form .comment-form-cookies-consent {
	flex-basis: 100%;
	max-width: 100%;
	width: 100%;
}

.comment-form .comment-form-cookies-consent label {
	display: inline;
}

.comment-form label {
	display: block;
	margin-bottom: 6px;
}

.comment-form .required {
	color: #c00;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
	width: 100%;
	max-width: 100%;
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid var(--yc-border);
	border-radius: var(--yc-radius-sm);
	font-family: inherit;
	font-size: 14px;
}

.comment-form textarea {
	min-height: 160px;
	resize: vertical;
}

.comment-form .submit {
	min-height: 42px;
	padding: 5px 20px;
	border: 0;
	border-radius: var(--yc-radius-sm);
	background: var(--yc-primary);
	color: #fff;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
}

.comment-form .submit:hover {
	background: var(--yc-primary-dark);
}

.yc-post-pages {
	margin-top: 20px;
}

@media (min-width: 768px) {
	.yc-blog-layout {
		grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
		align-items: start;
	}

	.yc-single-layout {
		grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
		align-items: start;
	}

	.yc-single-layout .yc-blog-sidebar {
		position: sticky;
		top: 20px;
	}

	.yc-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.yc-sidebar-posts,
	.yc-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1025px) {
	.yc-page-title {
		padding: 20px 0;
	}

	.yc-page-title-text {
		font-size: 44px;
	}

	.yc-blog-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.yc-related-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.yc-sidebar-posts {
		grid-template-columns: 1fr;
	}

	.yc-single-title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {
	.yc-blog-card-media {
		aspect-ratio: 2 / 1;
	}

	.yc-blog-card-media img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.yc-blog-card-body {
		padding: 16px 16px 0;
	}

	.yc-single-article {
		padding: 16px;
	}

	.yc-single-title {
		font-size: 22px;
		line-height: 1.5;
	}

	.yc-single-main .yc-blog-sidebar {
		margin-top: 13px;
		position: static;
	}

	.comments-area .children {
		margin-inline-start: 0;
	}

	.comments-area .comment-body {
		padding-inline-start: 0;
	}

	.comments-area .comment-author img,
	.comments-area .avatar {
		position: static;
		margin-bottom: 10px;
	}

	.comments-area .comment-metadata {
		text-align: start;
	}

	.yc-empty-search {
		flex-direction: column;
	}
}

/* ==========================================================================
   Shop & product
   ========================================================================== */

.yc-shop-container {
	width: 100%;
	max-width: var(--yc-shop-container);
	margin-right: auto;
	margin-left: auto;
	padding-right: var(--yc-gutter);
	padding-left: var(--yc-gutter);
}

.yc-shop-title .yc-page-title-text {
	font-size: 22px;
}

.yc-shop-title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	position: relative;
}

.yc-shop-back {
	position: absolute;
	inset-inline-start: 0;
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--yc-title-color);
}

.yc-shop-back:hover,
.yc-shop-back:focus-visible {
	color: var(--yc-primary);
}

.yc-shop-main,
.yc-product-main {
	padding: var(--yc-section-space) 0 clamp(36px, 5vw, 52px);
}

.yc-shop-layout {
	display: block;
}

.yc-shop-content {
	min-width: 0;
}

.yc-shop-tools {
	display: flex;
	flex-direction: column;
	gap: var(--yc-gap-md);
	margin-bottom: var(--yc-space-md);
}

.yc-shop-tools-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
}

.yc-shop-tools-actions {
	justify-content: space-between;
}

.yc-shop-crumbs {
	font-size: 13px;
	color: #777;
	line-height: 1.6;
}

.yc-shop-crumbs a {
	color: #777;
}

.yc-shop-crumbs a:hover {
	color: var(--yc-primary);
}

.yc-shop-count {
	margin: 0;
	color: #777;
}

.yc-shop-sidebar-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--yc-title-color);
	font-family: inherit;
	font-size: 14px;
	cursor: pointer;
}

.yc-shop-sidebar-toggle:hover,
.yc-shop-sidebar-toggle:focus-visible {
	color: var(--yc-primary);
}

.yc-shop-perpage {
	display: none;
	align-items: center;
	flex-wrap: wrap;
	color: #a5a5a5;
}

.yc-shop-perpage-label::after {
	content: ":";
}

.yc-shop-perpage-link {
	padding: 0 7px;
	color: #a5a5a5;
}

.yc-shop-perpage-link + .yc-shop-perpage-link::before {
	content: "/";
	margin-inline-end: 7px;
	color: #a5a5a5;
	font-weight: 400;
}

.yc-shop-perpage-link.is-current {
	color: var(--yc-title-color);
	font-weight: 600;
}

.yc-shop-ordering select {
	max-width: 200px;
	padding: 5px 2px 5px 20px;
	border: 0;
	border-bottom: 1px solid var(--yc-border);
	border-radius: 0;
	background: transparent;
	color: var(--yc-title-color);
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.yc-shop-ordering select:focus {
	border-color: var(--yc-primary);
	outline: none;
}

.yc-shop-term-desc {
	margin-bottom: 25px;
}

.yc-shop-empty {
	padding: 30px 0;
	text-align: center;
}

.yc-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	border: 1px solid var(--yc-border);
}

.yc-product-card {
	margin: 0;
	min-width: 0;
	border: 0;
	border-inline-start: 1px solid var(--yc-border);
	border-bottom: 1px solid var(--yc-border);
}

.yc-product-card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: var(--yc-pad-card);
}

.yc-product-card-media {
	position: relative;
	overflow: hidden;
}

.yc-product-card-link {
	display: block;
}

.yc-product-card-media img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: #fff;
}

.yc-product-card-hover {
	display: none;
	position: absolute;
	inset: 0;
	align-items: center;
	justify-content: center;
	background: #fff;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.yc-product-card-title {
	margin: 10px 0 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.6em;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--yc-title-color);
	overflow-wrap: anywhere;
}

.yc-product-card-title a {
	color: inherit;
}

.yc-product-card-title a:hover {
	color: var(--yc-primary);
}

.yc-product-card-price,
.yc-product-price {
	display: block;
	font-weight: 600;
}

.yc-login-price {
	color: var(--yc-primary);
	font-weight: 600;
}

.yc-login-price:hover {
	opacity: 0.6;
}

.yc-product-card-price del,
.yc-product-price del {
	margin-inline-end: 6px;
	color: #999;
	font-weight: 400;
}

.yc-product-card-price ins,
.yc-product-price ins {
	text-decoration: none;
	color: var(--yc-title-color);
}

.yc-product-badge {
	position: absolute;
	top: 8px;
	inset-inline-start: 8px;
	z-index: 1;
	padding: 2px 8px;
	border-radius: 3px;
	background: var(--yc-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
}

.yc-product-badge-stock {
	background: #888;
}

.yc-cat-card {
	position: relative;
	margin: 0;
	min-width: 0;
	border-inline-start: 1px solid var(--yc-border);
	border-bottom: 1px solid var(--yc-border);
	text-align: center;
}

.yc-cat-card-inner {
	position: relative;
	padding: var(--yc-pad-card);
}

.yc-cat-card-media img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.yc-cat-card-title {
	margin: 10px 0 4px;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--yc-title-color);
}

.yc-cat-card-count {
	margin: 0;
	font-size: 13px;
	color: #888;
}

.yc-cat-card-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.yc-cat-card:hover .yc-cat-card-title {
	color: var(--yc-primary);
}

.yc-shop-sidebar-head {
	display: none;
	justify-content: flex-end;
	padding: 12px 15px;
	border-bottom: 1px solid var(--yc-border);
}

.yc-shop-sidebar-close {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--yc-title-color);
	font-family: inherit;
	font-size: 14px;
	cursor: pointer;
}

.yc-shop-sidebar-body {
	display: flex;
	flex-direction: column;
	gap: var(--yc-gap-lg);
}

.yc-shop-sidebar-body > a img {
	display: block;
	width: 100%;
	height: auto;
}

.yc-shop-widget {
	min-width: 0;
}

.yc-shop-widget-title {
	margin: 0 0 var(--yc-space-sm);
	font-size: 16px;
	font-weight: 600;
	color: var(--yc-title-color);
}

.yc-product-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 25px;
}

.yc-product-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	min-height: 36px;
	color: var(--yc-title-color);
}

.yc-product-pagination .page-numbers:hover,
.yc-product-pagination .page-numbers.current {
	color: var(--yc-primary);
}

.yc-shop-crumbs a:focus-visible,
.yc-shop-perpage-link:focus-visible,
.yc-shop-ordering select:focus-visible,
.yc-shop-sidebar-toggle:focus-visible,
.yc-shop-back:focus-visible,
.yc-product-card-title a:focus-visible,
.yc-gallery-thumb:focus-visible,
.yc-gallery-prev:focus-visible,
.yc-gallery-next:focus-visible,
.yc-gallery-zoom:focus-visible,
.yc-lightbox-close:focus-visible,
.yc-variation-row select:focus-visible,
.yc-btn-inquiry:focus-visible,
.yc-btn-contact:focus-visible {
	outline: 2px solid var(--yc-focus);
	outline-offset: 2px;
}

.yc-product-main .yc-shop-crumbs {
	margin-bottom: 20px;
}

.yc-product-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 20px;
}

.yc-product-title {
	margin: 0;
	flex: 1 1 220px;
	font-size: 20px;
	line-height: 1.3;
	color: var(--yc-title-color);
	overflow-wrap: anywhere;
}

.yc-product-grid-top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 30px;
}

.yc-gallery-main {
	position: relative;
}

.yc-gallery-stage {
	display: block;
	background: #fff;
}

.yc-gallery-stage img,
.yc-gallery-image {
	display: block;
	width: 100%;
	max-height: 520px;
	object-fit: contain;
	margin: 0 auto;
}

.yc-gallery-prev,
.yc-gallery-next {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: var(--yc-title-color);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
	transform: translateY(-50%);
	cursor: pointer;
}

.yc-gallery-prev {
	right: 8px;
}

.yc-gallery-next {
	left: 8px;
}

.yc-gallery-prev:disabled,
.yc-gallery-next:disabled {
	opacity: 0.35;
	cursor: default;
}

.yc-gallery-hint {
	margin: 10px 0 0;
	text-align: center;
}

.yc-gallery-zoom {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #888;
	font-family: inherit;
	font-size: 13px;
	cursor: pointer;
}

.yc-gallery-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.yc-gallery-thumb {
	display: block;
	padding: 0;
	border: 1px solid transparent;
	background: #fff;
	cursor: pointer;
}

.yc-gallery-thumb.is-active,
.yc-gallery-thumb:hover {
	border-color: var(--yc-primary);
}

.yc-gallery-thumb img {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.yc-lightbox {
	position: fixed;
	inset: 0;
	z-index: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.75);
}

.yc-lightbox[hidden] {
	display: none;
}

.yc-lightbox-dialog {
	position: relative;
	max-width: min(960px, 100%);
	max-height: 90vh;
}

.yc-lightbox-image {
	display: block;
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
}

.yc-lightbox-close {
	position: absolute;
	top: -40px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--yc-title-color);
	cursor: pointer;
}

.yc-product-attributes table {
	width: 100%;
	border-collapse: collapse;
}

.yc-product-attributes th,
.yc-product-attributes td {
	padding: 8px 10px;
	border-bottom: 1px solid #eee;
	text-align: start;
	vertical-align: top;
}

.yc-product-attributes th {
	width: 40%;
	color: var(--yc-title-color);
	font-weight: 600;
}

.yc-product-tags,
.yc-product-sku {
	margin: 12px 0 0;
	color: var(--yc-title-color);
}

.yc-product-excerpt {
	margin-top: 12px;
}

.yc-product-price {
	margin-top: 12px;
	font-size: 18px;
}

.yc-variations {
	margin-top: 16px;
}

.yc-variation-row {
	display: grid;
	gap: 6px;
	margin-bottom: 10px;
}

.yc-variation-row label {
	color: var(--yc-title-color);
	font-weight: 600;
}

.yc-variation-row select {
	width: 100%;
	min-height: 42px;
	padding: 6px 10px;
	border: 1px solid var(--yc-border);
	border-radius: var(--yc-radius-sm);
	font-family: inherit;
	font-size: 14px;
}

.yc-variation-status {
	min-height: 1.4em;
	margin: 8px 0 0;
	color: var(--yc-title-color);
}

.yc-variation-reset {
	margin-top: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--yc-primary);
	font-family: inherit;
	cursor: pointer;
}

.yc-variations-fallback {
	padding: 8px 10px;
	background: #f7f7f7;
	color: var(--yc-title-color);
}

.yc-product-col-inquiry {
	padding: var(--yc-space-md);
	background: var(--yc-gray-100);
	border: 1px solid var(--yc-border);
	border-radius: var(--yc-radius-sm);
}

.yc-btn-inquiry {
	width: 100%;
	min-height: 48px;
	border-radius: var(--yc-radius-sm);
	font-size: 15px;
}

.yc-product-perks {
	margin: 16px 0 0;
}

.yc-product-perks li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: var(--yc-title-color);
}

.yc-product-perks .yc-icon {
	color: var(--yc-primary);
	font-size: 18px;
}

.yc-product-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
	color: var(--yc-title-color);
}

.yc-product-share a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 6px;
	background: #fff;
	color: var(--yc-title-color);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.yc-product-share a:hover {
	color: var(--yc-primary);
}

.yc-product-contact {
	margin: 10px 0 30px;
	text-align: center;
}

.yc-product-contact-title {
	margin: 0 0 16px;
	font-size: 18px;
	color: var(--yc-title-color);
}

.yc-product-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.yc-btn-contact {
	width: 100%;
	min-height: 46px;
	border-radius: 6px;
	color: #fff;
}

.yc-btn-telegram {
	background: #229ed9;
}

.yc-btn-telegram:hover {
	background: #1b8dc4;
	color: #fff;
}

.yc-btn-whatsapp {
	background: #25d366;
}

.yc-btn-whatsapp:hover {
	background: #1ebe5a;
	color: #fff;
}

.yc-btn-phone {
	background: #333;
}

.yc-btn-phone:hover {
	background: #111;
	color: #fff;
}

.yc-product-description {
	position: relative;
	margin: 0 0 30px;
	padding-bottom: 20px;
}

.yc-product-desc-title {
	margin: 0 0 16px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--yc-primary);
	font-size: 16px;
	color: var(--yc-title-color);
}

.yc-product-description:not(.is-open) .yc-collapse-body {
	max-height: 280px;
	overflow: hidden;
}

.yc-product-description:not(.is-open)::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: 52px;
	z-index: 1;
	height: 80px;
	background: linear-gradient(to bottom, transparent, #fff);
	pointer-events: none;
}

.yc-collapse-more {
	position: relative;
	z-index: 2;
	margin-top: 12px;
	text-align: center;
}

.yc-product-reviews {
	margin: 0 0 40px;
}

.woocommerce-Reviews-title {
	margin: 0 0 16px;
	font-size: 22px;
	color: var(--yc-title-color);
}

.woocommerce-noreviews {
	margin-bottom: 20px;
}

.yc-related-products {
	margin-top: 10px;
}

.yc-related-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.yc-sidebar-open {
	overflow: hidden;
}

@media (max-width: 1024px) {
	.yc-shop-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 530;
		width: min(360px, 88vw);
		height: 100%;
		background: #fff;
		box-shadow: 4px 0 24px rgba(36, 36, 36, 0.08);
		overflow: auto;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}

	.yc-shop-sidebar.is-open {
		transform: none;
	}

	.yc-shop-sidebar-head {
		display: flex;
	}

	.yc-shop-back {
		display: none;
	}
}

@media (min-width: 768px) {
	.yc-product-grid,
	.yc-cat-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.yc-related-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.yc-product-contact-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.yc-product-title {
		font-size: 24px;
	}

	.yc-cat-card-title {
		font-size: 20px;
	}
}

@media (min-width: 1025px) {
	.yc-shop-title .yc-page-title-text {
		font-size: 24px;
	}

	.yc-shop-back {
		display: inline-flex;
	}

	.yc-shop-layout {
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 30px;
		align-items: start;
	}

	.yc-shop-tools {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 30px;
	}

	.yc-shop-count {
		display: none;
	}

	.yc-shop-sidebar-toggle {
		display: none;
	}

	.yc-shop-perpage {
		display: inline-flex;
	}

	.yc-product-card-hover {
		display: flex;
	}

	.yc-product-card-media:hover .yc-product-card-hover {
		opacity: 1;
	}

	.yc-product-grid-top {
		grid-template-columns: 1.1fr 1fr 0.9fr;
		gap: 30px;
		align-items: start;
	}

	.yc-product-title {
		font-size: 34px;
	}

	.yc-related-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

/* ==========================================================================
   Plugin compatibility (theme-side only)
   ========================================================================== */

/*
 * Yadak Child Category Scroll
 * Broken: custom archive never fired woocommerce_before_shop_loop, so the
 * plugin row had no markup. Theme global `a` color also overrides the plugin’s
 * inherit color once this stylesheet loads after the plugin CSS.
 */
.yadak-child-cats {
	max-width: 100%;
}

.yadak-child-cats a,
.yadak-child-cats a:hover {
	color: inherit;
}

/*
 * Yadak Product Tag Filter
 * Broken: the filter UI was never rendered after the WoodMart sidebar went away.
 * Theme global `a` / `ul` rules load after the plugin stylesheet and would
 * restyle its checkboxes, labels, and chips. Keep these selectors scoped to
 * the plugin’s own classes. No !important — plugin inline styles are not used.
 */
.yc-shop-sidebar .yadak-tag-filter-widget {
	min-width: 0;
}

.yc-shop-sidebar .yadak-tag-filter-widget a,
.yc-shop-sidebar .yadak-tag-filter-widget a:hover {
	color: inherit;
}

.yc-shop-sidebar .yadak-tag-filter-search input {
	height: auto;
	max-width: 100%;
	border-radius: var(--yc-radius-sm);
	box-shadow: none;
}

.yc-shop-sidebar .yadak-tag-filter-item a:hover .yadak-tag-label,
.yc-shop-sidebar .yadak-tag-filter-item.is-active .yadak-tag-label {
	color: #002248;
}

.yc-shop-sidebar .yadak-tag-filter-clear,
.yc-shop-sidebar .yadak-tag-active-clear {
	color: #002248;
}

.yc-shop-sidebar .yadak-tag-active-chip {
	color: #002248;
}
