body {
	font-family: 'Inter', sans-serif;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.site-container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.site-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

h1,
h2,
h3,
.serif {
	font-family: 'Merriweather', serif;
}

.fade-in {
	animation: fadeIn 0.3s ease-out;
}

.slide-up {
	animation: slideUp 0.4s ease-out;
}

.slide-right {
	animation: slideRight 0.3s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

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

@keyframes slideRight {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}

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

.card-hover {
	transition: all 0.3s ease;
}

.card-hover:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-overlay {
	backdrop-filter: blur(4px);
}

.order-modal {
	position: fixed;
	inset: 0;
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.order-modal.hidden {
	display: none;
}

.order-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 24, 39, 0.55);
}

.order-modal__dialog {
	position: relative;
	width: 100%;
	max-width: 34rem;
	background: #fff;
	border-radius: 1rem;
	padding: 1.25rem;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
	z-index: 1;
}

.order-modal__close {
	position: absolute;
	top: 0.5rem;
	right: 0.65rem;
	background: transparent;
	border: 0;
	font-size: 1.75rem;
	line-height: 1;
	color: #6b7280;
	cursor: pointer;
}

.order-modal__close:hover {
	color: #111827;
}

.order-modal__title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #111827;
	padding-right: 1.5rem;
	margin-bottom: 1rem;
}

.order-modal__product {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 0.75rem;
	padding: 0.75rem;
	margin-bottom: 0.875rem;
}

.order-modal__product-label,
.order-modal__product-id {
	font-size: 0.75rem;
	color: #6b7280;
}

.order-modal__product-link {
	display: inline-block;
	margin: 0.15rem 0 0.35rem;
	font-size: 0.875rem;
	color: #1d4ed8;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.order-modal__fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	margin-bottom: 0.875rem;
}

.order-modal__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.8125rem;
	color: #4b5563;
}

.order-modal__checkbox input[type='checkbox'] {
	margin-top: 0.12rem;
	accent-color: #2563eb;
}

.order-modal__checkbox a {
	color: #2563eb;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.order-modal__checkbox a:hover {
	color: #1d4ed8;
}

.scrollbar-thin::-webkit-scrollbar {
	width: 6px;
}

.scrollbar-thin::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 3px;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
	background: #c1c1c1;
	border-radius: 3px;
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 0.125rem 0.5rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 500;
}

.product-card-title {
	display: block;
	line-height: 1.35;
	word-break: normal;
	overflow-wrap: break-word;
	hyphens: auto;
	text-wrap: balance;
}

.product-gallery__main {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	border-radius: 1rem;
	overflow: hidden;
	background: #f3f4f6;
}

.product-gallery,
.product-gallery .swiper,
.product-gallery .swiper-wrapper,
.product-gallery .swiper-slide {
	max-width: 100%;
	min-width: 0;
}

.product-gallery__main .swiper-wrapper {
	display: flex;
}

.product-gallery__main .swiper-slide {
	width: 100%;
	flex: 0 0 100%;
	min-width: 0;
}

.product-gallery__main-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.single-product .site-container .grid {
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
	.single-product .site-container .grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.product-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	border-radius: 0.75rem;
	background: #2563eb;
	color: #fff;
	z-index: 5;
	cursor: pointer;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1;
	transition: background-color 0.2s ease;
}

.product-gallery__nav:hover {
	background: #1d4ed8;
}

.product-gallery__nav--prev {
	left: 0.75rem;
}

.product-gallery__nav--next {
	right: 0.75rem;
}

.product-gallery__thumbs {
	margin-top: 0.75rem;
}

