b, strong{
	font-weight: bold
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background-color: var(--hamta-header-bg, #ffffff);
	border-bottom: 1px solid var(--hamta-border, #dee2e6);
	-webkit-backdrop-filter: blur(var(--hamta-header-blur, 0));
	backdrop-filter: blur(var(--hamta-header-blur, 0));
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	min-height: 72px;
}

.site-logo img {
	max-height: 48px;
	width: auto;
}

.site-logo__text {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--hamta-primary, #0d6efd);
}

.main-nav {
	flex: 1;
	display: flex;
	/* justify-content: center; */
}

.main-menu {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.main-menu a {
	color: var(--hamta-main-text, #212529);
	font-weight: 500;
	transition: color 0.2s ease;
}

.main-menu a:hover,
.main-menu .current-menu-item > a,
.main-menu .current-menu-ancestor > a {
	color: var(--hamta-primary, #0d6efd);
}

.menu-toggle {
	display: none;
	position: relative;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 0.75rem;
	background: transparent;
	color: var(--hamta-main-text, #212529);
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
	background: color-mix(in srgb, var(--hamta-primary, #0d6efd) 10%, transparent);
	color: var(--hamta-primary, #0d6efd);
	outline: none;
}

.menu-toggle__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 1.5rem;
	line-height: 1;
	transform: translate(-50%, -50%);
	transition: opacity 0.22s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle__icon--close {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(-90deg) scale(0.75);
}

.mobile-nav {
	display: none;
}

.site-main {
	min-height: 50vh;
}

.site-content__title {
	margin-bottom: 1rem;
	color: var(--hamta-main-text, #212529);
}

.site-content__body {
	color: var(--hamta-sub-text, #6c757d);
}

.site-footer {
	background-color: var(--hamta-footer-bg, #111111);
	color: #ffffff;
	padding: 3rem 0 1.5rem;
}

.site-footer__inner { 
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand {
	flex: 1 1 170px;
}

.site-footer__menus {
	display: contents;
}

.site-footer__menu {
	flex: 1 1 100px;
	max-width: 10rem;
}

.site-footer__contact {
	flex: 1 1 170px;
}

.site-footer__description {
	margin-top: 1rem;
	color: rgba(255, 255, 255, 0.75);
	max-width: 36rem;
}

.site-footer__title {
	font-size: 1.125rem;
	margin-bottom: 1rem;
}
 
.footer-menu {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.85);
	transition: color 0.2s ease;
}

.footer-menu a:hover,
.footer-menu .current-menu-item > a,
.footer-menu .current-menu-ancestor > a {
	color: var(--hamta-primary, #0d6efd);
}

.site-footer__phones,
.site-footer__address,
.site-footer__email {
	color: rgba(255, 255, 255, 0.85);
}

.site-footer__phones li + li {
	margin-top: 0.5rem;
}

.site-footer__phones a,
.site-footer__email a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: inherit;
}

.site-footer__phones a:hover,
.site-footer__email a:hover {
	color: var(--hamta-primary, #0d6efd);
}

.site-footer__address,
.site-footer__email {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.site-footer__bottom {
	padding-top: 1.5rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.65);
}

.site-footer .site-logo__text {
	color: #ffffff;
}

.hero-section {
	padding: clamp(3rem, 8vw, 6rem) 0;
	background-color: var(--hamta-secondary-bg, #f8f9fa);
}

.hero-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 5fr);
	align-items: center;
	gap: clamp(2rem, 5vw, 4rem);
}

.hero-section__inner {
	max-width: none;
}

.hero-section__media {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero-section__media:before {
	content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 60%;
    background-color: #fff;
    filter: blur(20vh);
    transform: rotateX(50deg);
    z-index: 0;
    opacity: 0.5;
}

.hero-section__photo {
	position: relative;
	width: 100%;
    height: 100%;
    max-height: 32rem;
    object-fit: contain;
    border-radius: 1rem;
	z-index: 1;
}

.hero-section__grid:not(:has(.hero-section__media)) .hero-section__inner {
	max-width: 48rem;
}

.hero-section__grid:not(:has(.hero-section__media)) {
	grid-template-columns: 1fr;
}

.hero-section__content :is(h1, h2, h3, h4, h5, h6) {
	line-height: 1.2;
	margin-bottom: 0.75rem;
}

.hero-section__content h1 {
	color: var(--hamta-main-text, #212529);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
}

.hero-section__content h2,
.hero-section__content h3,
.hero-section__content h4,
.hero-section__content h5,
.hero-section__content h6 {
	color: var(--hamta-primary, #0d6efd);
}

.hero-section__content h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.hero-section__content h3 {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.hero-section__content p,
.hero-section__content li {
	color: var(--hamta-sub-text, #6c757d);
	font-size: 1.0625rem;
}

.hero-section__content p + p {
	margin-top: 1rem;
}

.hero-section__content ul,
.hero-section__content ol {
	margin-top: 1rem;
	padding-inline-start: 1.25rem;
}

.hero-section__content ul {
	list-style: disc;
}

.hero-section__content ol {
	list-style: decimal;
}

.hero-section__buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.875rem;
	margin-top: 2rem;
}

.hero-section__button.btn-primary {
	--bs-btn-bg: var(--hamta-primary, #0d6efd);
	--bs-btn-border-color: var(--hamta-primary, #0d6efd);
	--bs-btn-color: var(--hamta-main-text, #ffffff);
	--bs-btn-hover-bg: color-mix(in srgb, var(--hamta-primary, #0d6efd) 12%, var(--hamta-body-bg, #ffffff));
	--bs-btn-hover-border-color: var(--hamta-primary, #0d6efd);
	--bs-btn-hover-color: var(--hamta-primary, #0d6efd);
	--bs-btn-active-bg: color-mix(in srgb, var(--hamta-primary, #0d6efd) 18%, var(--hamta-body-bg, #ffffff));
	--bs-btn-active-border-color: var(--hamta-primary, #0d6efd);
	--bs-btn-active-color: var(--hamta-primary, #0d6efd);
	padding: 0.5rem 1.5rem;
	font-weight: 600;
	border-radius: 1.5rem;
	border-width: 0;
	transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.hero-section__button.btn-primary:hover,
.hero-section__button.btn-primary:focus-visible {
	background-image: linear-gradient(
		135deg,
		color-mix(in srgb, var(--hamta-primary, #0d6efd) 14%, var(--hamta-body-bg, #ffffff)),
		color-mix(in srgb, var(--hamta-primary, #0d6efd) 6%, var(--hamta-body-bg, #ffffff))
	);
}

.mx-landing-page .hero-section:first-child {
	padding-top: clamp(4rem, 10vw, 7rem);
}

.landing-grid-section {
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.landing-grid-section__full {
	padding-inline: clamp(1rem, 3vw, 2rem);
}

.landing-grid-section__head {
    margin-right: auto;
    max-width: 42rem;
    margin-left: auto;
	margin-bottom: 2rem;
}

.landing-grid-section__head--with-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.landing-grid-section__head--with-action .landing-grid-section__title {
	flex: 1;
	min-width: 0;
}

.landing-grid-section__action {
	flex-shrink: 0;
	white-space: nowrap;
}

.landing-grid-section__title :is(h1, h2, h3, h4, h5, h6) {
	line-height: 1.2;
	margin-bottom: 0.75rem;
	color: inherit;
}

.landing-grid-section__title h1,
.landing-grid-section__title h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
}

.landing-grid-section__title p:last-child {
	margin-bottom: 0;
}
.landing-grid-section__title strong{
	color: var(--hamta-primary, #0d6efd);
}
.landing-grid-item {
	position: relative;
	min-height: 220px;
	border-radius: 1rem;
	overflow: hidden;
}

.landing-grid-section--bordered .landing-grid-item {
	border: var(--hamta-landing-grid-item-border, 1px solid var(--hamta-border));
}

.landing-grid-item__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    min-height: inherit;
    padding: 1.25rem;
    height: 100%;
	align-items: center;
}

.landing-grid-item--has-overlay .landing-grid-item__body {
	/* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.65) 100%); */
	color: #ffffff;
}

.landing-grid-item__content :is(h2, h3, h4) {
    line-height: 1.25;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}
.landing-grid--cols-2 .landing-grid-item__content :is(h2, h3, h4){
	font-size: 2rem;
	margin-bottom: 1.5rem;
}
.landing-grid--cols-2 .landing-grid-item__body{
    align-items: flex-start;
}
.landing-grid-item__content strong{
	color: var(--hamta-primary);
}
.landing-grid-item__content p {
	margin: 0;
}
 
.btn-primary {
	align-self: center;
	--bs-btn-bg: var(--hamta-primary);
	--bs-btn-border-color: var(--hamta-primary);
	--bs-btn-color: var(--hamta-main-text, #ffffff);
	--bs-btn-hover-bg: color-mix(in srgb, var(--hamta-primary) 12%, var(--hamta-body-bg, #ffffff));
	--bs-btn-hover-border-color: var(--hamta-primary);
	--bs-btn-hover-color: var(--hamta-primary);
	--bs-btn-active-bg: color-mix(in srgb, var(--hamta-primary) 18%, var(--hamta-body-bg, #ffffff));
	--bs-btn-active-border-color: var(--hamta-primary);
	--bs-btn-active-color: var(--hamta-primary);
	border-radius: 1.5rem;
	border-width: 0;
	padding: 0.5rem 1.25rem;
	font-weight: 600;
	transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
	background-image: linear-gradient(
		135deg,
		color-mix(in srgb, var(--hamta-primary) 14%, var(--hamta-body-bg, #ffffff)),
		color-mix(in srgb, var(--hamta-primary) 6%, var(--hamta-body-bg, #ffffff))
	);
}

.btn-secondary {
	--bs-btn-bg: var(--hamta-main-text);
	--bs-btn-border-color: var(--hamta-main-text);
	--bs-btn-color: var(--hamta-body-bg);
	--bs-btn-hover-bg: color-mix(in srgb, var(--hamta-main-text) 10%, var(--hamta-body-bg));
	--bs-btn-hover-border-color: var(--hamta-main-text);
	--bs-btn-hover-color: var(--hamta-main-text);
	--bs-btn-active-bg: color-mix(in srgb, var(--hamta-main-text) 16%, var(--hamta-body-bg));
	--bs-btn-active-border-color: var(--hamta-main-text);
	--bs-btn-active-color: var(--hamta-main-text);
	color: var(--hamta-body-bg);
	background-color: var(--hamta-main-text);
	border-color: var(--hamta-main-text);
	border-radius: 1.5rem;
	border-width: 0;
	padding: 0.5rem 1.25rem;
	font-weight: 600;
	transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
	background-image: linear-gradient(
		135deg,
		color-mix(in srgb, var(--hamta-main-text) 12%, var(--hamta-body-bg)),
		color-mix(in srgb, var(--hamta-main-text) 4%, var(--hamta-body-bg))
	);
	color: var(--hamta-main-text);
}

.landing-grid-item--has-overlay .btn-secondary {
	--bs-btn-hover-bg: color-mix(in srgb, var(--hamta-body-bg) 88%, transparent);
	--bs-btn-hover-border-color: var(--hamta-body-bg);
	--bs-btn-hover-color: var(--hamta-body-bg);
}

.landing-grid-item--has-overlay .btn-secondary:hover,
.landing-grid-item--has-overlay .btn-secondary:focus-visible {
	background-image: linear-gradient(
		135deg,
		color-mix(in srgb, var(--hamta-body-bg) 22%, transparent),
		color-mix(in srgb, var(--hamta-body-bg) 8%, transparent)
	);
	/* color: var(--hamta-body-bg); */
	border-color: var(--hamta-body-bg);
}

.landing-grid-item--image:not(.landing-grid-item--has-overlay) {
	min-height: 260px;
}

.landing-grid-row--coeff .landing-grid-item {
	align-self: stretch;
}
.barlux-gallery{
	position: relative;
}
.barlux-gallery::before{
	content: '';
	background-image: url(https://rialito.com/barlux/wp-content/uploads/2026/06/Topographic-1.svg);
    background-size: cover;
    background-position: center;
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.barlux-gallery .landing-grid-item{
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat;
}

.reviews-section {
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.reviews-section__full {
	padding-inline: clamp(1rem, 3vw, 2rem);
}

.reviews-section__head {
	margin-bottom: 2rem;
	max-width: 42rem;
	margin-inline: auto;
	text-align: center;
}

.reviews-section__title :is(h1, h2, h3, h4, h5, h6) {
	line-height: 1.2;
	margin-bottom: 0.75rem;
	color: inherit;
}

.reviews-section__title h1,
.reviews-section__title h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
}

.reviews-section__title p:last-child {
	margin-bottom: 0;
}

.reviews-section__title strong {
	color: var(--hamta-primary, #0d6efd);
}

.reviews-section__slider {
	position: relative;
}

.reviews-swiper {
	overflow: hidden;
	padding-bottom: 2.75rem;
}

.reviews-swiper .swiper-slide {
	height: auto;
}

.review-card {
	gap: 1rem;
	height: 100%;
	padding: 1.75rem 1.5rem;
	border-radius: 1rem;
	background: transparent;
	transition: background-color 0.3s ease;
}

.reviews-swiper .swiper-slide-active .review-card {
	background: rgba(255, 255, 255, 0.2);
}

.review-card__photo {
	position: relative;
	width: 72px;
	height: 72px;
	flex-shrink: 0;
	margin: 0 0 0 auto;
}

.review-card__photo-media {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
}

.review-card__photo-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.reviews-swiper .swiper-slide-active .review-card .review-card__quote{
	display: none
}
.review-card__quote {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.625rem;
	height: 1.625rem;
	border-radius: 50%;
	background: var(--hamta-primary, #0d6efd);
	color: var(--hamta-main-text, #212529);
	font-size: 0.8125rem;
	line-height: 1;
	transform: translate(20%, -20%);
}

.review-card__quote .bi {
	display: block;
}

.review-card__stars {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	color: var(--hamta-border, #dee2e6);
	font-size: 1rem;
	line-height: 1;
}

.review-card__stars .bi.is-filled {
	color: #FFC107;
}

.review-card__text {
	flex: 1;
	width: 100%;
	margin: 1rem 0;
}

.review-card__text p {
	margin: 0;
	font-size: 0.975rem;
	line-height: 1.65;
	color: inherit;
}

.review-card__name {
	margin-top: 1rem;
	margin: 0;
	font-size: 0.9375rem;
	/* font-weight: 700; */
	color: var(--hamta-primary);
}

.reviews-swiper__pagination {
	bottom: 0 !important;
}

.swiper-pagination {
	position: relative !important;
    text-align: center;
    transition: .3s opacity;
    margin-top: 2rem;
}

.reviews-swiper__pagination .swiper-pagination-bullet {
    width: 24px;
    height: 6px;
    background: var(--hamta-border, #dee2e6);
    opacity: 1;
    transition: background-color 0.25s ease, transform 0.25s ease;
    border-radius: 16px;
}

.reviews-swiper__pagination .swiper-pagination-bullet-active {
	background: var(--hamta-primary, #0d6efd);
	width: 32px;
}

.blog-section {
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.blog-section__full {
	padding-inline: clamp(1rem, 3vw, 2rem);
}

.blog-section__head {
	margin-bottom: 2rem;
	max-width: 42rem;
	margin-inline: auto;
	text-align: center;
}

.blog-section__head--with-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	max-width: none;
	margin-inline: 0;
	text-align: left;
}

.blog-section__head--with-action .blog-section__title {
	flex: 1;
	min-width: 0;
}

.blog-section__action {
	flex-shrink: 0;
	white-space: nowrap;
}

.blog-section__title :is(h1, h2, h3, h4, h5, h6) {
	line-height: 1.2;
	margin-bottom: 0.75rem;
	color: inherit;
}

.blog-section__title h1,
.blog-section__title h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
}

.blog-section__title p:last-child {
	margin-bottom: 0;
}

.blog-section__title strong {
	color: var(--hamta-primary, #0d6efd);
}

.blog-section__slider {
	position: relative;
}

.blog-swiper {
	overflow: hidden;
	padding-bottom: 2.75rem;
}

.blog-swiper .swiper-slide {
	height: auto;
}

.blog-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	height: 100%;
	background: transparent;
	border: none;
	text-align: center;
}

.blog-card__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	border-radius: 1rem;
	overflow: hidden;
}

.blog-card__thumb-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.blog-card__thumb:hover .blog-card__thumb-img {
	transform: scale(1.04);
}

.blog-card__title {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.35;
}

.blog-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.blog-card__title a:hover {
	color: var(--hamta-primary, #0d6efd);
}

.blog-card__desc {
	flex: 1;
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--hamta-sub-text, #6c757d);
}

.blog-card__btn {
	align-self: center;
	margin-top: auto;
}

.blog-swiper__pagination {
	bottom: 0 !important;
}

.blog-swiper__pagination .swiper-pagination-bullet {
	width: 24px;
	height: 6px;
	background: var(--hamta-border, #dee2e6);
	opacity: 1;
	transition: background-color 0.25s ease, width 0.25s ease;
	border-radius: 16px;
}

.blog-swiper__pagination .swiper-pagination-bullet-active {
	background: var(--hamta-primary, #0d6efd);
	width: 32px;
}

.contact-section {
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.contact-section__full {
	padding-inline: clamp(1rem, 3vw, 2rem);
}

.contact-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}

.contact-section__content :is(h1, h2, h3, h4, h5, h6) {
	line-height: 1.2;
	margin-bottom: 0.75rem;
	color: inherit;
}

.contact-section__content h1,
.contact-section__content h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
}

.contact-section__content p:last-child {
	margin-bottom: 0;
}

.contact-section__content strong {
	color: var(--hamta-primary, #0d6efd);
}
.contact-section .contact-info__title {
	display: none;
}
.contact-info {
	margin-top: 2rem;
}

.contact-info__title {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: inherit;
}

.contact-info__phones {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.contact-info__phones a,
.contact-info__email a {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.contact-info__phones a:hover,
.contact-info__email a:hover {
	color: var(--hamta-primary, #0d6efd);
}

.contact-info__address,
.contact-info__email {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	margin: 0 0 1.25rem;
	color: inherit;
}

.contact-form-block__intro {
	margin-bottom: 1.5rem;
	color: inherit;
}

.contact-form-block__intro :is(h1, h2, h3, h4, h5, h6) {
	line-height: 1.2;
	margin-bottom: 0.75rem;
	color: inherit;
}

.contact-form-block__intro h1,
.contact-form-block__intro h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
}

.contact-form-block__intro :is(h2, h3, h4) {
	margin-bottom: 0.75rem;
	line-height: 1.3;
	color: inherit;
}

.contact-form-block__intro p:last-child {
	margin-bottom: 0;
}

.contact-form-block__intro strong {
	color: var(--hamta-primary, #0d6efd);
}

.contact-form-block__alert {
	margin-bottom: 1rem;
	padding: 0.875rem 1rem;
	border-radius: 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.contact-form-block__alert--success {
	background: color-mix(in srgb, var(--hamta-primary, #0d6efd) 12%, var(--hamta-body-bg, #ffffff));
	border: 1px solid color-mix(in srgb, var(--hamta-primary, #0d6efd) 30%, var(--hamta-border, #dee2e6));
	color: inherit;
}

.contact-form-block__alert--error {
	background: color-mix(in srgb, #dc3545 10%, var(--hamta-body-bg, #ffffff));
	border: 1px solid color-mix(in srgb, #dc3545 25%, var(--hamta-border, #dee2e6));
	color: inherit;
}

.contact-form {
	display: grid;
	gap: 1rem;
}

.contact-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__label {
	display: block;
	margin-bottom: 0.375rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: inherit;
}

.contact-form__input,
.contact-form__textarea {
	width: 100%;
	/* border-color: var(--hamta-border, #dee2e6); */
	border-radius: 0.75rem;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
	border-color: var(--hamta-primary, #0d6efd);
	box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--hamta-primary, #0d6efd) 18%, transparent);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
	color: var(--hamta-sub-text, #6c757d);
	opacity: 1;
}

.contact-form__submit {
	width: 100%;
	justify-content: center;
}

.contact-form__submit.is-loading {
	opacity: 0.75;
	cursor: wait;
}

.contact-form-block__alert[hidden] {
	display: none !important;
}
.form-control{
	border: none;
}

.contact-section__col--content{
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.contact-section__col i{
	color: var(--hamta-primary);
}

.contact-page {
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.contact-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: stretch;
}

.contact-page__grid--no-map {
	grid-template-columns: minmax(0, 1fr);
	max-width: 42rem;
}

.contact-page__col--main {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-page__title {
	margin-bottom: 1rem;
}

.contact-page__content :is(h1, h2, h3, h4, h5, h6) {
	line-height: 1.2;
	margin-bottom: 0.75rem;
	color: inherit;
}

.contact-page__content h1,
.contact-page__content h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
}

.contact-page__content p:last-child {
	margin-bottom: 0;
}

.contact-page__content strong {
	color: var(--hamta-primary, #0d6efd);
}

.contact-page .contact-info {
	margin-top: 0;
}

.contact-page__col--map {
	min-height: clamp(20rem, 50vh, 32rem);
}

.contact-map {
	width: 100%;
	height: 100%;
	min-height: clamp(20rem, 50vh, 32rem);
	border-radius: 1rem;
	overflow: hidden;
	background: #e9ecef;
	box-shadow:
		0 1px 2px color-mix(in srgb, var(--hamta-main-text, #212529) 6%, transparent),
		0 12px 32px color-mix(in srgb, var(--hamta-main-text, #212529) 8%, transparent);
	border: 1px solid color-mix(in srgb, var(--hamta-border, #dee2e6) 80%, #ffffff);
}

.contact-map .leaflet-container {
	height: 100%;
	min-height: inherit;
	font: inherit;
	background: #e9ecef;
}

.contact-map .leaflet-control-zoom {
	border: 0;
	box-shadow:
		0 2px 8px color-mix(in srgb, var(--hamta-main-text, #212529) 12%, transparent),
		0 1px 2px color-mix(in srgb, var(--hamta-main-text, #212529) 6%, transparent);
	border-radius: 0.75rem;
	overflow: hidden;
}

.contact-map .leaflet-bar a {
	width: 2.25rem;
	height: 2.25rem;
	line-height: 2.25rem;
	border: 0;
	background: color-mix(in srgb, var(--hamta-body-bg, #ffffff) 92%, #e9ecef);
	color: var(--hamta-sub-text, #6c757d);
	font-size: 1.125rem;
	font-weight: 600;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-map .leaflet-bar a:hover,
.contact-map .leaflet-bar a:focus {
	background: var(--hamta-body-bg, #ffffff);
	color: var(--hamta-primary, #0d6efd);
}

.contact-map .leaflet-bar a.leaflet-disabled {
	background: color-mix(in srgb, var(--hamta-body-bg, #ffffff) 80%, #e9ecef);
	color: color-mix(in srgb, var(--hamta-sub-text, #6c757d) 55%, transparent);
}

.contact-map .leaflet-control-attribution {
	margin: 0.5rem;
	padding: 0.25rem 0.5rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--hamta-body-bg, #ffffff) 88%, transparent);
	backdrop-filter: blur(6px);
	font-size: 0.6875rem;
	line-height: 1.4;
	color: var(--hamta-sub-text, #6c757d);
	box-shadow: 0 1px 4px color-mix(in srgb, var(--hamta-main-text, #212529) 8%, transparent);
}

.contact-map .leaflet-control-attribution a {
	color: var(--hamta-sub-text, #6c757d);
	text-decoration: none;
}

.contact-map .leaflet-control-attribution a:hover,
.contact-map .leaflet-control-attribution a:focus {
	color: var(--hamta-primary, #0d6efd);
}

.contact-map__marker {
	background: transparent;
	border: 0;
}

.contact-map__marker-pin {
	display: block;
	position: relative;
	width: 1.125rem;
	height: 1.125rem;
	margin: 0 auto;
	background: var(--hamta-primary, #0d6efd);
	border: 3px solid var(--hamta-body-bg, #ffffff);
	border-radius: 50%;
	box-shadow:
		0 4px 12px color-mix(in srgb, var(--hamta-primary, #0d6efd) 35%, transparent),
		0 2px 6px color-mix(in srgb, var(--hamta-main-text, #212529) 18%, transparent);
}

.contact-map__marker-pin::before {
	content: '';
	position: absolute;
	inset: -0.625rem;
	border-radius: 50%;
	background: color-mix(in srgb, var(--hamta-primary, #0d6efd) 18%, transparent);
	animation: contact-map-marker-pulse 2.4s ease-out infinite;
}

@keyframes contact-map-marker-pulse {
	0% {
		transform: scale(0.55);
		opacity: 0.85;
	}

	70% {
		transform: scale(1.35);
		opacity: 0;
	}

	100% {
		transform: scale(1.35);
		opacity: 0;
	}
}
.page-template-page-templates .contact-info__title{
	display: none;
}

.faq-page {
	padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}

.faq-page__intro {
	max-width: 46rem;
	margin-inline: auto;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	text-align: center;
}

.faq-page__title {
	margin-bottom: 1rem;
}

.faq-page__content :last-child {
	margin-bottom: 0;
}

.faq-page__panels {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
}

.faq-page__answers {
	background: var(--hamta-main-text, #212529);
	color: var(--hamta-body-bg, #ffffff);
	border-radius: 1.25rem;
}
.faq-page__question{
    background: var(--hamta-main-text, #212529);
    color: var(--hamta-body-bg, #ffffff);
    border-radius: 1.25rem;
}
.faq-page__questions {
	position: relative;
	z-index: 2;
}

.faq-page__answers {
    position: relative;
    z-index: 1;
    margin-left: -5rem;
    min-height: clamp(24rem, 30vw, 22rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-right: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
    padding-left: calc(5rem + clamp(2rem, 4vw, 3rem));
    display: flex;
    align-items: center;
}

.faq-page__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.faq-page__item {
	margin: 0;
}

.faq-page__question {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
    padding: 1rem 1.125rem;
    border: 0;
    border-radius: 1.5rem;
    background: var(--hamta-main-text, #212529);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.25s ease;
    border: 1px solid color-mix(in srgb, var(--hamta-sub-text, #6c757d) 50%, transparent);
}

.faq-page__question:hover,
.faq-page__question:focus-visible {
	background: color-mix(in srgb, var(--hamta-primary, #0d6efd) 6%, var(--hamta-main-text));
	outline: none;
}

.faq-page__question.is-active {
	background: color-mix(in srgb, var(--hamta-primary, #0d6efd) 12%, var(--hamta-main-text));
}

.faq-page__bullet {
	flex-shrink: 0;
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 50%;
	background: var(--hamta-primary, #0d6efd);
	box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--hamta-primary, #0d6efd) 20%, transparent);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-page__question.is-active .faq-page__bullet {
	transform: scale(1.15);
	box-shadow: 0 0 0 0.375rem color-mix(in srgb, var(--hamta-primary, #0d6efd) 28%, transparent);
}

.faq-page__question-text {
	flex: 1;
	min-width: 0;
	font-size: clamp(1rem, 1.6vw, 1rem);
	font-weight: 600;
	line-height: 1.5;
	color: var(--hamta-body-bg, #ffffff);
}

.faq-page__chevron {
	flex-shrink: 0;
	font-size: 1rem;
	color: var(--hamta-primary, #0d6efd);
	transition: transform 0.25s ease;
}

.faq-page__question.is-active .faq-page__chevron {
	transform: translateX(0.125rem);
}

.faq-page__answer {
	display: none;
	animation: faq-answer-fade 0.3s ease;
}

.faq-page__answer.is-active {
	display: block;
}

.faq-page__answer-body {
	font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	line-height: 1.75;
	color: inherit;
}

.faq-page__answer-body :is(p, ul, ol) {
	margin-bottom: 1rem;
}

.faq-page__answer-body :last-child {
	margin-bottom: 0;
}

.faq-page__answer-body a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

@keyframes faq-answer-fade {
	from {
		opacity: 0;
		transform: translateY(0.5rem);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.page-template-page-templates .contact-info i{
	color: var(--hamta-primary);
}

.product-category-page {
	padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.product-category-page__breadcrumb-wrap {
	padding-top: 1.25rem;
}

.product-category-page__breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.375rem 0;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.875rem;
	line-height: 1.5;
}

.product-category-page__breadcrumb-item {
	display: inline-flex;
	align-items: center;
	color: var(--hamta-sub-text, #6c757d);
}

.product-category-page__breadcrumb-item:not(:last-child)::after {
	content: '/';
	margin-inline: 0.5rem;
	color: var(--hamta-border, #dee2e6);
}

.product-category-page__breadcrumb-item a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.product-category-page__breadcrumb-item a:hover,
.product-category-page__breadcrumb-item a:focus-visible {
	color: var(--hamta-primary, #0d6efd);
}

.product-category-page__breadcrumb-item.is-current span {
	color: var(--hamta-main-text, #212529);
	font-weight: 600;
}

.product-category-page__banner-wrap {
	padding-top: 1.25rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.product-category-page__banner {
	position: relative;
	width: 100%;
	min-height: 300px;
	max-height: 440px;
	overflow: hidden;
	border-radius: 1.25rem;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.product-category-page__banner-img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 300px;
	max-height: 440px;
	object-fit: cover;
}

.product-category-page__banner-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(2rem, 5vw, 3.5rem);
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.35) 50%,
		rgba(0, 0, 0, 0.6) 100%
	);
}

.product-category-page__banner-content {
	max-width: 48rem;
	margin-inline: auto;
	color: #ffffff;
	text-align: center;
}

.product-category-page__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--hamta-primary, #0d6efd);
}

.product-category-page__banner .product-category-page__eyebrow {
	color: color-mix(in srgb, var(--hamta-primary, #0d6efd) 70%, #ffffff);
}

.product-category-page__banner .product-category-page__title {
	margin-bottom: 1rem;
	color: #ffffff;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
}

.product-category-page__banner .product-category-page__top-content {
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	line-height: 1.7;
}

.product-category-page__banner .product-category-page__top-content a {
	color: #ffffff;
}

.product-category-page__intro {
	max-width: 46rem;
	margin: 0 auto clamp(2.5rem, 5vw, 4rem);
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
	text-align: center;
	background: var(--hamta-secondary-bg, #f8f9fa);
	border-radius: 1.25rem;
	border: 1px solid var(--hamta-border, #dee2e6);
}

.product-category-page__intro .product-category-page__title {
	margin-bottom: 1rem;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
}

.product-category-page__intro .product-category-page__top-content {
	font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	line-height: 1.7;
}

.product-category-page__title {
	margin-bottom: 1rem;
}

.product-category-page__top-content :last-child,
.product-category-page__bottom-content :last-child {
	margin-bottom: 0;
}

.product-category-page__section-head {
	max-width: 42rem;
	margin: 0 auto 2rem;
	text-align: center;
}

.product-category-page__section-head--products {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	max-width: none;
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
	text-align: left;
}

.product-category-page__section-head--products .product-category-page__section-head-inner {
	flex: 1;
	min-width: min(100%, 20rem);
}

.product-category-page__section-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--hamta-main-text, #212529);
}

.product-category-page__section-desc {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--hamta-sub-text, #6c757d);
}

.product-category-page__count {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--hamta-primary, #0d6efd) 10%, var(--hamta-body-bg, #ffffff));
	border: 1px solid color-mix(in srgb, var(--hamta-primary, #0d6efd) 20%, var(--hamta-border, #dee2e6));
	color: var(--hamta-primary, #0d6efd);
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.product-category-page__categories-band {
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	padding: clamp(2.5rem, 5vw, 4rem) 0;
	background: var(--hamta-secondary-bg, #f8f9fa);
	border-block: 1px solid var(--hamta-border, #dee2e6);
}

.product-category-page__categories {
	margin-bottom: 0;
}

.product-category-page__slider {
	position: relative;
}

.product-category-swiper {
	overflow: hidden;
	padding-bottom: 2.75rem;
}

.product-category-swiper .swiper-slide {
	height: auto;
}

.product-category-swiper__pagination {
	bottom: 0 !important;
}

.product-category-swiper__pagination .swiper-pagination-bullet {
	width: 24px;
	height: 6px;
	background: var(--hamta-border, #dee2e6);
	opacity: 1;
	transition: background-color 0.25s ease, width 0.25s ease;
	border-radius: 16px;
}

.product-category-swiper__pagination .swiper-pagination-bullet-active {
	background: var(--hamta-primary, #0d6efd);
	width: 32px;
}

.product-category-page__main {
	padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.product-category-page__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
	margin-bottom: 0;
}

.product-category-page__pagination {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.product-category-page__pagination .navigation.pagination {
	width: 100%;
	margin: 0;
}

.product-category-page__pagination .navigation.pagination .nav-links {
	justify-content: center;
	width: 100%;
}

.product-category-page__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin: 0 0 2.5rem;
	padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
	text-align: center;
	background: var(--hamta-secondary-bg, #f8f9fa);
	border: 1px dashed var(--hamta-border, #dee2e6);
	border-radius: 1.25rem;
}

.product-category-page__empty-icon {
	font-size: 2.5rem;
	color: var(--hamta-primary, #0d6efd);
	opacity: 0.75;
}

.product-category-page__empty-text {
	margin: 0;
	font-size: 1rem;
	color: var(--hamta-sub-text, #6c757d);
}

.product-category-page__faq {
	margin-top: clamp(3rem, 6vw, 5rem);
	margin-bottom: 0;
	padding-top: clamp(2.5rem, 5vw, 4rem);
	border-top: 1px solid var(--hamta-border, #dee2e6);
}

.product-category-page__section-head--faq {
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.product-category-page__bottom {
	margin-top: clamp(3rem, 6vw, 5rem);
	padding: clamp(2rem, 4vw, 3rem);
	background: var(--hamta-secondary-bg, #f8f9fa);
	border-radius: 1.25rem;
	border: 1px solid var(--hamta-border, #dee2e6);
}

.product-category-page__bottom-content {
	max-width: 48rem;
	margin-inline: auto;
	font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	line-height: 1.75;
}

.product-category-card,
.product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--hamta-body-bg, #ffffff);
	border: 1px solid var(--hamta-border, #dee2e6);
	border-radius: 1rem;
	overflow: hidden;
	text-align: center;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.product-category-card:hover,
.product-card:hover {
	border-color: color-mix(in srgb, var(--hamta-primary, #0d6efd) 30%, var(--hamta-border, #dee2e6));
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}

.product-category-card__thumb,
.product-card__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	flex-shrink: 0;
}

.product-category-card__thumb--logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: color-mix(in srgb, var(--hamta-secondary-bg, #f8f9fa) 60%, var(--hamta-body-bg, #ffffff));
}

.product-category-card__logo-img {
	display: block;
	width: auto;
	max-width: 75%;
	max-height: 100px;
	height: auto;
	object-fit: contain;
	transition: transform 0.35s ease;
	filter: contrast(0) brightness(2);
}

.product-card__thumb-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.product-category-card__thumb-placeholder,
.product-card__thumb-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: color-mix(in srgb, var(--hamta-secondary-bg, #f8f9fa) 80%, var(--hamta-border, #dee2e6));
	color: var(--hamta-sub-text, #6c757d);
	font-size: 2rem;
}

.product-category-card__body,
.product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding: 1.25rem 1.25rem 1.5rem;
}

.product-category-card__thumb:hover .product-category-card__logo-img,
.product-card__thumb:hover .product-card__thumb-img {
	transform: scale(1.05);
}

.product-card__title {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
}

.product-category-card__title {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
}

.product-category-card__title a,
.product-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.product-category-card__title a:hover,
.product-card__title a:hover {
	color: var(--hamta-primary, #0d6efd);
}

.product-category-card__desc,
.product-card__desc {
	flex: 1;
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--hamta-sub-text, #6c757d);
}

.product-category-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	margin-top: auto;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--hamta-primary, #0d6efd);
	transition: gap 0.25s ease;
}

.product-category-card:hover .product-category-card__link {
	gap: 0.625rem;
}

.product-category-card__link .bi {
	font-size: 0.875rem;
	line-height: 1;
}

.product-card__btn {
	align-self: center;
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.product-card__btn .bi {
	font-size: 0.875rem;
	line-height: 1;
	transition: transform 0.25s ease;
}

.product-card:hover .product-card__btn .bi {
	transform: translateX(3px);
}

.navigation.pagination {
	margin: 2.5rem 0 0;
}

.navigation.pagination .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;
}

.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.navigation.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	height: 2.75rem;
	padding: 0 0.875rem;
	border: 1px solid var(--hamta-border, #dee2e6);
	border-radius: 999px;
	background-color: var(--hamta-body-bg, #ffffff);
	color: var(--hamta-main-text, #212529);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus-visible {
	border-color: var(--hamta-primary, #0d6efd);
	color: var(--hamta-primary, #0d6efd);
	background-color: color-mix(in srgb, var(--hamta-primary, #0d6efd) 8%, var(--hamta-body-bg, #ffffff));
}

.navigation.pagination .page-numbers.current {
	border-color: var(--hamta-primary, #0d6efd);
	background-color: var(--hamta-primary, #0d6efd);
	color: var(--hamta-body-bg, #ffffff);
	cursor: default;
}

.navigation.pagination .page-numbers.dots {
	min-width: auto;
	padding: 0 0.25rem;
	border-color: transparent;
	background: transparent;
	color: var(--hamta-sub-text, #6c757d);
	cursor: default;
}

.navigation.pagination .prev.page-numbers,
.navigation.pagination .next.page-numbers {
	min-width: auto;
	padding: 0 1.125rem;
}
.product-category-page__categories .swiper-wrapper {
	justify-content: flex-start;
}

@media (min-width: 1200px) {
	.product-category-page__grid--products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.single-product-page {
	padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.single-product-page__breadcrumb-wrap {
	padding-top: 1.25rem;
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.single-product-page__header {
	margin-bottom: clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.single-product-page__sku {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.04em;
	background: linear-gradient(
		180deg,
		var(--hamta-sub-text, #6c757d) 0%,
		transparent 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	font-weight: bold;
    font-size: 5rem;
    margin: 0 0 -2rem 0;
}

.single-product-page__title {
	margin: 0;
	font-size: clamp(1.75rem, 4.5vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--hamta-main-text, #212529);
}

.single-product-page__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	min-width: 0;
}

.single-product-page__gallery {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	min-width: 0;
	max-width: 100%;
}

.single-product-page__gallery-main {
	position: relative;
	width: 100%;
	min-width: 0;
	max-width: 100%;
	border-radius: 1.25rem;
	overflow: hidden;
}

.product-gallery-main {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.product-gallery-main .swiper-wrapper {
	box-sizing: border-box;
}

.product-gallery-main .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	flex-shrink: 0;
	box-sizing: border-box;
}

.single-product-page__figure {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0;
	aspect-ratio: 4 / 3;
}

.single-product-page__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 1rem;
}

.single-product-page__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid var(--hamta-border, #dee2e6);
	border-radius: 50%;
	background: var(--hamta-body-bg, #ffffff);
	color: var(--hamta-main-text, #212529);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-50%);
	cursor: pointer;
	transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.single-product-page__nav:hover,
.single-product-page__nav:focus-visible {
	border-color: var(--hamta-primary, #0d6efd);
	color: var(--hamta-primary, #0d6efd);
}

.single-product-page__nav--prev {
	left: 1rem;
}

.single-product-page__nav--next {
	right: 1rem;
}

.single-product-page__gallery-thumbs {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
}

.product-gallery-thumbs {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.single-product-page__gallery-thumbs .swiper-slide {
	width: 4.75rem;
	height: auto;
	flex-shrink: 0;
}

.single-product-page__thumb {
	display: block;
	width: 4.75rem;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 0.75rem;
	overflow: hidden;
	background: var(--hamta-body-bg, #ffffff);
	cursor: pointer;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.single-product-page__thumb-img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.product-gallery-thumbs .swiper-slide-thumb-active .single-product-page__thumb {
	border-color: var(--hamta-primary, #0d6efd);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--hamta-primary, #0d6efd) 15%, transparent);
}

.single-product-page__gallery-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	border-radius: 1.25rem;
	color: var(--hamta-sub-text, #6c757d);
	font-size: 3rem;
}

.single-product-page__aside {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.single-product-page__excerpt {
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.75;
	color: var(--hamta-sub-text, #6c757d);
}

.single-product-page__excerpt :last-child {
	margin-bottom: 0;
}

.single-product-page__pricing {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
	padding: 1rem 1.25rem;
	border-radius: 0.875rem;
	background: var(--hamta-secondary-bg, #f8f9fa);
}

.single-product-page__price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--hamta-main-text, #212529);
}

.single-product-page__price--sale {
	color: var(--hamta-primary, #0d6efd);
}

.single-product-page__price--regular {
	font-size: 1rem;
	font-weight: 500;
	color: var(--hamta-sub-text, #6c757d);
	text-decoration: line-through;
}

.single-product-page__stock {
	display: inline-flex;
	align-items: center;
	padding: 0.375rem 0.75rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.single-product-page__stock.is-in-stock {
	background: color-mix(in srgb, #198754 12%, var(--hamta-body-bg, #ffffff));
	color: #198754;
}

.single-product-page__stock.is-out-of-stock {
	background: color-mix(in srgb, #dc3545 10%, var(--hamta-body-bg, #ffffff));
	color: #dc3545;
}

.single-product-page__manual-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	align-self: flex-start;
}

.single-product-page__stats {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.single-product-page__stat {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0.375rem;
	padding: 0.55rem .75rem;
	border: 1px solid var(--hamta-border, #dee2e6);
	border-radius: 999px;
	background: var(--hamta-body-bg, #ffffff);
	color: var(--hamta-main-text, #212529);
	font: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	cursor: pointer;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background-color 0.25s ease;
	min-width: 34px;
}

.single-product-page__stat:disabled {
	cursor: default;
}

.single-product-page__stat:not(:disabled):hover,
.single-product-page__stat:not(:disabled):focus-visible {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.single-product-page__stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	line-height: 1;
	color: inherit;
}

.single-product-page__stat-label {
	color: inherit;
}

.single-product-page__stat--rating {
	border-color: #fbf3ea;
	background: #fbf3ea;
	color: #d48d3b;
}

.single-product-page__stat--comments {
	border-color: #edf0f8;
	background: #edf0f8;
	color: #3a4980;
}

.single-product-page__stat--like {
	border-color: #fbe9ea;
	background: #fbe9ea;
	color: #e2555e;
}

.single-product-page__stat--share {
	padding-inline: 0.5rem;
	border-color: var(--hamta-main-text, #212529);
	background: var(--hamta-main-text, #212529);
	color: var(--hamta-body-bg, #ffffff);
}

.single-product-page__stat--like.is-liked .bi-heart::before {
	content: "\f415";
}

.single-product-page__stat--like:disabled {
	opacity: 0.7;
}

.single-product-page__tabs {
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.single-product-page__tabs-nav {
	display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 4px solid var(--hamta-border, #dee2e6);
}

.single-product-page__tab {
    padding: 0.75rem 1.25rem;
    border: 0;
    background: transparent;
    color: var(--hamta-sub-text, #6c757d);
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
    margin: 0 0 -4px 0;
}

.single-product-page__tab:hover,
.single-product-page__tab:focus-visible {
	color: var(--hamta-main-text, #212529);
}

.single-product-page__tab.is-active {
    color: var(--hamta-primary, #0d6efd);
    border-bottom: 4px solid var(--hamta-primary);
}

.single-product-page__tab-panel {
	display: none;
}

.single-product-page__tab-panel.is-active {
	display: block;
}

.single-product-page__specs-list {
	display: grid;
	gap: 0;
	margin: 0;
	border: 1px solid var(--hamta-border, #dee2e6);
	border-radius: 0.875rem;
	overflow: hidden;
}

.single-product-page__specs-row {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 1rem;
	padding: 0.875rem 1rem;
	border-top: 1px solid var(--hamta-border, #dee2e6);
}

.single-product-page__specs-row:first-child {
	border-top: 0;
}

.single-product-page__specs-row:nth-child(even) {
	background: color-mix(in srgb, var(--hamta-secondary-bg, #f8f9fa) 70%, var(--hamta-body-bg, #ffffff));
}

.single-product-page__specs-row dt {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--hamta-main-text, #212529);
}

.single-product-page__specs-row dd {
	margin: 0;
	font-size: 0.875rem;
	color: var(--hamta-sub-text, #6c757d);
}

.single-product-page__comments-empty {
	margin: 0 0 1.5rem;
	color: var(--hamta-sub-text, #6c757d);
}

.single-product-page__comment-alert {
	margin-bottom: 1.25rem;
	padding: 0.875rem 1rem;
	border-radius: 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.single-product-page__comment-alert--success {
	border: 1px solid color-mix(in srgb, #198754 30%, transparent);
	background: color-mix(in srgb, #198754 10%, var(--hamta-body-bg, #ffffff));
	color: #198754;
}

.single-product-page__comment-alert--error {
	border: 1px solid color-mix(in srgb, #dc3545 30%, transparent);
	background: color-mix(in srgb, #dc3545 10%, var(--hamta-body-bg, #ffffff));
	color: #dc3545;
}

.single-product-page__comment-alert[hidden] {
	display: none !important;
}

.single-product-page__comment-list {
	display: grid;
	gap: 1.25rem;
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}

.single-product-page__comment {
	margin: 0;
}

.single-product-page__comment-body {
	padding: 1.25rem;
	border: 1px solid var(--hamta-border, #dee2e6);
	border-radius: 1rem;
	background: var(--hamta-secondary-bg, #f8f9fa);
}

.single-product-page__comment-header {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	margin-bottom: 0.875rem;
}

.single-product-page__comment-avatar {
	border-radius: 50%;
}

.single-product-page__comment-meta {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.single-product-page__comment-author {
	font-style: normal;
	font-weight: 700;
	color: var(--hamta-main-text, #212529);
}

.single-product-page__comment-date {
	font-size: 0.8125rem;
	color: var(--hamta-sub-text, #6c757d);
}

.single-product-page__comment-content {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--hamta-sub-text, #6c757d);
}

.single-product-page__comment-form .comment-form-comment label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--hamta-main-text, #212529);
}

.single-product-page__comment-form input[type="text"],
.single-product-page__comment-form input[type="email"],
.single-product-page__comment-form input[type="url"],
.single-product-page__comment-form textarea {
	width: 100%;
	margin-bottom: 1rem;
	padding: 0.75rem 1rem;
	border: 1px solid var(--hamta-border, #dee2e6);
	border-radius: 0.75rem;
	background: var(--hamta-body-bg, #ffffff);
	color: var(--hamta-main-text, #212529);
}

.single-product-page__related {
	margin-top: clamp(3rem, 6vw, 5rem);
	padding-top: clamp(2.5rem, 5vw, 4rem);
	border-top: 1px solid var(--hamta-border, #dee2e6);
} 

.single-product-page__section-head {
	max-width: 42rem;
	margin: 0 auto 2rem;
	text-align: center;
}

.single-product-page__section-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--hamta-main-text, #212529);
}

.single-product-page__section-desc {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--hamta-sub-text, #6c757d);
}

.single-product-page__content-body {
	/* max-width: 48rem; */
	/* margin-inline: auto; */
	font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	line-height: 1.75;
}

.single-product-page__content-body :is(h2, h3, h4) {
	margin: 2rem 0 0.75rem;
	font-weight: 700;
	line-height: 1.25;
	color: var(--hamta-main-text, #212529);
}

.single-product-page__content-body :is(p, ul, ol, blockquote) {
	margin-bottom: 1rem;
}

.single-product-page__content-body.site-content__body ul,
.single-product-page__content-body.site-content__body ol {
	margin-top: 0;
	padding-inline-start: 1.5rem;
}

.single-product-page__content-body.site-content__body ul {
	list-style: disc;
}

.single-product-page__content-body.site-content__body ol {
	list-style: decimal;
}

.single-product-page__content-body.site-content__body ul ul {
	list-style: circle;
}

.single-product-page__content-body.site-content__body ul ul ul {
	list-style: square;
}

.single-product-page__content-body.site-content__body ol ol {
	list-style: lower-alpha;
}

.single-product-page__content-body.site-content__body li {
	margin-bottom: 0.5rem;
	color: var(--hamta-sub-text, #6c757d);
}

.single-product-page__content-body.site-content__body li:last-child {
	margin-bottom: 0;
}

.single-product-page__content-body.site-content__body li > :is(ul, ol) {
	margin-top: 0.5rem;
	margin-bottom: 0;
}

.single-product-page__content-body.site-content__body blockquote {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-inline-start: 4px solid var(--hamta-primary, #0d6efd);
	border-radius: 0 0.75rem 0.75rem 0;
	background: color-mix(in srgb, var(--hamta-primary, #0d6efd) 6%, var(--hamta-body-bg, #ffffff));
	color: var(--hamta-sub-text, #6c757d);
	font-size: 1em;
	font-style: italic;
	line-height: 1.75;
}

.single-product-page__content-body.site-content__body blockquote :last-child {
	margin-bottom: 0;
}

.single-product-page__content-body.site-content__body blockquote cite {
	display: block;
	margin-top: 0.75rem;
	font-size: 0.875em;
	font-style: normal;
	font-weight: 600;
	color: var(--hamta-main-text, #212529);
}

.single-product-page__content-body :last-child {
	margin-bottom: 0;
}

.single-product-page__related-slider {
	position: relative;
}

.product-related-swiper {
	overflow: hidden;
	padding-bottom: 2.75rem;
}

.product-related-swiper .swiper-slide {
	height: auto;
}

.product-related-swiper__pagination {
	bottom: 0 !important;
}

.product-related-swiper__pagination .swiper-pagination-bullet {
	width: 24px;
	height: 6px;
	background: var(--hamta-border, #dee2e6);
	opacity: 1;
	transition: background-color 0.25s ease, width 0.25s ease;
	border-radius: 16px;
}

.product-related-swiper__pagination .swiper-pagination-bullet-active {
	background: var(--hamta-primary, #0d6efd);
	width: 32px;
}