.product-gallery__thumbs .swiper-slide {
	cursor: pointer;
	border-radius: 0.75rem;
	overflow: hidden;
	border: 2px solid transparent;
	opacity: 0.8;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-gallery__thumbs .swiper-slide-thumb-active {
	border-color: #2563eb;
	opacity: 1;
}

.product-gallery__thumb-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.live-search__item {
	display: block;
	padding: 0.65rem 0.8rem;
	border-bottom: 1px solid #f1f5f9;
	text-decoration: none;
}

.live-search__item:last-child {
	border-bottom: 0;
}

.live-search__item:hover {
	background: #eff6ff;
}

.live-search__item--select {
	border: 0;
	background: transparent;
	cursor: pointer;
	font: inherit;
}

.live-search__title {
	font-size: 0.9rem;
	font-weight: 600;
	color: #111827;
}

.live-search__meta {
	font-size: 0.75rem;
	color: #6b7280;
	margin-top: 0.15rem;
}

.live-search__type {
	font-size: 0.75rem;
	color: #2563eb;
	margin-top: 0.1rem;
}

.live-search__empty {
	padding: 0.7rem 0.8rem;
	font-size: 0.85rem;
	color: #6b7280;
}

.wysiwyg-content > * + * {
	margin-top: 1rem;
}

.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4 {
	font-family: 'Merriweather', serif;
	font-weight: 700;
	color: #111827;
	line-height: 1.3;
}

.wysiwyg-content a {
	color: #2563eb;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.wysiwyg-content ul,
.wysiwyg-content ol {
	padding-left: 1.25rem;
	margin: 0.75rem 0;
}

.wysiwyg-content ul {
	list-style: disc;
}

.wysiwyg-content ol {
	list-style: decimal;
}

.wysiwyg-content li + li {
	margin-top: 0.35rem;
}

.wysiwyg-content li::marker {
	color: #2563eb;
}

.wysiwyg-content table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #d1d5db;
	font-size: 0.95rem;
}

.wysiwyg-content th,
.wysiwyg-content td {
	border: 1px solid #d1d5db;
	padding: 0.6rem 0.75rem;
	text-align: left;
	vertical-align: top;
}

.wysiwyg-content th {
	background: #f9fafb;
	font-weight: 700;
	color: #111827;
}

.wysiwyg-content tr:nth-child(even) td {
	background: #fcfcfd;
}

.faq-block {
	display: grid;
	gap: 0.9rem;
}

.faq-item {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 1rem;
	overflow: hidden;
}

.faq-item__trigger {
	width: 100%;
	border: 0;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.2rem;
	text-align: left;
	cursor: pointer;
}

.faq-item__title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1f2937;
	line-height: 1.3;
}

.faq-item__icon {
	width: 1.4rem;
	height: 1.4rem;
	flex-shrink: 0;
	position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0.85rem;
	height: 2px;
	background: #2563eb;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease;
}

.faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__content {
	padding: 0 1.2rem 1rem;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.35s ease, opacity 0.25s ease;
	will-change: max-height, opacity;
}

.faq-item__content-inner {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #4b5563;
}

.faq-item.is-open .faq-item__content {
	opacity: 1;
}

.input-field {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	transition: border-color 0.2s;
}

.input-field:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.input-field--invalid,
.input-field.is-invalid {
	border-color: #ef4444;
	background-color: #fef2f2;
	box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}

.input-field--invalid:focus,
.input-field.is-invalid:focus {
	border-color: #dc2626;
	box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.seller-field--invalid .seller-field__error {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.75rem;
	color: #dc2626;
}

.seller-field__error {
	display: none;
}

.btn-primary {
	background: #2563eb;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-weight: 500;
	transition: all 0.2s;
}

.btn-primary:hover {
	background: #1d4ed8;
}

.btn-secondary {
	background: #f3f4f6;
	color: #374151;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	font-weight: 500;
	transition: all 0.2s;
}

.btn-secondary:hover {
	background: #e5e7eb;
}

.tab-active {
	border-bottom: 2px solid #2563eb;
	color: #2563eb;
}

.tab-inactive {
	border-bottom: 2px solid transparent;
	color: #6b7280;
}

.tab-inactive:hover {
	color: #374151;
}

.nav-link {
	position: relative;
	padding-bottom: 2px;
}

.nav-link-active {
	color: #2563eb;
}

.nav-link-active::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 0;
	right: 0;
	height: 2px;
	background: #2563eb;
}

#menu-header_menu {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu-header_menu > li > a {
	position: relative;
	display: inline-block;
	padding: 1rem 0.75rem;
	color: #6b7280;
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.2s ease;
}

#menu-header_menu > li > a:hover {
	color: #374151;
}

#menu-header_menu > li.current-menu-item > a,
#menu-header_menu > li.current_page_item > a,
#menu-header_menu > li > a[aria-current='page'] {
	color: #2563eb;
}

#menu-header_menu > li.current-menu-item > a::after,
#menu-header_menu > li.current_page_item > a::after,
#menu-header_menu > li > a[aria-current='page']::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	height: 2px;
	background: #2563eb;
}

.seller-gradient-1 {
	background: linear-gradient(135deg, #2563eb 0%, #93c5fd 100%);
}

.seller-gradient-2 {
	background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);
}

.seller-gradient-3 {
	background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.seller-gradient-4 {
	background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
}

.seller-gradient-5 {
	background: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
}

.seller-gradient-6 {
	background: linear-gradient(135deg, #4f46e5 0%, #818cf8 100%);
}

.seller-gradient-7 {
	background: linear-gradient(135deg, #be185d 0%, #f472b6 100%);
}

.page-numbers {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.page-numbers li {
	margin: 0;
}

.page-numbers a.page-numbers,
.page-numbers span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: 0.75rem;
	border: 1px solid #e5e7eb;
	background: #ffffff;
	color: #4b5563;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
}

.page-numbers a.page-numbers:hover {
	border-color: #93c5fd;
	color: #2563eb;
}

.page-numbers span.page-numbers.current {
	border-color: #2563eb;
	background: #2563eb;
	color: #ffffff;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.kama_breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	gap: 0.375rem;
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.4;
	color: #6b7280;
	text-align: left;
	margin-left: 0;
	margin-right: 0;
}

.site-breadcrumbs {
	display: flex;
	justify-content: flex-start;
	text-align: left;
}

.site-breadcrumbs .kama_breadcrumbs {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	width: 100%;
	max-width: 100%;
	margin: 0;
	float: none;
}

.kama_breadcrumbs a {
	color: #6b7280;
	text-decoration: none;
	transition: color 0.2s ease;
}

.kama_breadcrumbs a:hover {
	color: #2563eb;
}

.kama_breadcrumbs .kb_sep {
	color: #9ca3af;
}

.kama_breadcrumbs .kb_title {
	color: #2563eb;
	font-weight: 600;
}

.site-footer {
	background: #ffffff;
	margin-top: auto;
	border-top: 1px solid #e5e7eb;
}

.site-footer__top-line {
	display: none;
}

.site-footer__main {
	background: #f9fafb;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 1.5rem;
}

.site-footer__grid h3 {
	font-size: 1rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.5rem;
}

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

.site-footer__grid li + li {
	margin-top: 0.4rem;
}

.site-footer__grid a,
.site-footer__grid p {
	font-size: 0.925rem;
	color: #1f2937;
	text-decoration: none;
}

.site-footer__grid a:hover {
	color: #2563eb;
}

.site-footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.site-footer__phone {
	font-size: 1.45rem;
	font-weight: 700;
}

.site-footer__bottom {
	background: #ffffff;
	border-top: 1px solid #e5e7eb;
}

.site-footer__bottom-inner {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-size: 0.8rem;
	color: #1f2937;
}

.site-footer__bottom-inner > div {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.site-footer__bottom-inner a {
	color: #1f2937;
	text-decoration: none;
}

.site-footer__bottom-inner a:hover {
	color: #2563eb;
}

@media (min-width: 768px) {
	.site-footer__grid {
		grid-template-columns: 1fr 1fr 1fr 1.2fr;
	}

	.site-footer__bottom-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

@media (min-width: 425px) and (max-width: 639px) {
	.products-grid.products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
